帮忙看一下,为什么没信号,BOLL公式 [开拓者 TB]
- 咨询内容: //沪胶指数,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技术人员: 自己顶一下
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 262069696 进行 有偿 编写!(不贵!点击查看价格!)