Alım-satım robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Facebook ü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

MCDx - MetaTrader 4 için gösterge

Not me
Yayınlayan:
Lee Chee Tat
Görüntülemeler:
15626
Derecelendirme:
(27)
Yayınlandı:
2022.08.06 10:45
Güncellendi:
2022.08.15 06:03
MQL5 Freelance Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

For those who familiar with MCDx Smart Money indicator. Sorry to let you know.

No Banker. No Smart Money. No retailer. Just RSI.

---

1. Take RSI value from the _period

iRSI(NULL, 0, period, PRICE_CLOSE, pos)
2. RSI Value from (1) will minus with _base
(iRSI(NULL, 0, period, PRICE_CLOSE, pos)-base)
3. Whatever value from (2) will multiply with _sensitivity
sensitivity * (iRSI(NULL, 0, period, PRICE_CLOSE, pos)-base)

4. Lastly trap value from (3), to be between 0 - 20. So if value (3) > 20, cap it at 20; if value (3) < 0, make it 0.

if (rsi > 20) { rsi = 20; }
if (rsi < 0) { rsi = 0; }


3LS 3LS

Converted 3 Line Strike by TheTrdFloor from TradingView to MQL4

TenkanSenKijunSenCross TenkanSenKijunSenCross

Checking the Cross of First Two lines of the Ichimoku Indicator

Signals CSV to chart objects Signals CSV to chart objects

Plot entry and exit as line objects from MQL5 signal CSV onto chart

Draw trade history onto chart Draw trade history onto chart

Draw trade history onto chart