最近,经常有些人问我,依据什么指标选股?其实我都是依据这些公式做参考,然后严格按照自己的一套操作思路去执行,操作思路在以前都和大家交流过,今天给大家奉献一个抄底逃顶的公式。
也希望大家都能尽快脱离苦海。
公式说明(其实提示很明确的):黄色柱备钱(实际是盯盘),红色柱买入,绿色柱清仓。
特别提示:1、当黄色线变成绿色线时,不管是否获利,都应该马上出局;
2、该公式成功率82%,(不是我测试的,是别人测试的)
n(1,500,5)
v1:=(c*2+h+l)/4*10; v2:=ema(v1,13)-ema(v1,34); v3:=ema(v2,5); v4:=2*(v2-v3)*5.5; 主力撤: if(v4<=0,v4,0),colorgreen; 主力进: if(v4>=0,v4,0); v5:=(hhv(indexh,8)-indexc)/(hhv(indexh,8)-llv(indexl,8))*8; v6:=ema(3*v5-2*sma(v5,18,1),5); v7:=(indexc-llv(indexl,8))/(hhv(indexh,8)-llv(indexl,8))*10; v8:=(indexc*2+indexh+indexl)/4; v9:=ema(v8,13)-ema(v8,34); va:=ema(v9,3); vb:=(v9-va)/2; 大盘资金进场: if(vb>=0,vb,0),coloryellow; 大盘资金撤走: if(vb<=0,vb,0),colorblue; v11:=3*sma((c-llv(l,55))/(hhv(h,55)-llv(l,55))*100,5,1)-2*sma(sma((c-llv(l,55))/(hhv(h,55)-llv(l,55))*100,5,1),3,1); 趋势线: ema(v11,3); v12:=(趋势线-ref(趋势线,1))/ref(趋势线,1)*100; 准备现金: stickline(趋势线<=13,0,20,5,0),coloryellow; aa:=(趋势线<=13) and filter((趋势线<=13),15); drawtext (aa,30,'准备现金'),colorwhite; 买入股票: stickline(趋势线<=13 and v12>13,0,50,5,0),colorred; bb:= (趋势线<=13 and v12>13) and filter((趋势线<=13 and v12>13),10) ; drawtext (bb,60,'买入股票'),colorred; 见顶清仓: stickline(趋势线>=90 and v12,0,30,5,0),colorgreen; cc:=(趋势线>=90 and v12) and filter((趋势线>=90 and v12),10); drawtext (cc,40,'见顶清仓'),colorgreen; |