本帖最後由 chyou7 於 13-1-1 18:42 編輯
請問大大 我想要在進場後K線收完 停損設定在進場K棒的高點或低點(不做任何移動,除非先停利) 該怎麼寫 怎麼寫好像都會移動有大大可以幫幫忙嗎?
Parameter: 量(2000)
Variables:多單進場(99999),空單進場(0),多單停損(0),空單停損(99999),多單停利點(99999),空單停利點(0)
if time>=092000 and time<=131000 then
..............略
if Condition1 and Condition2 and CurrentContracts = 0
多單進場=...xxxxx.... end if
if c>多單進場 then buy("多單進場") at next bar end if
多單進場=99999
if Condition1 and Condition2 and CurrentContracts = 0
空單進場=.....xxxxx....... end if
if c<空單進場 then sell("空單進場")at next bar end if
空單進場=0
// if CurrentContracts > 0 then
// 多單停損=low[1] end if
// if low< 多單停損 then exitlong("多停損") at 多單停損 limit end if
// 多單停損=0
// if CurrentContracts < 0 then
// 空單停損=high[1] end if
// if h>空單停損 then exitshort("空停損") at 空單停損 limit end if
// 空單停損=99999
|