問題關於時間段的寫法
大家好,我是用MC的新手, 我想請教大家,
我想只在某時間段交易, 例如只在10:00 至11:00 中交易, 應該如何寫?
if time>=1000 and time<=1100 then begin
xxxxxxxxxxxxxxxxxxxxxx;
xxxxxxxxxxxxxxxxxxxxxx;
end;
1. 直接 包起來
if 1000 <= time and time <= 1100 then begin
...;
...;
end;
2. time也是條件之一
原先可能像是這樣(很多條件,例RSI,KD)
if CD_RSI and CD_KD and ... then
...;
// 條件多了TIME, 變成TIME, RSI, KD
CD_TIME = 1000 <= time and time <= 1100;
if CD_TIME and CD_RSI and CD_KD and ... then
...;
應該要設一個11:00強制平倉.我目前是只交易到13:30平倉, 不留倉.
thank you very much{:4_90:}
頁:
[1]