Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Indicatori

Range_Volume_Ratio - indicatore per MetaTrader 5

Visualizzazioni:
4359
Valutazioni:
(14)
Pubblicato:
2018.06.18 16:23
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

The indicator shows in a separate window, as a histogram, the candlestick size / tick volume ratios:

  1. Difference between Open and Close;
  2. Difference between High and Low.

The indicator has one input parameter:

  • Calculation type - type of calculations:
    • Open/Close - difference between Open and Close;
    • High/Low - difference between High and Low.

Calculations:

If the calculation type is Open/Close:

RVR[i] = Abs(Open[i] - Close[i]) / Volume[i]

If the calculation type is High/Low:

RVR[i] = (High[i] - Low[i]) / Volume[i]

where:

Volume - the tick volume of the candlestick

Fig.1. Calculations by Open/Close

Fig.1. Calculations by Open/Close


Fig.1. Calculations by High/Low

Fig.1. Calculations by High/Low

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

Range_Histogram Range_Histogram

A candlestick size indicator.

Rainbow_Volume Rainbow_Volume

A colored tick-volume indicator.

Range_Volume_Ratio_S Range_Volume_Ratio_S

Indicator of candlestick size / tick volume ratios and signal line.

RVRResistance RVRResistance

An indicator of the volume / bar price range ratio with a signal line and with the option of identifying the maximum/minimum price change resistance.