欢迎光临
专业期货策略平台

交易开拓者TB双均线策略源码下载

这是一个双均线的TB策略,是网上的网友提供的,大家可以参考一下,也可以下载下来测试学习一把,现在网上期货程序化模型很多,但是要找到真正适合自己的,还是要自己去学习修改。

Params
Numeric FastLength(5);
Numeric SlowLength(20);
Vars
NumericSeries AvgValue1;
NumericSeries AvgValue2;
Begin
AvgValue1 = AverageFC(Close[1] ,FastLength);
AvgValue2 = AverageFC(Close[1] ,SlowLength);





If(MarketPosition <>1 && AvgValue1> AvgValue2)
{
Buy(1,Close);
}

If(MarketPosition <>-1 && AvgValue1< AvgValue2)
{
SellShort(1,Close);
}
PlotNumeric("MA1",AvgValue1);
PlotNumeric("MA2",AvgValue2); 


End
4.5 2 votes
Article Rating
Click to rate this post!
[Total: 0 Average: 0]
赞(4) 打赏
未经允许不得转载:A期客 » 交易开拓者TB双均线策略源码下载
订阅
提醒
guest
0 评论
Inline Feedbacks
View all comments

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏

0
Would love your thoughts, please comment.x
()
x