大智慧寻底指标公式
TR:=SUM(MAX(MAX((HIGH - LOW),Abs((HIGH - REF(CLOSE,1)))),ABS((LOW - REF(CLOSE,1)))),5);
HD:=(HIGH - REF(HIGH,1));
LD:=(REF(LOW,1) - LOW);
DMP:=(SUM(IF(((HD > 0) AND (HD > LD)),HD,0),5) );
DMM:=SUM(IF(((LD > 0) AND (LD > HD)),LD,0),5);
天崖投机线:=(((DMP ) * 100) / TR);
唐宋望风线:=((DMM * 100) / TR);
鬼漂趋势线:=(MA(((ABS((唐宋望风线 - 天崖投机线)) / (唐宋望风线 + 天崖投机线)) * 100),3));
群友随时买入:(IF(((鬼漂趋势线 > 88) AND (天崖投机线 < 5.8)),80,0));
大智慧巨量阴选股指标公式
fl:=v/ma(v,5)>2.5 and v/capital>0.03;
xg: ref(fl and c<o*0.99,1) and c>ref(o,1)
or ref(fl and c<ref(c,1)*0.99 and c>o,1) and c>ref(c,1)
or ref(fl and c<o*0.99,2) and c>ref(o,2)
or ref(fl and c<ref(c,1)*0.99 and c>o,2) and c>ref(c,2)
or ref(fl and c<o*0.99,3) and c>ref(o,3)
or ref(fl and c<ref(c,1)*0.99 and c>o,3) and c>ref(c,3);

