Ticaret 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
Uzman Danışmanlar

Universum 3.0 - MetaTrader 5 için Uzman Danışman

Yayınlayan:
Vladimir Karputov
Görüntülemeler:
3170
Derecelendirme:
(20)
Yayınlandı:
2017.01.26 09:24
Güncellendi:
2018.06.27 15:18
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Author of the idea — Yury Reshetovauthor of the MQL5 code — barabashkakvn. 

Increasing the lot after a losing trade. OnTradeTransaction. Entry signals are based on the DeMarker indicator. 

Expert Advisor Input Parameters

  • p — period for the DeMarker oscillator Optimized with the values from 3 to 100 with step of 1.
  • tp — take profit in pips. Optimized with the values from 10 to 100 with step of 1.
  • sl — stop loss in pips. Optimized with the values from 10 to 100 with step of 1.
  • lots — lot size of the first order and all orders opened after a losing trade. The parameter is not optimized.
  • mn — magic number. The parameter is not optimized.
  • losseslimit — limit the number of losing trades in a row. The parameter is not optimized. In case the number of losses reaches a limit, the EA stops opening new trades and sends a message e-mail.

Lot increase ratio is calculated by the formula:

   double k=(ExtTakeProfit+ExtStopLoss)/(ExtTakeProfit-spread);

The EA works only at newly formed bars and opening prices. There is no need to optimize it using Every tick mode.

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

Exp_WeightOscillator Exp_WeightOscillator

The simplest EA based on the WeightOscillator weighted oscillator.

WeightOscillator_HTF WeightOscillator_HTF

The WeightOscillator indicator with the timeframe selection option available in the input parameters.

MACD signal MACD signal

The Expert Advisor uses signals from the indicators: ATR, MACD.

Chart on Chart Chart on Chart

The Chart on Chart indicator displays a chart of other symbol on the current chart.