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 Zone Oscillator for Amibroker (AFL)
joeoil
almost 11 years ago
Amibroker (AFL)

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

Could not find this indicator in the library so I post it here. It is a price oscillator created by Walid Khalil and David Steckler and could be used to find overbought and oversold condition and also to spot divergence in price. I made a small change form the original formula.

Joeoil

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 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("PZO_ind");
// PZO indicator 
function PZOsc( Period ) 
{ 
R = sign( Close - Ref( Close, -1 ) ) * Close; 
VP = EMA( R, Period ); 
TV = EMA( Close, Period ); 
return Nz( 100 * VP / TV ); 
} 
Period = Param( "PZO period", 14, 2 , 200 ); 
PZO = PZOsc( Period ); 
Plot( PZO, "PZO" + _PARAM_VALUES(), colorBlue, styleThick ); 
// grid lines 
PlotGrid( 60 ); 
Plot( 40, "", colorLime ); 
Plot( -40, "", colorRed ); 
PlotGrid( -60 ); 
_SECTION_END();

1 comments

1. zagreus

very interresting to see the down / up cycles

tx ;)

Leave Comment

Please login here to leave a comment.

Back