追蹤停損
請教各位大大目前我寫的是均線穿價~
我想寫,多單進場後收盤價創高拉回40點出場
空單進場後收盤價創低拉回40點出場
也算是移動停利停損(最大損失40點)不以最高點,以收盤價
麻煩請教ˊ一下怎寫會比較合適呢?
謝謝 if marketposition>0 then begin
sell next bar at highest(close,barssinceentry)-40 stop;
end;
if marketposition<0 then begin
buytocover next bar at lowest(close,barssinceentry)+40 stop;
end;
blj0511 發表於 16-10-25 14:31
if marketposition>0 then begin
sell next bar at highest(close,barssinceentry)-40 stop;
end;
第一次看到,這樣的移動停損寫法~
強~
blj0511 發表於 16-10-25 14:31
if marketposition>0 then begin
sell next bar at highest(close,barssinceentry)-40 stop;
end;
學到了好招術哩。謝謝啦....
blj0511 發表於 16-10-25 14:31
if marketposition>0 then begin
sell next bar at highest(close,barssinceentry)-40 stop;
end;
感謝大大~
受用無窮~
謝謝
blj0511 發表於 16-10-25 14:31
if marketposition>0 then begin
sell next bar at highest(close,barssinceentry)-40 stop;
end;
請問大大~
多單進場後獲利40點直接平倉
空單進場後或裡40點直接平倉
要怎寫呢?
謝謝
應該用openprofit>8000就可以了 小小禹 發表於 16-10-26 21:47
請問大大~
多單進場後獲利40點直接平倉
空單進場後或裡40點直接平倉
最簡單就是
setprofittarget(bigpointvalue*40);
不管多空賺40就出場
以上單口進出可以這樣寫,否則假設你有2口在倉, 2口加起來賺40點就出場了喔
感謝Blj0511 分享 剛好在找類似的語法才找到這裡的!!! 感謝大大~
剛好在找類似的語法 感謝大家的分享
相當受用 太感謝了
剛好也一直在找移動停利寫法
受用! 感謝大家分享
剛好在找類似的語法 看到問題也是學習的起點謝謝樓下大大分享的語法 謝謝各位大大的分享,
多看多學,新手應有的基本功。
頁:
[1]
2