Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

Range_Volume_Ratio - indicator for MetaTrader 5

Views:
4316
Rating:
(14)
Published:
2018.06.18 16:23
Need a robot or indicator based on this code? Order it on Freelance Go to 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

Translated from Russian by MetaQuotes Ltd.
Original code: 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.