Hi, I enjoy using this indicator. There's a couple of things that still puzzle me though. In the OBV CCI Histogram, how do I make sense of the columns above zero line but still show up as red, and likewise, the columns below zero line but show up as green bars ? Overall, the histogram looks similar to the CCI histogram. I wonder how can I read either the CCI or OBV info from the combined histogram? Because it looks like something totally new to me.
Comentários
I plan to make a strategy to evaluate your indicator's performance. Can you share how do you calc the OBV histogram?
Thank you
src = close
OBV = cum(sign(change(src)) * volume)
//Oscillator is calculated
OUT = ema(((OBV-ema(OBV,N1)) / (0.015 * ema(abs(OBV-ema(OBV,N1)),N1))), N2)
In the meantime this one is god but repaints when you change the timeframe