a:=ref(close,1)>ref(open,1);b:=open>=ref(close,1)*0.985 and open<=ref(close,1)*0.99;cc:=low>=ref(low,1);d:=close>=ref(open,1)*1.02;e:=high>=ref(close,1)*0.985 and high<=ref(close,...
zdf:=(c-ref(c,1))/ref(c,1)*100;kp:=o/ref(c,1)*100-100;sy:=(h/max(c,o)-1)*100;xy:=(min(c,o)/l-1)*100;低开:=-1;下影:=2;涨跌幅:=3;xg:ref(c>o and sy>0.5,1)and kp<低开 and xy>下影 and zdf>涨跌幅;别忘记点采纳了。
{写通达信指标:昨日阴线,今日是阳k线,但k线是低开,收盘价小于昨日阴线实体的一半,颜色用紫色显示}昨日阴线:=ref(c<o,1);今日阳线:=c>o;低开:=o<ref(c,1);较大值:=ref(max(c,o),1);较小值:=ref(min(c,o),1);实体一半:=c<(较大值+较小值)/2,nodraw;紫色k线:stickline(昨日阴线 and 今日阳...