1、通式选出rsi数值小于20的个或出rsi大于80的个股lc:=ref(close,1);rsi:=sma(max(close-lc,0),20,1)/sma(abs(close-lc),20,1)*100;xc20:=rsi<=20 ;xc80:=rsi>80;xg:xc20 or xc80;2、选,可分别选不同的k线周期30分钟,60分钟,日线,周线。3、打开预警开关,可在日线图能做到即时弹窗提醒。 20210311
本公式是盘后选股,如果需要盘中选股需要改动一下(盘中涨停了也适用)。t1:=close/ref(close,3);t2:=barslast(t1>1.3)<=20;t3:=finance(40)<100*10000*10000;去st:=if(namelike('st') or namelike('*st'),0,1);去除停牌:=dyna**(4...
bb:=ma(c,5)>ma(c,20) and ma(c,20)>ma(c,60) and ma(c,60)>ma(ref(c,60),1);aa:=barssincen(v>ref(v,1)*2,50);ll:=ref(l,aa);sc:l<ll and bb;您好公式已经测试通过,是符合您要求的,但是我不知道您想达成什么样的效果,也欢迎您进一步追问,祝愿您投资顺...