Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter ü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örüntülemeler:
3679
Derecelendirme:
(4)
Yayınlandı:
2018.07.13 15:32
CI.mq5 (9.16 KB) görüntüle
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Indicator CI (Congestion Identifier). It displays within how many bars before the current one the price was within the channel formed by the Close price of the current bar +/- Delta in points. It also displays the counter value threshold level and the marks, in which the counter is above or below that level.

The indicator has three configurable parameters:

  • Period - calculation period;
  • Delta - up/down shift from the price in points, which forms the channel width;
  • Level - threshold level of bars within the channel.

Calculations:

CI = count

where:

  • count - number of bars with the Close price within corridor Close+Delta - Close-Delta.

Signals:

If PrevCI < Level and CI > Level:

Out = Level

If PrevCI > Level and CI < Level:

In = Level
  • Out - signal of exceeding the Level;
  • In - signal of entering back inside the Level upon having exceeded it.

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

RoundPrice-Ext_HTF RoundPrice-Ext_HTF

Indicator RoundPrice-Ext with the timeframe selection option available in its input parameters.

Exp_BykovTrend_ColorX2MA Exp_BykovTrend_ColorX2MA

Two independent trading systems using indicators BykovTrend_V2 and ColorX2MA within one EA.

DI_Cluster DI_Cluster

Indicator DI_Cluster represents three indicators ADX with different parameters. Unlike standard ADX, the threshold levels of DI Cluster are not constant, but are determined by the intersections of three indicator lines. You can choose any of the three lines of standard ADX to be displayed: ADX trend strength lines themselves and line +DI or -DI.

EMA_With_Trend_Adjustment EMA_With_Trend_Adjustment

EMA_With_Trend_Adjustment - a moving average with exponential smoothing and correction by its trend component.