tb公式疑问,感谢解答 [开拓者 TB]
-
咨询内容:
//------------------------------------------------------------------------
// 简称: tbhz280
// 名称:
// 类别: 公式应用
// 类型: 用户应用
// 输出:
//------------------------------------------------------------------------
Params
Numeric Lots(1);
String Sys("L30");//交易策略标志
Numeric yingxian(7);//上影线长度平仓设置
Numeric juliang(279000);//巨量成交平仓设置
Numeric rbzy(92);//螺纹止盈点数
Vars
NumericSeries MA5;
NumericSeries MA60;
NumericSeries MA120;
NumericSeries MA25;
NumericSeries Zhisun;
NumericSeries Zhiying;
Bool Bfangliang;
Bool Sfangliang;
Begin
MA5 = Average(C,5);
MA60 = Average(C,60);
MA120 = Average(C,120);
MA25 = Average(C,25);
PlotNumeric("MA5",MA5,0,Red);
PlotNumeric("MA60",MA60,0,Blue);
PlotNumeric("MA120",MA120,0,Rgb(255,0,255));
PlotNumeric("MA25",MA25,0,Yellow);
IF((o<=ma25 && o<=ma5 ) && ( c > ma5 and c > ma25 ) )
{
Buy(Lots,o);
buyprice = o;
buybar = CurrentBar;
}
IF((o>ma25 && o>ma5 ) && ( c < ma5 and c < ma25 ) && MA5<MA25 && MA25>MA60)
{
SellShort(lots,o);
sellprice = o;
sellbar = CurrentBar;
}
If( h - buyprice>zhiying && CurrentBar>buybar)
{
Sell(lots,buyprice+zhiying);
Commentary("100点止盈");
}
If( sellprice-l>zhiying && CurrentBar>sellbar)
{
BuyToCover(lots,sellprice-zhiying);
Commentary("100点止盈");
}
end//------------------------------------------------------------------------QQ图片20170906105507.png (7.31 KB, 下载次数: 0) 2017-9-6 11:00:49 上传 来源:CXH99.COM
- TB技术人员: 比如我的策略运行在1小时K线周期里面,但是我想调用日线周期里面的5日、10日、20日均线,代码怎么写
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容