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

V4中追踪止盈代码怎么写? - TradeBlazer公式 [开拓者 TB]

  • 咨询内容:
    1. Params

    2. Numeric lots(1);

    3. Vars

    4. NumericSeries ma5;

    5. NumericSeries ma20;

    6. NumericSeries stopprofit;

    7. NumericSeries EntryPrice;

    8. NumericSeries ExitPrice;

    9. NumericSeries PriceAfterEntry;

    10. Begin

    11. ma5=Average(close,5);

    12. ma20=Average(close,20);

    13. PlotNumeric("ma5",ma5);

    14. PlotNumeric("ma20",ma20);

    15. If(CrossOver(ma5[1],ma20[1]))//Ma5上穿Ma20

    16. Buy(lots,open);

    17. Entryprice=open;

    18. If(marketposition==1&&PositionProfit>5)//盈利大于五点时追踪止盈

    19. {stopprofit=EntryPrice+2;//止盈点在进场点上方2点

    20. ExitPrice=Max(open,stopprofit);

    21. }

    22. Sell(lots,ExitPrice);

    23. End

     

  • TB技术人员: 请参考  帮助文档 - 公式应用进阶

     

  • TB客服: 如果用A指令下单又怎么写呢?

 

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

可联系技术人员 QQ: 262069696  点击在线交流进行 有偿 编写!不贵!点击查看价格!

 


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

相关文章

    指定的模型还没有相关内容!