請問程序為什么沒有信號?
作者:開拓者 TB 來源:cxh99.com 發布時間:2016年07月31日
- 咨詢內容:
Params
Numeric n(5);
Numeric jxts(20);
Vars
Numeric xg;
Numeric xd;
Numeric jx;
Begin
xg = Highest(High,n);
xd = Lowest(Low,n);
jx=AverageFC(close,jxts);
If(Close>jx and High>xg) Buy(1,open);
If(Close<jx and Low<xd) SellShort(1,open);
End
如何更改?