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 - MetaTrader 5 için gösterge

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

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

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: 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.