[策略]
inputs:len1(5),len2(10);
value1=Acceleration(close,Len1);
value2=Acceleration(close,Len2);
if time>0930 and time<1200 then begin
if value1<value2 then buy next bar at highest(high,len1) stop;
if value1>value2 then sellshort next bar at lowest(low,len1) stop;
end;
setstoploss(3000);
setexitonclose;
[函數]
inputs: price(numericseries), length(numericsimple);
vars: veloc(0);
veloc = (price - price[length]) / length;
acceleration = veloc - veloc[1];
台指期回測(來回800元),30分K線
後記:
之前看過有人套用牛頓的加速度公式,寫出很好的策略,大家自由發揮吧。
0 留言:
張貼留言
如果有私人問題想請教,請透過網站右方『與站長聯絡』之表單,謝謝!