Initial commit: MQL5 Scripts Collection (MetaTrader 5)

This commit is contained in:
GeneralTradingSarl
2025-06-24 00:33:04 +01:00
commit 60a549d89c
1959 changed files with 31907 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

@@ -0,0 +1,20 @@
# 🚀 Unlock the Power of Trading!
Welcome to this open-source trading project. Here you will find powerful tools to enhance your trading journey. If you find this project useful, please consider starring ⭐, sharing, or donating to support further development!
---
**Support the project:**
- Star this repository on GitHub
- Share it with your trading friends
- [Donate here](https://www.paypal.com/donate/?hosted_button_id=YOUR_BUTTON_ID) to help us grow!
---
![Screenshot](ParticalClose__1.PNG)
![Screenshot](script.png)
## Source Files
- `haskayafxorderparticalclose..mq5`
---
> Made with ❤️ for the trading community.
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

@@ -0,0 +1,59 @@
//+------------------------------------------------------------------+
//| HaskayafxOrderParticalClose..mq5 |
//| Copyright 2021, |
//| https://www.haskayayazilim.net |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021, Haskaya"
#property link "https://www.haskayayazilim.net"
#property version "1.00"
#property script_show_inputs
//--- input parameters
#include <trade/trade.mqh>
input bool ParticalClosed=false;
input int ClosedVolume=50;//Percentage of Lots to Close %
input string ack="Type 50 for 50%";
input bool StopMoveToBE=false;
input int AddBreakEventPips=10;// opening price +1 Pips
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
bool resres;
CTrade trade;
for (int i = PositionsTotal() - 1; i >= 0; i--)
{
ulong Position_Ticket = PositionGetTicket(i);
double Position_Volume = PositionGetDouble(POSITION_VOLUME);
string Position_Symbol = PositionGetString(POSITION_SYMBOL);
int Position_Digits = (int)SymbolInfoInteger(Position_Symbol, SYMBOL_DIGITS);
double Position_Points = SymbolInfoDouble(Position_Symbol,SYMBOL_POINT);
double Position_Volume_Closed=NormalizeDouble((Position_Volume*ClosedVolume/100),2);
double Position_OpenPrice= NormalizeDouble(PositionGetDouble(POSITION_PRICE_OPEN),Position_Digits);
if( AddBreakEventPips>0) Position_OpenPrice=NormalizeDouble((Position_OpenPrice+AddBreakEventPips*Position_Points),Position_Digits);
double Position_SL = NormalizeDouble(PositionGetDouble(POSITION_SL),Position_Digits);
double Position_TP = NormalizeDouble(PositionGetDouble(POSITION_TP),Position_Digits);
if(StopMoveToBE && (Position_SL>0 || Position_SL==0))
{
resres=trade.PositionModify(Position_Ticket,Position_OpenPrice,Position_TP);
}
if(ParticalClosed && Position_Volume>0.01)
{
resres=trade.PositionClosePartial(Position_Ticket,Position_Volume_Closed,-1);
}
}
}
//+------------------------------------------------------------------+
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB