帮忙看一下,为什么没信号,BOLL公式 - TradeBlazer公式 [开拓者 TB]
作者:
开拓者 TB 来源:
cxh99.com 发布时间:2012年05月28日 点击数:
【
收藏到本网的会员中心】
- 咨询内容:
//沪胶指数,5分钟线,2月23日11:15分,为什么没有卖开指令???
Params
Numeric Length(20);
Numeric Offset(2);
Vars
Numeric UpLine; //上轨
Numeric DownLine; //下轨
NumericSeries MidLine; //中间线
Numeric Band;
Numeric StartTime(09.00);
Numeric EndTime1(14.40);
Numeric EndTime(14.55);
Begin
MidLine = AverageFC(Close,Length);
Band = StandardDev(Close,Length,2);
UpLine = MidLine + Offset * Band;
DownLine = MidLine - Offset * Band;
PlotNumeric("UpLine",UpLine);
PlotNumeric("DownLine",DownLine);
PlotNumeric("MidLine",MidLine);
If(time>=StartTime/100&&time<EndTime1/100)
{
If(open>Close&&Close>=UpLine)
{
SellShort(1,Close);
}Else
If(Open>=Close&&Close[1]>=UpLine)
{
SellShort(1,Close);
}
}
//收盘平仓
If(Time>=EndTime/100)
{
sell(0,Close);
BuyToCover(0,close);
}
End
- TB技术人员:
自己顶一下