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

PPO with buy sell signals for Amibroker (AFL)
alluv
almost 13 years ago
Amibroker (AFL)

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

This is a ppo with buy and sell signals similar to MACD, can be used in conjunction with price charts or it can be used to minimize the whipsaws in your trade.

I got the ppo from somewhere and i added the buy sell signals

Good luck

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Trending Wave 2 System
Submitted by Dryden about 12 years ago
Price Oscillator
Submitted by ariful_islam over 13 years ago
Stochastic
Submitted by expert over 13 years ago
STOCH RSI CROSSOVER
Submitted by sonia.b about 12 years ago
CCI ZERO CROSS WITH ALERT
Submitted by thanigay2k over 10 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("PPO");
//Further understanding of PPO indicator visit www.Stockchart.com
PPOShort = Param("PPO Short Period", 12, 1, 150, 1);
PPOLong = Param("PPO Long Period", 26, 1, 150, 1);
PPOsignal = Param("PPOsignal", 9, 1, 150, 1);
PPO = (EMA(C, PPOShort ) - EMA(C, PPOLong ))/ EMA(C, PPOLong );
PPOS = (EMA(ppo, PPOsignal  ));
Val=ppo-PPOS ;
Plot( PPO , "ppo", colorGreen, styleLine| styleThick  ); 
Plot ( PPOS ,"PPO Signal",  colorOrange, styleLine| styleThick   ); 
dynamic_color = IIf( Val> 0, colorGreen, colorRed ); 
Plot( Val, "PPO Histogram", dynamic_color, styleHistogram | styleThick  );

Buy= Cross( ppo,ppos);
Sell= Cross( ppos, ppo);
PlotShapes(shapeUpArrow * Buy,colorGreen);
PlotShapes(shapeDownArrow * Sell,colorRed);
AlertIf( Buy , "SOUND C:\\Windows\\Media\\Ding.wav", "Audio alert", 2 );
AlertIf(Sell , "SOUND C:\\Windows\\Media\\Ding.wav", "Audio alert", 2 );
 








_SECTION_END();

1 comments

1. ole

What is the advantage of not using OscP()?

Leave Comment

Please login here to leave a comment.

Back