Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Telegram üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Göstergeler

Range_Volume_Ratio_S - MetaTrader 5 için gösterge

Görüntülemeler:
5271
Derecelendirme:
(13)
Yayınlandı:
2018.06.18 16:24
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Smoothed Range Volume Ratio is an oscillator based on indicator Range_Volume_Ratio. It shows in a separate window, as a histogram, the candlestick size / tick volume ratios by two parameters:

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

It also displays a signal line plotted by the method of smoothing the histogram values.

The color of the histogram columns can be displayed by two methods:

  1. By the value of the previous column. If the previous column is above the signal line, then the color is green. Otherwise, it is orange;
  2. One-color histogram - all columns are of one color.

The indicator has four input parameters:

  • Calculation type - type of calculations:
    • Open/Close - difference between Open and Close;
    • High/Low - difference between High and Low.
  • Period - smoothing period of the signal line;
  • MA Method - signal line calculation method;
  • Colors setting - color settings:
    • By previous bar position - histogram column color by the value of the previous column;
    • One color - one color.

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
Signal = Moving average(RVR, Period, Method)

Fig.1. Calculations by Open/Close, one color

Fig.1. Calculations by Open/Close, one color


Fig.2. Calculations by Open/Close, the color by the value of the previous column

Fig.2. Calculations by Open/Close, the color by the value of the previous column


Fig.3. Calculations by High/Low, the color by the value of the previous column

Fig.3. Calculations by High/Low, the color by the value of the previous column

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/20922

Range_Volume_Ratio Range_Volume_Ratio

Indicator of candlestick size / tick volume ratios.

Range_Histogram Range_Histogram

A candlestick size indicator.

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.

Wiseman_HTF Wiseman_HTF

Indicator Wiseman with the timeframe selection option in its input parameters.