PPO

Percentage Price Oscillator
Description
The Percentage Price Oscillator is based on the difference between a fast and a slow moving average and is expressed in percentage terms.
Category
Trend Indicators
Parameters
SLOWPERIOD ( Default: 26 Min: 5 Max: 100 )
FASTPERIOD ( Default: 12 Min: 2 Max: 40 )
N ( Default: 9 Min: 1 Max: 100 )
Chart Script

PPO:(EMA(CLOSE,FASTPERIOD)-EMA(CLOSE,SLOWPERIOD))/EMA(CLOSE,SLOWPERIOD)*100;
EMA(PPO,N);