自编一个实现显示分钟线周期k线走完剩余时间的指标,显示不正确,请版主帮助修正一下 [开拓者 TB]
- 咨询内容:
Vars
NumericSeries extm;
NumericSeries retm;
NumericSeries totm;
Begin
If(bartype()<>1)
Return;
If(Time()==0.1510 and BarType()==1 and BarInterval()==10)
totm=5*60;
Else
totm=BarInterval()*60;
If(BarStatus()==2 and Time()>=0.0900 and Time()<=0.1129 or BarStatus()==2 and Time()>=0.1300 and Time()<=0.1514)
{
retm=totm-TimeDiff(Time(),CurrentTime());
PlotString("Retm",text(retm),0);
}
Else
Return;
End - TB技术人员: 能应用在股指上就行,我的思路是定义该周期的总共时间秒数totm,然后减去当前时间和k线时间标记time差值得到剩余时间,转化字符并显示。 Time()>=0.0900 and Time()<=0.1129和Time()>=0.1300 and Time()<=0.1514主要是想界定交易时间和非交易时间,有没有一个函数可以直接返回开市交易状态的,有这样的函数更方便一些。
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 1145508240 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容