量化交易之vnpy篇 - 重构position_operator.py

import json
import math
import re

from vnpy.app.position_manager.tools.tqz_extern.tqz_constant import (
    TQZCffexSymbolType,
    TQZJsonOperatorType,
    TQZCodingType,
    TQZPositionKeyType
)

from vnpy.app.position_manager.tools.tqz_extern.tqz_decorateExcept import (
    TQZDecorateExcept
)


class TQZJsonOperator:

    @classmethod
    @TQZDecorateExcept
    def tqz_load_jsonfile(cls, jsonfile=None):
        """
        Load json file content
        """

        if jsonfile is None:
            exception = Exception("Error: filename is None")
            raise exception
        else:
            return cls.__writeReadFile_except_operation(jsonfile=jsonfile, operation_type=TQZJsonOperatorType.READ_TYPE)

    @classmethod
    @TQZDecorateExcept
    def tqz_write_jsonfile(cls, content=None, target_jsonfile=None):
        """
        Write content to target json file
        """

        if target_jsonfile is None:
            exception = Exception("Error: filename is None")
            raise exception
        else:
            cls.__writeReadFile_except_operation(jsonfile=target_jsonfile, content=content, operation_type=TQZJsonOperatorType.WRITE_TYPE)

    @classmethod
    @TQZDecorateExcept
    def __writeReadFile_except_operation(cls, jsonfile=None, content=None, operation_type=TQZJsonOperatorType.READ_TYPE):
        if operation_type is TQZJsonOperatorType.READ_TYPE:
            with open(jsonfile, operation_type.value, encoding=TQZCodingType.UTF_8_CODING.value) as fp:
                return json.load(fp=fp)
        elif operation_type is TQZJsonOperatorType.WRITE_TYPE:
            with open(jsonfile, operation_type.value, encoding=TQZCodingType.UTF_8_CODING.value) as fp:
                json.dump(content, fp=fp, ensure_ascii=False, indent=4)


class TQZPositionJsonOperator(TQZJsonOperator):

    @classmethod
    def tqz_get_single_jsonfile_buy_sell(cls, jsonfile=None):
        """
        Get single json file content have position datas(buy, sell, net)
        """

        content_dictionary = cls.tqz_load_jsonfile(jsonfile=jsonfile)

        empty_content_dictionary = {}
        for vt_symbol_strategy, data in content_dictionary.items():
            for position_key, position_data in data.items():
                if position_key == TQZPositionKeyType.POSITION_KEY.value:
                    if position_data > 0:
                        buy_position, sell_position, net_position = abs(position_data), 0, position_data
                    else:
                        buy_position, sell_position, net_position = 0, abs(position_data), position_data

                    empty_content_dictionary[vt_symbol_strategy] = {
                        TQZPositionKeyType.BUY_POSITION_KEY.value: buy_position,
                        TQZPositionKeyType.SELL_POSITION_KEY.value: sell_position,
                        TQZPositionKeyType.ENTRYPRICE_KEY.value: data[TQZPositionKeyType.ENTRYPRICE_KEY.value],
                        TQZPositionKeyType.NET_POSITION_KEY.value: net_position
                    }

        return empty_content_dictionary

    @classmethod
    def tqz_get_sum_position_jsonfile_data_buy_sell(cls, *jsonfile_list):
        """
        Get sum of all position datas(buy, sell, net)
        """

        jsonfile_content_list = []
        [jsonfile_content_list.append(cls.tqz_get_single_jsonfile_buy_sell(jsonfile)) for jsonfile in jsonfile_list]

        return cls.tqz_get_sum_position_jsonfile_data_with_jsonfileContent_buy_sell(
            *jsonfile_content_list
        )

    @classmethod
    def tqz_get_multi_position_jsonfile_data_buy_sell(cls, *jsonfile_list, multi):
        """
        Get sum of all position datas(buy, sell, net), return multi of sum datas
        """

        sum_content = cls.tqz_get_sum_position_jsonfile_data_buy_sell(*jsonfile_list)

        for vt_symbol, data in sum_content.items():

            before_buy_position, before_sell_position, before_net_position = data[TQZPositionKeyType.BUY_POSITION_KEY.value], data[TQZPositionKeyType.SELL_POSITION_KEY.value], data[TQZPositionKeyType.NET_POSITION_KEY.value]

            data[TQZPositionKeyType.BUY_POSITION_KEY.value], data[TQZPositionKeyType.SELL_POSITION_KEY.value] = math.floor(before_buy_position * multi), math.floor(before_sell_position * multi)
            if before_net_position > 0:
                data[TQZPositionKeyType.NET_POSITION_KEY.value] = math.floor(before_net_position * multi)
            else:
                data[TQZPositionKeyType.NET_POSITION_KEY.value] = math.ceil(before_net_position * multi)

            if before_net_position > 0 and data[TQZPositionKeyType.NET_POSITION_KEY.value] is 0:
                data[TQZPositionKeyType.BUY_POSITION_KEY.value], data[TQZPositionKeyType.NET_POSITION_KEY.value] = 1, 1
            elif before_net_position < 0 and data[TQZPositionKeyType.NET_POSITION_KEY.value] is 0:
                data[TQZPositionKeyType.SELL_POSITION_KEY.value], data[TQZPositionKeyType.NET_POSITION_KEY.value] = 1, -1

            sum_content[vt_symbol] = data

        return sum_content

    @classmethod
    def tqz_get_empty_position_jsonfile_data_buy_sell(cls, *jsonfile_list):
        """
        Change sum of position datas(buy, sell, net) to 0
        """

        # remove stock index
        sum_content_remove_stock_index = {}
        for strategy_symbol, data in cls.tqz_get_sum_position_jsonfile_data_buy_sell(*jsonfile_list).items():
            stock_index = re.match(r"^[a-zA-Z]{1,3}", strategy_symbol).group()

            if stock_index not in [TQZCffexSymbolType.IC.value, TQZCffexSymbolType.IF.value, TQZCffexSymbolType.IH.value]:
                sum_content_remove_stock_index[strategy_symbol] = data

        for vt_symbol, data in sum_content_remove_stock_index.items():
            data[TQZPositionKeyType.BUY_POSITION_KEY.value], data[TQZPositionKeyType.SELL_POSITION_KEY.value], data[TQZPositionKeyType.NET_POSITION_KEY.value] = 0, 0, 0

            sum_content_remove_stock_index[vt_symbol] = data

        return sum_content_remove_stock_index

    @classmethod
    def tqz_get_ER_position_format_data_buy_sell(cls, jsonfile):
        """
        Change json file format from ER format to public format
        """

        er_content_data = cls.tqz_load_jsonfile(jsonfile=jsonfile)

        empty_content_dictionary = {}
        for main_data in er_content_data.values():
            for target_position_key, position_datas in main_data.items():
                if target_position_key == TQZPositionKeyType.TARGET_POSITION_ER_KEY.value:
                    for vt_symbol, position_data in position_datas.items():
                        if position_data > 0:
                            buy_position, sell_position, net_position = abs(position_data), 0, position_data
                        else:
                            buy_position, sell_position, net_position = 0, abs(position_data), position_data

                        if vt_symbol in empty_content_dictionary.keys():
                            buy_position += empty_content_dictionary[vt_symbol][TQZPositionKeyType.BUY_POSITION_KEY.value]
                            sell_position += empty_content_dictionary[vt_symbol][TQZPositionKeyType.SELL_POSITION_KEY.value]
                            net_position += empty_content_dictionary[vt_symbol][TQZPositionKeyType.NET_POSITION_KEY.value]

                        empty_content_dictionary[vt_symbol] = {
                            TQZPositionKeyType.BUY_POSITION_KEY.value: buy_position,
                            TQZPositionKeyType.SELL_POSITION_KEY.value: sell_position,
                            TQZPositionKeyType.NET_POSITION_KEY.value: net_position
                        }

        return empty_content_dictionary

    @classmethod
    def tqz_get_sum_position_jsonfile_data_with_jsonfileContent_buy_sell(cls, *jsonfile_content_list):
        """
        Get sum of all position datas(buy, sell, net) use sum data of all jsonfile contents
        """

        temp_dic_list = []
        for single_json_content in jsonfile_content_list:
            temp_dic = {}
            for key, value in single_json_content.items():
                vt_symbol = key.split(".")[0] + "." + key.split(".")[1]
                temp_dic[vt_symbol] = value
            temp_dic_list.append(temp_dic)
        dic_list = temp_dic_list

        sum_content = {}
        for jsonfile_content in dic_list:
            for vt_symbol, data in jsonfile_content.items():
                if vt_symbol in sum_content.keys():
                    sum_content[vt_symbol][TQZPositionKeyType.BUY_POSITION_KEY.value] += data[TQZPositionKeyType.BUY_POSITION_KEY.value]
                    sum_content[vt_symbol][TQZPositionKeyType.SELL_POSITION_KEY.value] += data[TQZPositionKeyType.SELL_POSITION_KEY.value]
                    sum_content[vt_symbol][TQZPositionKeyType.NET_POSITION_KEY.value] += data[TQZPositionKeyType.NET_POSITION_KEY.value]
                else:
                    sum_content[vt_symbol] = {
                        TQZPositionKeyType.BUY_POSITION_KEY.value: data[TQZPositionKeyType.BUY_POSITION_KEY.value],
                        TQZPositionKeyType.SELL_POSITION_KEY.value: data[TQZPositionKeyType.SELL_POSITION_KEY.value],
                        TQZPositionKeyType.NET_POSITION_KEY.value: data[TQZPositionKeyType.NET_POSITION_KEY.value]
                    }

        return sum_content


def __main_engine():
    hla = "cta_strategy_datahla.json"
    hsr = "cta_strategy_datahsr.json"

    er_jsonfile = "portfolio_strategy_data.json"
    cta_content = TQZPositionJsonOperator.tqz_get_sum_position_jsonfile_data_buy_sell(hla, hsr)
    er_content = TQZPositionJsonOperator.tqz_get_ER_position_format_data_buy_sell(jsonfile=er_jsonfile)

    sum_content = TQZPositionJsonOperator.tqz_get_sum_position_jsonfile_data_with_jsonfileContent_buy_sell(cta_content, er_content)

    TQZJsonOperator.tqz_write_jsonfile(content=sum_content, target_jsonfile="sum_ZSTZ2.json")


if __name__ == '__main__':
    __main_engine()

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值