Detect Friday of The First Week of The Month – To Detect NFP Day – EA MetaTrader 4

Detect Friday of The First Week of The Month - To Detect NFP Day - expert for MetaTrader 4
//+——————————————————————+ //|                                                  FirstFriday.mq4 | //|                                  Copyright 2023, MetaQuotes Ltd. | //|                                             | //+——————————————————————+ #property copyright “Copyright 2023, MetaQuotes Ltd.” #property link      “” #property version   “1.00” #property strict datetime lastTime = 0; // Variable to store the time of the last detected candle //+——————————————————————+ //| Expert initialization function                                   | //+——————————————————————+ int OnInit()       lastTime = iTime(Symbol(),PERIOD_D1,0);    return(INIT_SUCCEEDED);

Easy to use Hedging Class for MQL4 by Peter Mueller – library MetaTrader 4 – library MetaTrader 4

Easy to use Hedging Class for MQL4 by Peter Mueller - library for MetaTrader 4 - library for MetaTrader 4
Input Parameters: OrderDistancePoints : Determines the distance in points from the current ask price for placing buy orders and from the bid price for placing sell orders. TPPoints : Specifies the take profit target in points. Startlotsize : Sets the initial lot size for trades. Gainperlot : Defines the desired gain per lot size. The

AllTheUpsTheresAlwaysDowns – EA MetaTrader 4

ATUTAD
Key Features Customizable Entry Conditions: Option to use new entry conditions for more rubost trading strategy. Lot Size Management: Automatically adjusts lot sizes using a multiplier after profitable trades. Breakeven Conditions: Two levels of breakeven conditions to secure profits at predefined points. Trading Hours Control: Specify the start and end hours for trading to align

expert pro – EA MetaTrader 4

expert pro - expert for MetaTrader 4
#property strict extern double tpPoints = 50;          // Take profit points extern double stepPoints = 100;       // Points between doubling orders extern double initialLotSize = 0.01;  // Initial lot size extern double lotStep = 0.01;         // Lot size step extern bool useCustomLots = true;     //

Grid EA Pro – EA MetaTrader 4

Grid EA Pro - expert for MetaTrader 4
A professional Grid advisor works according to RSI ( Relative Strength Index ) indicators. And has the function of Reducing the Drawdown on the account by overlapping unprofitable orders. The chart displays information about the profit. It can be a very useful tool, For manual trading.  Recommend ECN broker with LOW SPREAD: IC Market , Exness, NordFX , FXPRIMUS , Alpari ,

Total Active / Closed orders by order type in MT4 – script MetaTrader 4

Total Active / Closed orders by order type in MT4 - script for MetaTrader 4
There are six different type of active or closed  orders which is  OP_BUY OP_SELL OP_BUYSTOP OP_SELLSTOP OP_BUYLIMIT OP_SELLLIMIT This script will find the count of active /closed orders based on the types Total Active / Closed orders by order type in MT4 – script MetaTrader 4