QuickTrade Control – One-Click Trade Management – EA MetaTrader 4

QuickTrade Control - One-Click Trade Management - expert for MetaTrader 4
One-Button Click EA allows you to open trades with predefined Take Profit, Stop Loss, and Lot Size parameters with just one click. It automatically handles pipette conversions and displays real-time Buy and Sell profits directly on the chart, providing a clear and concise trading experience. Key Parameters: TP_Pips: Set your desired Take Profit level in … Read more

Trailing Stop Management Function – script MetaTrader 5

Trailing Stop Management Function - script for MetaTrader 5
//+——————————————————————+ //|                                       TrailingStopManagement.mq5 | //|                                  Copyright 2023, MetaQuotes Ltd. | //|                                             | //+——————————————————————+ #property copyright “Copyright 2023, MetaQuotes Ltd.” #property link      “” #property version   “1.00” #define _MagicNum  NULL//set magic number input int    Stoplose      =992;// set stoplose value input int    TrailingStop  =986;// set TrailingStop value //+——————————————————————+ //| Script program start function                                    | //+——————————————————————+ void OnStart()   { //—    Management();   } //+——————————————————————+ //+——————————————————————+ //| Management … Read more

Global Close Orders Management – script MetaTrader 4

Global Close Orders Management - script for MetaTrader 4
//***************************************************************************// extern string  Close_Orders_Management                    =  “”   ; //***************************************************************************// input bool     Close_All_ORDERS                          =  false; input bool     Close_Active_Buy_and_Sell_ORDERS          =  false; input bool     Close_Active_Buy_ORDERS              … Read more

XIT_BuySellAutoStoploss.mq4 – Stoploss set from Fractal Levels, Money management Risk/Reward – script MetaTrader 4

XIT_BuySellAutoStoploss.mq4 - Stoploss set from Fractal Levels, Money management Risk/Reward - script for MetaTrader 4
XIT_BuySellAutoStoploss.mq4 – Stoploss set from Fractal Levels, Money management Risk/Reward My main goal here with this script was to help improve my win ratio, by setting my stoploss at fractals with the best support. I had been using fixed stoploss values, and kept having the stop hit and within minutes the price went back into … Read more

MySQL library for MQL4 with proper memory management – library MetaTrader 4

MySQL library for MQL4 with proper memory management - library for MetaTrader 4
Original library file mql4-mysql.mqh is located here: . Give respect to the original authors for the work done (originally created by Russell, then modified by vedroid and lukins / Sergey) and read description of the original code. The original mql4-mysql.mqh library had a serious problem with memory management. Problems were reported by several users (you … Read more

Example of SAR Automated – with Advanced Money Management – EA MetaTrader 4

Example of SAR Automated - with Advanced Money Management - expert for MetaTrader 4
Real author: Mohammad Soubra This is not a profitable EA. This is just a basic/simple example for coders. This example has been built using SAR (Stop And Reverse) indicator. With Advanced Money Management function: //+——————————————————————+ //    expert AdvancedMM function //+——————————————————————+ double AdvancedMM()   {    int i;    double AdvancedMMLots=0;    bool profit1=false;    int SystemHistoryOrders=0;    … Read more