飞狐布林线主图指标
-
相关简介:飞狐布林线主图指标 源码 压力线:MA(CLOSE,20)+2*STD(CLOSE,20),colorff8918; 支撑线:MA(CLOSE,21)-2.2*STD(CLOSE,21),colorff00ff; ma5:=EMA(CLOSE,5); ma10:=EMA(CLOSE,10); ma20:=EMA(CLOSE,20); a1:=FILTER(ma5REF(ma5,1) and ma10REF(ma10,1) and ma20REF(ma20,1) and ma5ma10,5); a
-
文章来源:股海网作者:股海网发布时间:2016-06-25浏览次数:
飞狐布林线主图指标
源码
压力线:MA(CLOSE,20)+2*STD(CLOSE,20),colorff8918;
支撑线:MA(CLOSE,21)-2.2*STD(CLOSE,21),colorff00ff;
ma5:=EMA(CLOSE,5);
ma10:=EMA(CLOSE,10);
ma20:=EMA(CLOSE,20);
a1:=FILTER(ma5>REF(ma5,1) and ma10>REF(ma10,1) and ma20>REF(ma20,1) and ma5<ma10,5);
a2:=(2*CLOSE+HIGH+LOW+OPEN)/5;
a3:=LLV(LOW,5);
a4:=HHV(HIGH,4);
a5:=EMA((a2-a3)/(a4-a3)*100,4);
a6:=EMA(0.667*REF(a5,1)+0.333*a5,2);
a7:=EMA(a2,13)-EMA(a2,34);
a8:=EMA(a7,5);
a9:=(-2)*(a7-a8)*3.8;
PARTLINE(ma5>REF(ma5,1),ma5),Linethick2,colorff;
PARTLINE(ma5<REF(ma5,1),ma5),Linethick2,colorff00;
kxs:=SYSPARAM(2);
★早晨之星:=REF(CLOSE,2)/REF(OPEN,2)<0.95 and REF(OPEN,1)<REF(CLOSE,2) and ABS(REF(OPEN,1)-REF(CLOSE,1))/REF(CLOSE,1)<0.03 and CLOSE/OPEN>1.05 and CLOSE>REF(CLOSE,2);
DRAWTEXT(BARPOS=SYSPARAM(2),HIGH,'丢丢短线布林专用')align4,COLORYELLOW;