Tops Scalper
30 USD
Versione demo scaricata:
2 553
Pubblicato:
13 agosto 2019
Versione attuale:
5.1
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

Implemented function for reducing CPU usage during pausing pending orders and option for displaying the CPU requests (executions) per second made by the EA .
If the Reduce CPU parameter is set to true , then the EA will make only one request (execution) per second .
If this function is used in parallel with multiple open orders , Safety Stop , Daily Goal and Max Daily Loss functions might be delayed up to one second , or missed entirely if the Daily Goal or Max Daily Loss show up very briefly (under one second) .
Implemented function for reducing CPU usage during pausing pending orders and option for displaying the CPU requests (executions) per second made by the EA .
If the Reduce CPU parameter is set to true , then the EA will make only one request (execution) per second .
If this function is used in parallel with multiple open orders , Safety Stop , Daily Goal and Max Daily Loss functions might be delayed up to one second , or missed entirely if the Daily Goal or Max Daily Loss show up very briefly (under one second) .
Yeap , you are right , I have modified it so that it runs with normal speed if any open orders .
Modified the Reduce CPU function so that if any open orders are present , the EA will run and manage the open trades with normal speed ( CPU rqeuests per second are not lowered) . version 4.5
Hello Catalin Zachiu,
are the old set files suitable for the revised EA code?
Yeap , you are right , I have modified it so that it runs with normal speed if any open orders .
Modified the Reduce CPU function so that if any open orders are present , the EA will run and manage the open trades with normal speed ( CPU rqeuests per second are not lowered) . version 4.5
New set files for version 4_6 :
Hello Catalin Zachiu,
are the old set files suitable for the revised EA code?
The are compatible with the EA code , but not with current market conditions , I added a new function , VirtualTakeProfit and posted updated set files , using the new function . The OnTester function will also now display in strategy tester the profit/drawdown ratio so that on optimization , the best results using this ratio can be sorted easyier .
The new set files can be found on post #187 .
Привет! а можно в настройках советника прописывыть API ключи от биржи бинанс ?
Привет, я не знаю, как это сделать, или если это возможно, из-за безопасности.
Hi , I don't know how to do it , or if it's possible , because of security .
Hallo
Usually, when a trailing stop starts, the SL is "modify" to move to the entry point, but is there a parameter to shift this SL value from the entry point?
For example, if USDJPY entered at 140.000 at "TrailingStop" 15, SL will move to 140.000 when the rate reaches 140.015.
Instead, I want to put SL at 139.980 once 140.015 is reached.
In other words, how can the first "modify" in SL be moved to -20 from the entry point?
Hallo
Usually, when a trailing stop starts, the SL is "modify" to move to the entry point, but is there a parameter to shift this SL value from the entry point?
For example, if USDJPY entered at 140.000 at "TrailingStop" 15, SL will move to 140.000 when the rate reaches 140.015.
Instead, I want to put SL at 139.980 once 140.015 is reached.
In other words, how can the first "modify" in SL be moved to -20 from the entry point?
Using the parameters it has now , it's not possible , it needs modifications so that negative trailing is possible , I will take a look into the code and see what I can do .
Added option for Trailing Stop : NegativeTrailing . If set to true , the trailstop will measure the distance from the entry point to the opposite direction of the trade . If set to false , the trailstop will measure the distance from the current price to entry point . Version 4_7 .
I forgot to delete that parameter , it is not used , use the normal Trailing Stop parameter with the Negative Trailing set to true . I will update the EA without that parameter in a couple of minutes .
I forgot to delete that parameter , it is not used , use the normal Trailing Stop parameter with the Negative Trailing set to true . I will update the EA without that parameter in a couple of minutes .
So , when price reaches 140.015 :
1 : you want the Stop to be moved to 139.980 and then normal trailing starting from 140.000 (nothing happens between 140.980-140.000 ) or ,
2 : you want to start normal trailing from 139.980 ( Negative Trailing can be conditioned to start if price is higher with a certain amount above the buy price ) .
So , when price reaches 140.015 :
1 : you want the Stop to be moved to 139.980 and then normal trailing starting from 140.000 (nothing happens between 140.980-140.000 ) or ,
2 : you want to start normal trailing from 139.980 ( Negative Trailing can be conditioned to start if price is higher with a certain amount above the buy price ) .
I have to specify -20 points to get 139.980, which parameter should I put it in?
Added new parameter , NegativeTrailAfter , if set to zero and NegativeTrailing is set to true , the negative trailing will start with a negative distance of the value of TrailigStop . If NegativeTrailAfter is set above zero and NegativeTrailing is set to true , the negative trailing will start only after the price reached a certain profit in points (set by the NegativeTrailAfter parameter ) trailing value in points will be the TrailigStop value.
So , in your example you should set like this :
TrailingStop =35;
Trail_Step =0;
Start_Trail_After =0;
NegativeTrailing =true;
NegativeTrailAfter =15;
Added new parameter , NegativeTrailAfter , if set to zero and NegativeTrailing is set to true , the negative trailing will start with a negative distance of the value of TrailigStop . If NegativeTrailAfter is set above zero and NegativeTrailing is set to true , the negative trailing will start only after the price reached a certain profit in points (set by the NegativeTrailAfter parameter ) trailing value in points will be the TrailigStop value.
So , in your example you should set like this :
TrailingStop =35;
Trail_Step =0;
Start_Trail_After =0;
NegativeTrailing =true;
NegativeTrailAfter =15;