请教高手一个问题:
可不可以在标准版上面进行图表程式化交易时应用这2个平仓条件?
1。最大损失:与开仓价相比,损失达到1%时,自动平仓。(这个在我用固定止损解决了)
2。回落平仓:与最高市值相比20周期价格不利变动达2.5%,自动平仓。
如果可以,程序怎么写?
谢谢!
金兄:
“价格不利”,就是在公式测试系统中,出场规则时使用的3,4两条。
比如趋势上涨时,中途回调,20周期内,回调的最低价与最高价相比低到2.5%时,平仓。
我就是想在您以前帮我写的这个系统上面,加一个止盈,止损条件单。
http://www.weistock.com/bbs/dispbbs.asp?boardid=11&Id=7495
ma1:ma(c,5);
ma2:ma(c,60);
ma3:ma(c,120);
if cross(ma1,ma3) then begin
sellshort(holding<0,0,thisclose);
buy(holding=0,30%,thisclose);
end
if cross(ma3,ma1) then begin
sell(holding>0,0,thisclose);
buyshort(holding=0,30%,thisclose);
end
if cross(ma1,ma2) and ma2>ma3 then begin
sellshort(holding<0,0,thisclose);
buy(holding=0,30%,thisclose);
end
if cross(ma2,ma1) and ma2>ma3 then begin
sell(holding>0,0,thisclose);
buyshort(holding=0,30%,thisclose);
end
IF HOLDING>0 AND CLOSE/ENTERPRICE>=1.01 THEN SELL(1,0,THISCLOSE);//多头上涨1%止盈
类似这样写