Skip to main content

Intraday Intensity Index for Amibroker (AFL)

Teotia almost 14 years ago Amibroker (AFL)

  • Rating:
    2 / 5 (Votes 5)
  • Tags:
    oscillator, amibroker

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

almost 14 years ago

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

2. Kevin
almost 14 years ago

Hi,
How does this work. It just shoes zero values???

Leave Comment

Please login here to leave a comment.