您现在的位置:程序化交易>> 期货公式>> 交易开拓者(TB)>> 开拓者知识>>正文内容

请老师帮忙! [开拓者 TB]

  • 咨询内容: 建立新指标:
       日线模型:AAA:收盘价。
                        AA1:开盘价。
                      AAAA:AAA-AA1;
    如果AAAA>0,信号持续3分钟 现价开仓买入。大概意思就是这样,然后我会把东西按这个基本方法我再补齐。谢谢了

     

     来源:CXH99.COM

  • TB技术人员: Bool okBuy;
    Numeric iMod;

    If(BarStatus == 0)
        SetGlobalVar(0,-1);

    okBuy = False;

    If(Close > Open and GetGlobalVar(0) == -1)
        SetGlobalVar(0, CurrentTime);
    Else If(Close <= Open)
        SetGlobalVar(0,-1);

    If(GetGlobalVar(0)  > -1)
    {
        // 暂仅考虑日盘(可以通过时间控制增加夜盘)
        If(GetGlobalVar(0) >= 0.0900 and GetGlobalVar(0) < 0.1457)
        {
            iMod = Mod(GetGlobalVar(0)*10000, 100);
            If((iMod< 57 and Mod(CurrentTime*10000, 100) - iMod >= 3) or (iMod >= 57 and Mod(CurrentTime*10000, 100) + (60-iMod) >= 3))
                okBuy = True;
        }
    }

    If (okBuy == True)
        Buy (xx,xx);

     

  • TB客服:
    Yuen_Lee 发表于 2020-7-22 10:08
    Bool okBuy;
    Numeric iMod;

    替楼主谢谢你

 

有思路,想编写各种指标公式,交易模型,选股公式,还原公式的朋友

可联系技术人员 QQ: 262069696  点击在线交流或微信号:cxh99cxh99  进行 有偿收费 编写!

怎么收费,代编流程等详情请点击阅读!

(注:由于人数限制,QQ或微信请选择方便的一个联系我们就行,加好友时请简单备注下您的需求,否则无法通过。谢谢您!)


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

相关文章

    没有相关内容