九毛八公式指标
公式模块:
比如000811的指定时段为2008年4月7日至2009年11月7日
如何用公式求得其波幅即(该时段内的收盘最高价-收盘最低价)/平均收盘价?十分感谢!
hc:=if(date>=1080407 and date<=1091107,c,0);
lc:=if(date>=1080407 and date<=1091107,c,9999);
收盘最高价:=hhv(hc,0);收盘最低价:=llv(lc,0);
t1:=barslast(hc>0 and ref(hc,1)=0);t2:=barslast(hc=0and ref(hc,1)>0);
tt:=t1-t2;
平均收盘价:sum(hc,0)/tt;
波幅:((收盘最高价-收盘最低价)/平均收盘价)*100