指标公式详细说明
好公式网(www.goodgongshi.com)告诉您:当前正要下载:智能买卖系统 通达信智能系统
带智能系统的通达信里边的智能买卖系统
智能买卖系统---------请一定要学习葛南维法则
{请一定要学习葛南维法则的精髓,才能够合理使用该指标,通达信适用}
短趋势线:ma(close,13),colorred,linethick3;
中线:=ma(close,33),linethick1;
中趋势线:ma(close,55),linethick1,colorgray;
年线:ma(close,250),linethick1,colorligray,pointdot;
涨:if(短趋势线>ref(短趋势线,1),短趋势线,drawnull),colorred,linethick3;
平:=if(短趋势线=ref(短趋势线,1),短趋势线,drawnull),color00ffff,linethick3;
跌:if(短趋势线<ref(短趋势线,1),短趋势线,drawnull),colorgreen,linethick3;
上极限:=((c-ref(ma(close,20),1))/20+短趋势线)*1.20;
drawtext(cross(close,上极限),h*1.02,'减仓'),colorgreen;
drawtext(cross(close,ma(c,13)) and 短趋势线<ref(短趋势线 ,1) and 短趋势线<中趋势线 ,h*1.02,'减仓'),colorgreen;
drawtext(cross(短趋势线,c) and indexc>ma(indexc,13) and 短趋势线>ref(短趋势线 ,1) and v<ref(v,1) and 短趋势线>中趋势线 ,l*0.97,'买入'),colorred;
stickline(cross(短趋势线,c) and 短趋势线>ref(短趋势线 ,1) and v<ref(v,1) and 短趋势线>中趋势线 ,l,l*0.99,2,0),coloryellow;
var1:=((close-ma(close,6))/ma(close,6)*100+(close-ma(close,24))/ma(close,24)*100+(close-ma(close,32))/ma(close,32)*100)/3;
drawtext(var1>9 and v<ref(v,1) and filter(var1<ref(var1,1),5),h*1.02,'洗盘'),coloryellow;
drawtext(var1>9 and v>ref(v,1) and filter(var1<ref(var1,1),5),h*1.02,'减仓'),colorgreen;
drawtext(var1>20 and filter(var1<ref(var1,1),5),h*1.06,'卖出'),coloryellow;
var2:=hhv(var1>20,10);
drawtext(filter(var1<-9 and var1>ref(var1,1),18) and v>ref(v,1),l*0.98,'反弹'),colorred;
drawtext(var1<-20 and filter(var1> ref(var1,1),5),l*0.95,'抄底'),coloryellow;
drawtext(var2 and cross((ref(high,1)+ref(low,1))/2,ma(close,20)+2*std(close,20)),h*1.1,'危险'),coloryellow;
var12:=(high - low);
var3:=abs((open - close));
var4:=(high - if((close > open),close,open));
var5:=(if((close > open),open,close) - low);
var6:=((var3 / var12) * vol);
var7:=((var4 / var12) * vol);
var8:=((var5 / var12) * vol);
varb:=(((ma(close,5) > ma(close,10)) and (ma(close,10) > ma(close,30))) and (ma(close,30) > ma(close,60)));
vara:=(((close - ma(close,5)) / ma(close,5)) * 100);
drawtext((((((var6 > (ma(vol,5) * 2)) and 短趋势线>ref(短趋势线 ,1) and (var6 >= var7)) and (var6 >= var8)) and (close > open)) or ((vol > (ma(vol,5) * 3)) and varb)) ,l*0.98,'主力介入'),colormagenta;
系统使用说明
年线:=ma(c,250);
涨幅:=c/o>1.09;
drawtext(涨幅 and filter(涨幅>ref(涨幅,1),10),ref(年线,20),'杰出智能系统指标用法注释有详细的使用说明'),coloryellow;
ddx:
虚拟量:=if(currbarscount=1 and period=5,vol*240/fromopen,drawnull),nodraw,color669900;
stickline(currbarscount=1 and period=5,虚拟量,0,3,-1),color00c0c0;
var1:=vol/((high-low)*2-abs(close-open));
成交:vol,pointdot;
主动买盘:if(close>open,var1*(high-low),if(close<open,var1*((high-open)+(close-low)),vol/2)),colorred,pointdot;
主动卖盘:=if(close>open,0-var1*((high-close)+(open-low)),if(close<open,0-var1*(high-low),0-vol/2)),color00ff00,pointdot;
stickline(vol>0,vol,0,3,1),colorwhite;
stickline(主动买盘>0,0,主动买盘,3,0),colorred;
ddx:主动买盘+主动卖盘,coloryellow;
下面是五个选股公式,也就是预警里面要用到的公式:
回调买入:
var1:cross(ma(c,13),c) and ma(c,13)>ref(ma(c,13) ,1) and indexc>ma(indexc,13) and ma(c,13)>ma(c,55) and v<ref(v,1);
反弹卖出:
短趋势线:=ma(c,13);
中趋势线:=ma(c,55);
fantan:cross(close,ma(c,13)) and 短趋势线<ref(短趋势线 ,1) and 短趋势线<中趋势线;
顶部卖出:
var1:=((close-ma(close,6))/ma(close,6)*100+(close-ma(close,24))/ma(close,24)*100+(close-ma(close,32))/ma(close,32)*100)/3;
maichu:var1>20 and filter(var1<ref(var1,1),5);
底部买入:
var1:=((close-ma(close,6))/ma(close,6)*100+(close-ma(close,24))/ma(close,24)*100+(close-ma(close,32))/ma(close,32)*100)/3;
mairu:var1<-20 and indexc<ma(indexc,13) and filter(var1> ref(var1,1),5);
主力介入:
var12:=(high - low);
var3:=abs((open - close));
var4:=(high - if((close > open),close,open));
var5:=(if((close > open),open,close) - low);
var6:=((var3 / var12) * vol);
var7:=((var4 / var12) * vol);
var8:=((var5 / var12) * vol);
varb:=(((ma(close,5) > ma(close,10)) and (ma(close,10) > ma(close,30))) and (ma(close,30) > ma(close,60)));
短趋势线:=ma(c,13);
zhuli:(((((var6 > (ma(vol,5) * 2)) and 短趋势线>ref(短趋势线 ,1) and (var6 >= var7)) and (var6 >= var8)) and (close > open)) or ((vol > (ma(vol,5) * 3)) and varb and 短趋势线>ref(短趋势线 ,1)));
>>>使用本站搜索工具可以找到更多“智能买卖系统 通达信智能系统”