每天第一筆交易,下一口單。
進場後,又觸發新進場條件。
第二次進場就下兩口單。
......然後三口,四口........以此類推。
不論賺陪,反正第幾次交易就下幾口。
凹單凹很大
TS Sample Code
範例程式回測績效 "扶搖直下",別亂用。
vars:HLine(0),SLine(0),cons(0);
if date[0] < > date[1] then cons = 1;
Hline = highest(high[1],4);
Sline = lowest(low[1],4);
if time > = 1000.00 and time < = 1300.00 then begin
if close cross over Hline then buy cons contracts next bar at market;
if close cross under Sline then sell cons contracts next bar at market;
end;
if barssinceentry(0) = 0 and marketposition < > 0 then cons=cons+1;
if time=1330.00 then begin
exitlong next bar at market;
exitshort next bar at market;
end;
15分鐘,突破前4根K線高點就買進,跌破低點就放空。
第一次一口,第二次兩口.....
口數由 cons 決定。
進場後,cons 就會自動加一。下次就會多下一口。
K線交易情況如下圖。