Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Visualizzazioni:
3785
Valutazioni:
(7)
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

MM MM

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

FIR FIR

Indicator FIR is a symmetrically weighted filter (Finite Impulse Response Filter).

Rj_SlidingRange_HTF Rj_SlidingRange_HTF

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

Rj_RMA_HTF Rj_RMA_HTF

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