Join our fan page
MV_OBV - indicator for MetaTrader 5
- Views:
- 4046
- Rating:
- Published:
- 2018.07.13 15:35
- Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
Unlike standard On Balance Volume calculated on Close prices only, and indicator MultiVote OBV is calculated on HLC prices, which resulted in its higher sensitivity.
The indicator has no configurable parameters. Negative values are drawn in red, positive ones in green.
Calculations:
MVOBV = PrevMVOBV + TotalVote * Volume
where:
TotalVote = HighVote + LowVote + CloseVote
-
If High > PrevHigh:
HighVote = 1
-
If High < PrevHigh:
HighVote = -1
-
If Low > PrevLow:
LowVote = 1
-
If Low < PrevLow:
LowVote = -1
-
If Close > PrevClose:
CloseVote = 1
-
If Close < PrevClose:
CloseVote = -1
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/21241
Oscillator MM (Market Mode) allows assessing the market state: In trend state or in cyclic state.
FIRIndicator FIR is a symmetrically weighted filter (Finite Impulse Response Filter).
Indicator Rj_SlidingRange with the possibility to change the indicator timeframe in its input parameters.
Rj_RMA_HTFIndicator Rj_RMA with the possibility to change the indicator timeframe in its input parameters.