您现在的位置:程序化交易>> 期货公式>> 金字塔等>> 金字塔知识>>正文内容

信号怎么不一致呀 [金字塔]

  • 咨询内容:

    Sub ema5()
    Testreport.StartAndInit '开始测评系统的准备工作
    Testreport.InitCash=100*10000 '初始资金100万

    Set Formula = marketdata.STKINDI("if00","zj","ema5()",0,5) '调用中金所IF00合约的日线自定义指标
    Set HistroyData = Formula.ParentGrid.GetHistoryData '直接得到公式区的数据对象,提高运行效率

    If TestReport.AddTestStock(HistroyData,"if00","zj",0) < 1 Then '向测试报告系统添加一个新测试品种
        MsgBox "请正确添加品种"
    End if

    '下面的代码控制循环测试
    '使用PEL策略的信号进行交易
    For i = 0 to HistroyData.Count-1
        if Formula.GetBufData("开多",i) = 1 And TestReport.Holding = 0 Then '开多
            TestReport.Buy 1, HistroyData.Close(i)
        End if
     if Formula.GetBufData("开空",i) = 1 And TestReport.Holding = 0 Then '开空
            TestReport.Sell 1, HistroyData.Close(i)
        End if
        if Formula.GetBufData("平多",i) = 1 And TestReport.Holding > 0 Then '平多
            TestReport.Sell 0, HistroyData.Close(i)
        End if
     if Formula.GetBufData("平空",i) = 1 And TestReport.Holding > 0 Then '平空
            TestReport.Sell 0, HistroyData.Close(i)
        End if

    '显示测试时当前的资产
    Application.msgout TestReport.ASSET

    '为步进下一个数据做准备
    TestReport.StepIt i
    Next

    '测试完毕显示测试报告
    Testreport.ShowReport

    End Sub


    此主题相关图片如下:h1q1{_il$8f_~y%5yx6)f~q.png


    此主题相关图片如下:ls43@@{p{4jiea)_`u)2`jj.png

     

  • 金字塔客服: 学会一些基本的条件技巧,常见问题检查除权是否一致,参数是否一致,测试时段是否一致

     

  • 用户回复: 这个参数就固定了,没改过,肯定一致,股指主连怎么会有除权问题?你以为是股票,时段也一致

     

  • 网友回复:

    关于期货的除权概念,请参考 http://www.weistock.com/bbs/dispbbs.asp?boardid=16&Id=88505 问题43

     

  • 网友回复: For i = 0 to HistroyData.Count-1 
        if Formula.GetBufData("开多",i) = 1 And TestReport.Holding = 0 Then '开多 
            TestReport.Buy 1, HistroyData.Close(i) 
        End if
     if Formula.GetBufData("开空",i) = 1 And TestReport.Holding = 0 Then '开空 
            TestReport.Sell 1, HistroyData.Close(i) 
        End if
        if Formula.GetBufData("平多",i) = 1 And TestReport.Holding > 0 Then '平多
            TestReport.Sell 0, HistroyData.Close(i)
        End if
     if Formula.GetBufData("平空",i) = 1 And TestReport.Holding > 0 Then '平空
            TestReport.Sell 0, HistroyData.Close(i)
        End if那这段代码没问题吧

 

有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友

可联系技术人员 QQ: 511411198  点击这里给我发消息进行 有偿 编写!不贵!点击查看价格!


【字体: 】【打印文章】【查看评论

相关文章

    没有相关内容