Profitable EA - Need Trailing Stoploss

 

i have this Profitable EA ,which uses the Stochastic oscillator, it works quite great in 1 min timeframe , i usually use it on EUR/USD, GBP/USD ,USD/CHF ,you can use it in any pair. Instead of StopLoss i want Trailing StopLoss =20 and take profit 100 (depends upon the user). if anyone code it i will be so glad .


Thanks


Files:
 
Prasshu:

i have this Profitable EA ,which uses the Stochastic oscillator, it works quite great in 1 min timeframe , i usually use it on EUR/USD, GBP/USD ,USD/CHF ,you can use it in any pair. Instead of StopLoss i want Trailing StopLoss =20 and take profit 100 (depends upon the user). if anyone code it i will be so glad .


Thanks


as you told,it already have trailing stoploss.

extern bool trail = False;

extern double TrailingStop = 10;

extern double SL       =100;
extern double TP       =100;

 
mntiwana:

as you told,it already have trailing stoploss.

extern bool trail = False;

extern double TrailingStop = 10;

extern double SL       =100;
extern double TP       =100;

i am so sorry by mistake i attached the wrong EA, i was just trying to add the feature in it but it didn't worked & i attached that edited EA, My mistake sorry. Here is the Real EA ,please code it

Thanks

Files:
 
Prasshu:

i am so sorry by mistake i attached the wrong EA, i was just trying to add the feature in it but it didn't worked & i attached that edited EA, My mistake sorry. Here is the Real EA ,please code it

Thanks

Check this thread for some working versions of stochastic based EAs : https://www.mql5.com/en/forum/179114
 
mladen:
Check this thread for some working versions of stochastic based EAs : https://www.mql5.com/en/forum/179114
i tried those EA's not very good result for me, i want this EA to have Trailing Stoploss . i m waiting for someone to do it.i know someone will definitely code it
 
I can code a trailing stop loss if you can define exactly the logic behind this trading system?
 
theforexgeek:
I can code a trailing stop loss if you can define exactly the logic behind this trading system?

as i said i found this EA which works on Stochastic oscillator & follow the trend. please check here

http://www.forexfactory.com/showthread.php?p=7031446#post7031446

if you able to do it & increase its accuracy , the EA can be very profitable for our forum members

 
theforexgeek:
I can code a trailing stop loss if you can define exactly the logic behind this trading system?

Hi theforexgeek

thank you for your volunteer offer,if you don't mind and able to take some headache,i suggest you a logical trailing stop strategy which is of course applicable in every EA/manual trading system of all levels.

regards

 
Prasshu:

as i said i found this EA which works on Stochastic oscillator & follow the trend. please check here

http://www.forexfactory.com/showthread.php?p=7031446#post7031446

if you able to do it & increase its accuracy , the EA can be very profitable for our forum members

Added a long and short trailing stop and added for extra digit brokers, so the take profit and stop loss you use should be the same as you enter should not need to multiply them by 10 any more.
Files:
 
mrtools:
Added a long and short trailing stop and added for extra digit brokers, so the take profit and stop loss you use should be the same as you enter should not need to multiply them by 10 any more.
Thanks a lot Sir.
 
mrtools:
Added a long and short trailing stop and added for extra digit brokers, so the take profit and stop loss you use should be the same as you enter should not need to multiply them by 10 any more.
Thanks mrtools :)
Reason: