返回介绍

第一部分 新手入门

第二部分 股票量化相关

第三部分 基金、利率互换、固定收益类

第四部分 衍生品相关

嘉庆离散指标测试

发布于 2022-02-20 22:26:15 字数 2180 浏览 873 评论 0 收藏 0

import numpy as np
start = datetime(2011, 1, 1)
end   = datetime(2015, 4, 27)
benchmark = 'HS300'
universe  = set_universe('HS300')
capital_base = 100000
short_history = 30
longest_history = 60

pos_pieces = 10
enter_window = 20
exit_window = 10
N = 4

def initialize(account):
    account.postion_size_hold = {}
    for stk in universe:
        account.postion_size_hold[stk] = 0

def handle_data(account):
    for stock in account.universe:
        cnt_price = account.referencePrice[stock]
        a1 = account.get_attribute_history('closePrice', longest_history)[stock]-account.get_attribute_history('lowPrice', longest_history)[stock]
        b1 = account.get_attribute_history('closePrice', longest_history)[stock]-account.get_attribute_history('highPrice',longest_history)[stock]
        c1 = account.get_attribute_history('highPrice',longest_history)[stock]-account.get_attribute_history('lowPrice',longest_history)[stock]
        d1 = account.get_attribute_history('turnoverVol', longest_history)[stock]
        adl = ((((a1)-(b1))/(c1)))*d1
        a2 = account.get_attribute_history('closePrice', short_history)[stock]-account.get_attribute_history('lowPrice', short_history)[stock]
        b2 = account.get_attribute_history('closePrice', short_history)[stock]-account.get_attribute_history('highPrice',short_history)[stock]
        c2 = account.get_attribute_history('highPrice',short_history)[stock]-account.get_attribute_history('lowPrice',short_history)[stock]
        d2 = account.get_attribute_history('turnoverVol', short_history)[stock]
        ads = ((((a2)-(b2))/(c2)))*d2

        mean_cp1 = adl.mean()
        mean_cp2 = ads.mean()

        flag = mean_cp1 - mean_cp2
        if flag > 0 and account.postion_size_hold[stock]<N:
            order_to(stock, capital_base/pos_pieces/cnt_price/N)
            account.postion_size_hold[stock] += 1
        elif flag < 0 :
            order_to(stock, 0)
            account.postion_size_hold[stock] = 0

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文