反轉型態(以放空為例)
DAY1: 收盤過高DAY2:高不過昨高、低不破昨低
DAY3:收盤突破昨日高點
DAY4:容易反轉,可作空
程式碼(日K)
{ 3-Bar Inside Pattern }
condition1 = close > close[1];
condition2 = high < high[1] and low > low[1];
condition3 = close < close[1];
if marketposition = 0 then begin
if condition1 and condition2[1] and condition1[2] then SELLSHORT next bar on open
else if condition3 and condition2[1] and condition3[2] then BUY next bar on open;
SETPROFITTARGET(40000);
SETSTOPLOSS(40000);
回測台指期日K(2007~2014)
這個反轉型策略還有待修改,不過最近這7年似乎滿有一套的。 |
後記:
類似的型態邏輯,似乎都可以抓到一些機車的反轉點。不過程式碼仍有待修改,主要是提供大家不同的想法。
0 留言:
張貼留言
如果有私人問題想請教,請透過網站右方『與站長聯絡』之表單,謝謝!