Mr.lee
2024-12-22 14:46:24
最佳回答
以前做过的,给你,基本我不喜欢用这类的,还是最简单的最好。n日内的,你自己去调节参数 n 1 100 5 m 1 100 13 aa:=vol/((high-low)*2-abs(close-open));买量:=if(close>open,aa*(high-low),if(close<open,aa*((high-open)+(close-low)),vol/2)),linethick0,colorred;卖量:=if(close>open,0-aa*((high-close)+(open-low)),if(close<open,0-aa*(high-low),0-vol/2)),linethick0,colorcyan;进出量:=买量+卖量,color00ffff; stickline(进出量<0,0,进出量,4,0),colorff6600;stickline(进出量<0,0,进出量,3,0),colorff9900;stickline(进出量<0,0,进出量,1.5,0),colorffcc00;stickline(进出量<0,0,进出量,0.5,0),colorcyan;stickline(进出量>0,0,进出量,4,0),color000099;stickline(进出量>0,0,进出量,3,0),color0000cc;stickline(进出量>0,0,进出量,1.5,0),color0000ff;stickline(进出量>0,0,进出量,0.5,0),colorcc66ff;n日内净流入:sum(进出量,n),linethick2,colorgreen;流入:if(n日内净流入>ref(n日内净流入,1),n日内净流入,draw**),colorred,linethick2;连红天:barslastcount(进出量>0);m日内翻红天:count(进出量>0,m),colorred;走熊天:barslastcount(n日内净流入<0),colorcyan;走牛天:barslastcount(n日内净流入>0),colorred;强势天:barslastcount((n日内净流入>ref(n日内净流入,1))>0 and n日内净流入>0);弱势天:barslastcount((n日内净流入<ref(n日内净流入,1))>0 and n日内净流入<0); 20210311