|
小弟的交易想法使用均線,
K棒上穿越長周期均線且數跟K線收盤沒有跌破該長周期均線 成立買進條件;
並隨著不斷的上穿越更小周期的均線且數跟不跌破時,調整移動停利,
當價格下穿越停利點且數跟未收上時停利/損 或 跌破跌利點後超過定點數時停利/損.
condition1 = close[n-1] cross above MA120 and countif(close > MA120, n) = n ;
condition2 = close[n-1] cross above MA60 and countif(close > MA60, n) = n ;
condition3 = close[n-1] cross above MA20 and countif(close > MA20, n) = n ;
if Markerposition = 0 and condition1 then buy next bar at open;
if Markerposition = 1 then
begin
if MA20 < MA60 and condition2 then
STOPPL = MA60;
else if MA20 >= MA60 and condition3 then
STOPPL = MA20;
if (close[n-1] cross over STOPPL and countif(close<STOPPL, n) = n) or close < STOPPL - maxloss then
SELL 市價碼上砍;
end;
程式碼大致如上,
但我的出場條件,
如果是破太深 要能在K棒內馬上反應,而且只能反應一次.
(因為我進場也打算加入這種機制,不能上下大震盪 無限進出場)
如果不是破太深 要觀察幾根K棒.
看MC官網的這篇 有看沒有懂,連這篇是不是在說明我的疑問 都不甚清楚..
http://www.multicharts.com.tw/dis/dis_Content.aspx?rd=1&D_ID=3&SN=5095
只好來請教各位先進 ,
要如何改 或 設定呢?
|
|