Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Price Volume Oscillator for Amibroker (AFL)
rebel10
about 11 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
oscillator, amibroker

This price volume indicator helps decide whether volume action is supporting price action or not. Volume is considered positive if price rises on a day and negative if prices fall. Then volume proportionate to the price change (ROC) is summed up for a certain period (default 20 days). The Oscillator is the ratio of net positive volume (proportionate to price change) over total absolute volume (proportionate to price change). Interpretation is similar to other oscillators such as RSI etc.

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 almost 10 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN( "Price Volume Oscillator" );
Periods = Param( "Periods", 20, 2, 200, 1 );
PROC = IIf( ROC( C, 1 ) > 0, V * ROC( C, 1 ), 0 );
NROC = IIf( ROC( C, 1 ) < 0, V * ROC( C, 1 ), 0 );
ROCresult = 100 *  ( Sum( PROC, Periods ) + Sum( NROC, Periods ) ) / ( Sum( PROC, Periods ) - Sum( NROC, Periods ) );
Plot( ROCresult , "Price*Volume Osc", ParamColor( "Color", colorCycle ), ParamStyle( "Style" )  );
_SECTION_END();

2 comments

1. halfman

hi, could you tell me how to set different color between months as showed on your picture above?

2. rebel10

It is auto set in latest Amibroker 5.60. But you can go to Tools > Preferences > Axis/Grids — and then change theme to ‘black’ to get this setting. Try it. If you still do not get it, let me know. I will then post the detailed settings in the theme. Hope this was helpful.

Leave Comment

Please login here to leave a comment.

Back