Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
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:
3585
Valutazioni:
(9)
Pubblicato:
2018.07.13 15:21
RMI.mq5 (7.73 KB) visualizza
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

Indicator RMI (Running Median Indicator) is a moving average with the "Running Median" filtering algorithm.

It has two configurable parameters:

  • Period - calculation period;
  • Applied price - price used for calculations.

Calculations:

RMI = VAR(Index)

where:

  • VAR - the values of Applied price in ascending order within Period.
Index = floor(Length/2.0+0.5)

If round(Period/2) * 2 = Period:

Length = Period + 1

Otherwise:

Length = Period

Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/21166

PVO PVO

Indicator PVO (Percentage Volume Oscillator) represents a momentum for the volume. It calculates the difference in the percents of large MA between two moving averages based on volumes.

MPO MPO

Indicator MPO (Midpoint Oscillator) displays price movement without its trend component around its centerpoint. It is displayed as two lines: Price movement line and signal line. Centerline (MidPoint) is zero level of the oscillator.

SS SS

Indicator SS (Stochastic Stack) represents a set of eight indicators Stochastic with different parameters, united in a single calculation process.

UDP UDP

Indicator UDP (Up/Down Percentage) displays the direction of candlesticks, i.e., up/down, as a percentage over the selected period.