超级BS指标-(没有数据也能用-超赢的终极思路 源码)介绍
超级BS指标-(没有数据也能用-超赢的终极思路 源码)
终于找到了大智慧超赢BS指标的思路来源了 下面这个指标即使你没有数据也一样跟得上操作 比超赢BS还要准确
{BS-操盘主图}
ma1:ma(c,N1),linethick1,layer1;
ma2:ma(c,N2),linethick1,layer1;
ma3:ma(c,N3),linethick1,layer1;
ma4:ma(c,N4),linethick1,layer1;
ma5:ma(c,N5),linethick1,layer1;
ma6:ma(c,N6),linethick1,layer1;
x1:=(C+L+H)/3;
x2:=EMA(x1,M1);
x3:=EMA(x2,M2);
bu:=CROSS(X2,X3);
sl:=CROSS(X3,X2);
drawtext(bu,LOW,'▲'),colorred,linethick3,align1,valign0,layer0;
drawtext(bu,LOW*0.985,'B'),colorred,linethick3,align1,valign0,layer0;
drawtext(sl,HIGH,'▼'),colorgreen,linethick3,align1,valign2,layer0;
drawtext(sl,HIGH*1.015,'S'),colorgreen,linethick3,align1,valign2,layer0;
{stickline(x2>=x3,low,high,0.1,1),colorred;
stickline(x2>=x3,close,open,9,2),colorred;
stickline(x2>=x3,close,open,9,8),colorred;
stickline(x2<x3,low,high,0.1,1),colorGREEN;
stickline(x2<x3,close,open,9,2),colorGREEN; }
stickline(CROSS(X2,X3),open,close,6,1),colorYELLOW;
{stickline(CROSS(X3,X2),open,close,6,1),colorBLUE;}
stickline(bu or sl,open,close,2,0),coloryellow,layer0;
{卖盘>买盘成交量 绿柱}
STICKLINE(open>close,close,open,0,0),COLOR00FF00;
STICKLINE(open>close,close,open,6,0),COLOR004400;
STICKLINE(open>close,close,open,4.2,0),COLOR00AA00;
STICKLINE(open>close,close,open,2.5,0),COLOR00DD00;
STICKLINE(open>close,close,open,1,0),COLOR00FF00;
stickline(x2<x3,open,close,8,0),colorblue,layer7;
{玫瑰红柱}
STICKLINE(open<=close,close,open,0,0),COLORffaaFF;
STICKLINE(open<=close,close,open,6,0),COLOR662266;
STICKLINE(open<=close,close,open,4.2,0),COLORcc55cc;
STICKLINE(open<=close,close,open,2.5,0),COLORee77ee;
STICKLINE(open<=close,close,open,1,0),COLORff99FF;
stickline(x2>=x3,open,close,8,0),colorred,layer7;
gd16279