每日的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;