※ 引述《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