sp026244 發表於 20-6-10 19:52

請教語法

每日的8:45~9:30 之間 取得 最高的收盤價或開盤價 運用在5分k
請教語法該如何寫?

jason680 發表於 20-6-13 13:12




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;




hanah77h12 發表於 20-6-25 09:12

if t>0850 and t<0930 then beging
    value1=highest(close,k棒數量)
    value2=lowest(close,K棒數量)
end if

daniel888 發表於 21-8-5 10:33

謝謝各位大大的分享,
有不同的狀況,和考慮的地方,
新手需要多參考,多想一下,各種情境下的寫法,謝謝了。
頁: [1]
查看完整版本: 請教語法