Unisciti alla nostra fan page
- Visualizzazioni:
- 4373
- Valutazioni:
- Pubblicato:
- 2018.07.13 15:35
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a 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
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/21241

Oscillator MM (Market Mode) allows assessing the market state: In trend state or in cyclic state.

Indicator 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.

Indicator Rj_RMA with the possibility to change the indicator timeframe in its input parameters.