Partial close script

That is exactly what I was looking for!

It will save a lot of time not having to go through all the steps with meta trader doing it the difficult way.

Thank you very much.
 
Have you seen this script? It can be easily modified to close 50% or 25% instead of the current 1/3 of a position.
Hey,

I have never modified scripts before. Wich line do I have to change in order to put a different percent to close?
 
Hey,

I have never modified scripts before. Wich line do I have to change in order to put a different percent to close?
The line number 44:
MQL4:
double halflots = NormalizeDouble(LOTS / 3.0, vp);
This makes it close 1/3 of a position. You can either keep it as a part and change to LOTS / 4.0 for 25% close or LOTS / 2.0 for 50% close, or you can change it to percentage like LOTS * 0.27 for 27% close.
 
  • 👍
Reactions: milesZ
thanks, but just only 1 position can be closed by partial by this script. can u made it for all position ?
 
thanks, but just only 1 position can be closed by partial by this script. can u made it for all position ?
It partially closes all positions but only for the current trading symbol. You can make it work on all symbols by replacing this line of code:
MQL4:
if((l_type == OP_BUY || l_type == OP_SELL) && OrderSymbol() == Symbol())
with:
MQL4:
if(l_type == OP_BUY || l_type == OP_SELL)
 
Hi there, so this script closes for example 50% of the position that I have selected or all positions on Mt4 that are currently opened?

Thank you.
 
Hi, thanks.
is there an script which closes partially the position I select on the terminal? If yes where can i find it? Tries to look everywhere but so far no sucess.
You can quite easily modify the attached script to only partially close those trades that match a given Magic number or even ticket number.