choipingkwan 發表於 17-3-13 07:19

問題關於時間段的寫法

大家好,
我是用MC的新手, 我想請教大家,
我想只在某時間段交易, 例如只在10:00 至11:00 中交易, 應該如何寫?

haruttn 發表於 17-3-13 08:58

if time>=1000 and time<=1100 then begin

    xxxxxxxxxxxxxxxxxxxxxx;
    xxxxxxxxxxxxxxxxxxxxxx;

end;

jason680 發表於 17-3-14 08:45

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
...;

Anigi 發表於 17-3-14 11:43

應該要設一個11:00強制平倉.我目前是只交易到13:30平倉, 不留倉.

choipingkwan 發表於 17-3-16 16:55

thank you very much{:4_90:}
頁: [1]
查看完整版本: 問題關於時間段的寫法