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

Exp_GTakeProfit_Tm - MetaTrader 5 için Uzman Danışman

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

An Expert Advisor for closing all positions, in case of the total profits on those positions exceeded the Take Profit level fixed in inputs, or where it is necessary to close all positions beyond the time interval fixed in the settings. In a manner, this EA works as a global take profit function for all open positions simultaneously.

//+----------------------------------------------+
//|  Options to calculate the profits            |
//+----------------------------------------------+
enum TakeMode
  {
   ENUM_PERCENT,     //profits in percents of the deposit
   ENUM_CARRENCY     //profits in deposit currency units
  };
//+----------------------------------------------+
//| Input parameters of the EA indicator         |
//+----------------------------------------------+
input TakeMode LMode=ENUM_PERCENT;     //method of detecting profits
input double TakeProfit=100.0;         //take profit level
input bool   TimeTrade=true;      //Allow trading in the specified interval

The EA provides an option of closing positions only beyond the time interval defined in its input variables:

input bool TimeTrade=true; //Permission to trade by time intervals
input HOURS StartH=ENUM_HOUR_0; //Trading start (Hours)
input MINUTS StartM=ENUM_MINUT_0; //Trading start (Minutes)
input HOURS EndH=ENUM_HOUR_23; //Trading end (Hours)
input MINUTS EndM=ENUM_MINUT_59; //Trading end (Minutes)

Two variables (hours and minutes) are provided for the operation start time, and two similar variables for the end time.

Default settings enable the Expert Advisor to trade the whole trading session from 0:00, while all positions are closed at 23:59.

If the start time is later than the specified end time, the Expert Advisor will close positions the next day, at the specified time.

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

Exp_GStopLoss_Tm Exp_GStopLoss_Tm

An Expert Advisor for closing all positions, in case of the total losses on those positions exceeded the Stop Loss level fixed in inputs, or where it is necessary to close all positions beyond the time interval fixed in the settings.

Choppiness_IndexH Choppiness_IndexH

Indicator Choppiness Index Histogram

Exp_GStop_Tm Exp_GStop_Tm

An Expert Advisor for closing all positions, in case of the total profits on those positions exceeded the Take Profit level fixed in inputs or the total losses on those positions exceeded the Stop Loss level fixed in inputs, or where it is necessary to close all positions beyond the time interval fixed in the settings.

AOCCI AOCCI

An Expert Adviswor based on two indicators: iCCI (Commodity Channel Index, CCI) and iAO (Awesome Oscillator, AO)