請問高手,
我正用日盛的HTS 4000在寫程式選股,目前希望每半小時(30分k)替我找出一些標的,
於是我程式這樣下:
if date <> date[1] then
if time >= 093000 and time < 100000 then
if condition1 then
drawpoint(topside,"9點半",5,5)
end if
end if
if time >=100000 and time <103000 then
if condition2 then
drawpoint(topside,"10點",5,5)
end if
end if
.........到收盤為止
end if
不過程式並無法如期在各個時間點觸發,不知是否有高手告訴我是哪裡出錯了?!
是時間函數嗎?感恩!