金字塔决策交易系统

 找回密码
 

微信登录

微信扫一扫,快速登录

搜索
查看: 2878|回复: 1

大神帮忙看看,为啥回测没信号呢

[复制链接]

9

主题

20

帖子

20

积分

Rank: 1

等级: 新手上路

注册:
2021-6-28
曾用名:
发表于 2022-1-6 14:43 | 显示全部楼层 |阅读模式

import time
import os
import csv
import numpy
import talib as ta

def init(context):
    context.s = context.run_info.base_book_id
def before_trading(context):
    pass
def handle_bar(context):
    dd = get_indicator(context.s, 'zz', 'd', '1', 'self', 100, True, False, False)
    kk = get_indicator(context.s, 'zz', 'k', '1', 'self', 100, True, False, False)
    if dd[-1] == 1 and portfolio.sell_quantity>0:
        buy_close(context.s,"market",0,portfolio.sell_quantity,serial_id = 1)
    if kk[-1] == 1 and portfolio.buy_quantity>0:  
        sell_close(context.s,"market",0,portfolio.buy_quantity,serial_id = 2)
    if dd[-1] == 1 and portfolio.buy_quantity==0:
        buy_open(context.s, "market",0, 1,serial_id = 3)        
    if kk[-1] == 1 and portfolio.sell_quantity==0:
        sell_open(context.s, "market",0, 1,serial_id = 4)

def after_trading(context):
    pass


回复

使用道具 举报

9

主题

20

帖子

20

积分

Rank: 1

等级: 新手上路

注册:
2021-6-28
曾用名:
 楼主| 发表于 2022-1-6 14:58 | 显示全部楼层
找到问题了,谢谢
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 微信登录

本版积分规则

手机版|小黑屋|上海金之塔信息技术有限公司 ( 沪ICP备13035422号 )

GMT+8, 2024-11-17 21:18 , Processed in 0.218735 second(s), 22 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表