10点前最高价和最低价能不能这样写
作者:金字塔 来源:cxh99.com 发布时间:2015年09月19日
- 咨询内容:
用在一分钟周期上
10点前最高价:=valuewhen(todaybar<=45,hhv(h,todaybar));10点前最低价:=valuewhen(todaybar<=45,llv(l,todaybar));
[此贴子已经被作者于2014/3/6 9:57:20编辑过]
- 金字塔客服:
1分钟周期的?,可以这样写
- 用户回复:
这样写可以吗
10点前最高价:=valuewhen(time<=100000 and>=091500,hhv(h,todaybar));10点前最低价:=valuewhen(
time<=100000 and>=091500 ,llv(l,todaybar));
- 网友回复:
可以,效果一样。