※ 引述《qazwsxee (彥)》之銘言:
: 之前受到獵人大的系統測試啟發
: 小弟也來分享一個月試試吧
: 類型: 順勢系統、均線進出
想當年哥也是從一條均線起家....
心血來潮叫出了哥當年寫的第一支策略
沒想到竟然也是默默地創了新高
原來世界一直都沒有變, 只有我們的心一直都在浮動
台指30分K, 純順勢, 非多即空
Inputs:Period(100),filter(10);
Vars:uppBound(0),lowBound(0);
uppBound=XAverage(High,Period);
lowBound=XAverage(low,Period);
If close > uppBound then
begin
Buy to Cover ( "ShortExit" ) next bar at (HighestFC( high, filter)) stop ;
Buy ( "LongEntry" ) next bar at (HighestFC( high, filter)) stop ;
end;
If close < lowBound then
begin
Sell ( "LongExit" ) next bar at (LowestFC( low, filter)) stop ;
Sell short ( "ShortEntry" ) next bar at (LowestFC( low, filter)) stop ;
end;
https://www.dropbox.com/s/ftjaoxodf5hlfcm/111.jpg?dl=0