Does anyone know where I could find a post that has the EFS for the indicator 'Percentage Volume Oscillator'? It's a MACD applied to volume
Thanks, Steven
Thanks, Steven
var PVO = null;
var SIG = null;
if(PVO==null) PVO = osc(12, 26, true, volume());//parameters are fast_length, slow_length, exponential, source
if(SIG==null) SIG = ema(9, PVO);//PVO is the source for the ema function
return new Array (PVO.getValue(0), SIG.getValue(0), (PVO.getValue(0)-SIG.getValue(0)));
Comment