这是一个交易公式,想在主图用红绿K线标明多空K线。该如何编?
ASC2:="SYSTEM.TREND.ENTERLONG";
ASD2:="SYSTEM.TREND.EXITLONG";
a1:if(ASC2>0,1,0);
a2:if(ASD2>0,-1,0);
就是当A1=1时,开多,到A2=-1时平多反手空。
在开多到平多之间用红色K线表示。
在开空到平空之间用绿色K线表示。
在主图上如何编写?
if ASC2>0 then begin
sellshort(holding<0,0,thisclose);
buy(1,1,thisclose);
end
if ASD2>0 then begin
sell(holding>0,0,thisclose);
buyshort(1,1,thisclose);
end
stickline(holding>0,low,high,0.1,1),colorred;
stickline(holding>0 and c>o,close,open,10,1),colorred;
stickline(holding>0 and c<=o,close,open,10,0),colorred;
stickline(holding<0,low,high,0.1,1),colorgreen;
stickline(holding<0 and c>o,close,open,10,1),colorgreen;
stickline(holding<0 and c<=o,close,open,10,0),colorgreen;
PS,不要两边都发帖。
在开多到平多之间全部用红色K线表示。
在开空到平空之间全部用绿色K线表示。
在开多到平多之间全部用红色K线表示。
在开空到平空之间全部用绿色K线表示。
我用MA均线的上下穿代替你的ASD2,ASC2条件,效果如下图所示,怎么会出现只有信号当下K线红绿
我的公式不支持 “逐K线计算模式”
有没有其他办法?