♥ 0 |
I was wanting to find out how to set up a Hull moving average to the TOS Money Flow Oscillator. I had tried to do it with the following Thinkscript: declare lower; input MFLength = 20; def division = (high – low[1]) + (high[1] – low); plot MoneyFlowOsc = Sum(multiplier * volume,MFLength) / Sum(volume,MFLength); plot ZeroLine = 0; plot OverSold = over_sold; plot OBVAvg = Average(MoneyFlowOsc, MFLength); I just end up getting three horizontal green lines. Any help is appreciated getting it to work. Thanks! RESOLVED
Marked as spam
|