Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Range_Volume_Ratio - indicatore per MetaTrader 5
- Visualizzazioni:
- 4590
- Valutazioni:
- 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:
- Difference between Open and Close;
- 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 High/Low
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/20921
Range_Volume_Ratio_S
Indicator of candlestick size / tick volume ratios and signal line.
RVRResistanceAn indicator of the volume / bar price range ratio with a signal line and with the option of identifying the maximum/minimum price change resistance.