日盘,09点开盘到当前bar,的最低价和最高价。如何得到? [开拓者 TB]
- 咨询内容:
本帖最后由 zhongchendi 于 2016-2-14 16:48 编辑
日盘,09点开盘到当前bar,的最低价和最高价。如何得到?
夜盘,21点开盘到当前bar,的最低价和最高价。如何得到? - TB技术人员:
本帖最后由 zhongchendi 于 2016-2-14 16:48 编辑
日盘,09点开盘到当前bar,的最低价和最高价。如何得到?
夜盘,21点开盘到当前bar,的最低价和最高价。如何得到? - TB客服:
- vars
- numericseries myhigh;
- numericseries mylow;
- begin
- if(time == 0.09 or time == 0.21)
- {
- myhigh = high;
- mylow = low;
- }else
- {
- myhigh = max(myhigh,high);
- mylow = min (mylow,low);
- }
- plotnumeric("myhigh",myhigh);
- plotnumeric("mylow",mylow);
- end
- vars
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容