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 ....
          WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
            Advanced Pattern Exploration
            Neural Networks
            And Much More ....
          Prize zone Oscilator for Amibroker (AFL)
Rating:
      
  5 / 5 (Votes 1)
Tags:
      oscillator, amibroker
    From S&C Magazine June 2011
Screenshots
Similar Indicators / Formulas
                    Febo RSI ..real indicator
                    
                
                      Submitted
                      by abhinavsingh almost 14 years ago
                    
                  
                    Trading Volume Statistic
                    
                
                      Submitted
                      by tuanstock1 over 11 years ago
                    
                  
                    Ergodic Oscillator
                    
                
                      Submitted
                      by dljtrader almost 15 years ago
                    
                  
                    3 Days Track
                    
                
                      Submitted
                      by janet0211 over 15 years ago
                    
                  
                    Chande Momentum Oscillator
                    
                
                      Submitted
                      by klimpek almost 15 years ago
                    
                  
                    BoH Risk Aversion Indicator
                    
                
                      Submitted
                      by genkumag almost 14 years ago
                    
                  Indicator / Formula
Copy & Paste Friendly
// 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, "", colorDarkGreen ); 
PlotGrid( 15 ); 
Plot( 0, "", colorBlack ); 
PlotGrid( -5 ); 
Plot( -40, "", colorBrown ); 
PlotGrid( -60 ); 
// system rules 
Buy = ADX(14) < 18 AND ( Cross( PZO, -40 ) OR Cross( PZO, 15 ) ); 
Sell = ( Cross( PZO, 40 ) AND ADX( 14 ) > 18 ) OR Cross( -5, PZO ); 
Short = ADX(14) < 18 AND ( Cross( 40, PZO ) OR Cross( -5, PZO ) ); 
Cover = ( Cross( -40, PZO ) AND ADX( 14 ) > 18 ) OR Cross( PZO, 15 );
0 comments
Leave Comment
Please login here to leave a comment.
Back