Exp TralPartionClose
FREE
Pubblicato:
17 dicembre 2013
Versione attuale:
26.222
Non hai trovato un robot adatto?
Ordina il tuo
su Freelance
Vai alla sezione Freelance
Ordina il tuo
su Freelance
Come acquistare un Robot di Trading o un indicatore
Esegui il tuo EA
hosting virtuale
hosting virtuale
Prova un indicatore/robot di trading prima di acquistarlo
Vuoi guadagnare nel Market?
Come presentare un prodotto per venderlo con successo
Ti stai perdendo delle opportunità di trading:
- App di trading gratuite
- Oltre 8.000 segnali per il copy trading
- Notizie economiche per esplorare i mercati finanziari
Registrazione
Accedi
Accetti la politica del sito e le condizioni d’uso
Se non hai un account, registrati

This is impressive, thank you.
Version 21.612
I notice that it deletes all horizontal lines from the chart when active; is that my side or a bug?
Vertical lines, trend lines and rectangles are fine.
Looks like the author may have abandoned this handy project but I wanted to highlight an error in its calculation of TPs.
When placing a pending order with a TP via MT4's interface (right-click -> New order), this EA will assume the order and draw the entry and TP lines on the chart but miscalculate the projected profit.
In this image example, the actual TP should be ~115G (£115), not 200.00G
How can I make this EA to close Loss making trades against profit making trades ?
Means profit from a trade is greater than loss making trade, cancel/close both of them.
The partial closure function does not work. So no matter if you define a percentage and a Fixed lot to close each time, the EA always closes 100% of the lots at the first time. The code needs maintenance and fix
full guide https://www.expforex.com/?p=100
Hi Vladislav
If I open a trade manually, with an initial stop loss put in, will this utlity scan for open trades then start to work on it? Or does it only work with buy/sell trade I open with your dashboard?
Hi Vladislav
If I open a trade manually, with an initial stop loss put in, will this utlity scan for open trades then start to work on it? Or does it only work with buy/sell trade I open with your dashboard?
Hello.
Expert Advisor works with any positions on the account.
BUY SELL buttons are EAPADPRO buttons https://expforex.com/eapadpro/
Hello,
I think this I a very nice product I am using on my livechart. Thanks for that work.
but I am wondering, what should I do, that this EA works on all Open Symbols without puttend the EA to every each Chart.
at the moment, I Drag the EA to the Gold Chart and it works. But I Need it for all Foren Paris.
any idea
i try Magic number -1, but don’t work.
regards
Hello,
I think this I a very nice product I am using on my livechart. Thanks for that work.
but I am wondering, what should I do, that this EA works on all Open Symbols without puttend the EA to every each Chart.
at the moment, I Drag the EA to the Gold Chart and it works. But I Need it for all Foren Paris.
any idea
i try Magic number -1, but don’t work.
regards
hi Vlad,
I noticed if the "startpointtotrail" is less than 100, the EA closes the full position If 100 and above, is only when it uses the partial closure logic. Is this in the code, how you programmized it or is it a kind of bug?
hi Vlad,
I noticed if the "startpointtotrail" is less than 100, the EA closes the full position If 100 and above, is only when it uses the partial closure logic. Is this in the code, how you programmized it or is it a kind of bug?
Hello.
Thank you. I also noticed for some Mt4 the Stop loss is placed as actual but in others as virtual. Not sure if that is broker issue or something in the parameters of the EA. But i think it has to do with the how many points before actual price can place a stop loss for some brokers. I think that is what causes the problem. If you EA (i believe) is allowed to post the stop loss, then the whole position is closed. However if the stop loss is less than the minimum allowed, then will not be posted, will be virual and only then positions can close partially. Let me give 2 examples:
A. Decode FX MT4. It only fires 1 single closure. Same many other brokers like go Markets, Axi e.tc. No partial orders. And we can always see the Stop loss price. that is because it has 0 points minimum for Gold to set as S/L against actual price.
B. PU Prime Mt4. The EA works perfectly there. Multiple partial orders and the stop loss is virtual. that is because it has minimum 35 points to set as S/L before the actual price and i set 30 hence the S/L price is never posted.
See the set up files and 2 examples
As you can see the S/L is posted in DecodeFX. and there is always 1 single closure. No partials
But on PU Prime is Virtual and many partial closures:
Thank you. I also noticed for some Mt4 the Stop loss is placed as actual but in others as virtual. Not sure if that is broker issue or something in the parameters of the EA. But i think it has to do with the how many points before actual price can place a stop loss for some brokers. I think that is what causes the problem. If you EA (i believe) is allowed to post the stop loss, then the whole position is closed. However if the stop loss is less than the minimum allowed, then will not be posted, will be virual and only then positions can close partially. Let me give 2 examples:
A. Decode FX MT4. It only fires 1 single closure. Same many other brokers like go Markets, Axi e.tc. No partial orders. And we can always see the Stop loss price. that is because it has 0 points minimum for Gold to set as S/L against actual price.
B. PU Prime Mt4. The EA works perfectly there. Multiple partial orders and the stop loss is virtual. that is because it has minimum 35 points to set as S/L before the actual price and i set 30 hence the S/L price is never posted.
See the set up files and 2 examples
As you can see the S/L is posted in DecodeFX. and there is always 1 single closure. No partials
But on PU Prime is Virtual and many partial closures:
On fact is is only both PU Prime Standard accounts that the partial closure function works. In all my other MT4 which are raw spreads (ECN), the position is always closing at once not partial.
It may be the case some MT4 brokers do not allow partial closures. Not sure how to check this in Mt4.
hi Vladislav, one clarification
hi Vladislav, one clarification
Hi Georgios,
Short answer: Yes — FixTrailingStopLevel works independently of MovingInWLUSETRAL .
MovingInWLUSETRAL = YES
only moves SL to breakeven after the first partial close.
FixTrailingStopLevel trails SL by levels as price creates new fixation levels and does not require breakeven to be ON.
How the levels work (long position)
With StartPointToTral = 100 and StepPointToFixLevel = 30 , the fixation levels are:
When price breaks a new level (e.g., crosses L2 = +130), the EA sets SL relative to that level by FixTrailingStopLevel .
Formulas
Long: SL = Level_n − FixTrailingStopLevel
Short: SL = Level_n + FixTrailingStopLevel
Your example
When price breaks +130, SL becomes +115 (i.e., 130 − 15 ) — about +115 points above entry for a long. Nuance: SL is calculated from the level, not literally “N points below the current price”, but right after a level break the result is effectively the same.
Notes