”两个时间k线的收盘价比值”
哪两个,是不是图上的时间?指定的时间还是要算的?
3.3 10:30
3.9 14:30
c1:=valuewhen(date=1170303 and time=103000,close);
c2:=valuewhen(date=1170309 and time=143000,close);
比值1:c1/c2;
c3:=valuewhen(date=1170303 and time=103000,ref(close,2));
c4:=valuewhen(date=1170309 and time=143000,ref(close,2));
比值2:c3/c4;