請教語法
每日的8:45~9:30 之間 取得 最高的收盤價或開盤價 運用在5分k請教語法該如何寫?
var: sMax_open(0);
var: sMax_close(0);
每日的8:45~9:30 之間
if 0845<= time and time <= 0930 then begin
取得 最高的收盤價或開盤價 (分開算)
if sMax_open < open then
sMax_open = open
if sMax_close < close then
sMax_close = close
end;
var: sMax(0);
每日的8:45~9:30 之間
if 0845<= time and time <= 0930 then begin
取得 最高的收盤價或開盤價 (選最高)
if sMax < open then
sMax = open
if sMax < close then
sMax = close
end;
if t>0850 and t<0930 then beging
value1=highest(close,k棒數量)
value2=lowest(close,K棒數量)
end if 謝謝各位大大的分享,
有不同的狀況,和考慮的地方,
新手需要多參考,多想一下,各種情境下的寫法,謝謝了。
頁:
[1]