Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Indicateurs

Range_Volume_Ratio - indicateur pour MetaTrader 5

Vues:
4356
Note:
(14)
Publié:
2018.06.18 16:23
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur 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

Traduit du russe par MetaQuotes Ltd.
Code original : 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.