Intraday Intensity Index for Amibroker (AFL)
Teotia almost 14 years ago Amibroker (AFL)
Intraday Intensity index
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("Intraday Intensity Index");
V_a=IIf(C>(L+(H-L)*2/3),V,IIf(C<(L+(H-L)*1/3),-V,0));
Cum(V_a);
Plot( Cum(V_a), "cummulative volume", colorBlue,style=1 );
Period = Param("Period", 10, 1, 300, 1, 10 );
Plot( EMA(Cum(V_a),Period), _DEFAULT_NAME(), colorRed, ParamStyle("Style") );
_SECTION_END();
2 comments
Leave Comment
Please login here to leave a comment.
My rating 5.
Great Indicator, can also use to gause trend strength. Attaching this to a price chart gives great clarity on trend.
Thans a lot for sharing
viswanath
Hi,
How does this work. It just shoes zero values???