不好意思,原帖在更新的时候,粘贴代码粘贴错了位置,非常抱歉, 正确代码如下 :
涨幅限制:=if(namelike('st') or namelike('*st') or namelike('sst') or namelike('s*st'),105,110);{代表1.05和1.1}
跌幅限制:=if(namelike('st') or namelike('*st') or namelike('sst') or namelike('s*st'),95,90);{代表0.95和0.9}
涨停:=round(close*100)>=round(ref(close,1)*涨幅限制) and close=high;
跌停:=round(close*100)<=round(ref(close,1)*跌幅限制+1) and close=low;
stickline(涨停,o,c,1,0),color00ffff;
stickline(跌停,o,c,1,0),colorff9900;
上一篇:修改:标注K线(标注1分、5分、15分、30分K线的每天最后一根K线,主图、源码) 下一篇:通达信MACD之DIF线短线战法(今买明卖、说明、主副选源码)