Steve's 10.6 EA manual trading aids

This is where Bob posts his own threads
Post Reply
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: Steve's 10.6 EA manual trading aids

Post by SteveHopwood »

95026862 wrote:the original not putting in trades,

Yes it is. Guess how I know?
and the flexible is opening and closing short trades simultaneously
Don't care. Sick to death of the damn thing and wishing I hadn't coded it. I neither want it nor need it. Any more problems with the blasted thing and I will delete it.
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
User avatar
fxdaytrader
Trader
Posts: 190
Joined: Sun Jun 10, 2012 7:03 am
Location: Poon-Town (germany, se-asia, se-europe) ...

Re: Steve's 10.6 EA manual trading aids

Post by fxdaytrader »

Naki003 wrote:@Steve

Dear Steve,
I have a stupid problem: the Stoch H1 EA did not fired the buy trade, although in the Alert window there is it already three times...
problem.png
What is the problem?

Many thanks, Tom
On your screenshot I read "buy trade HAS TRIGGERED".

If I remember right in Steve's EAs the "has"-term only appears when SendAlertNotTrade=TRUE (what means DO NOT SEND TRADES, ALERTS ONLY).

Just an idea without having a closer look :idea:
User avatar
fxdaytrader
Trader
Posts: 190
Joined: Sun Jun 10, 2012 7:03 am
Location: Poon-Town (germany, se-asia, se-europe) ...

Re: Steve's 10.6 EA manual trading aids

Post by fxdaytrader »

Hm, in "Steve's 10.6 trading aid EA - Stochastic H1 buy.mq4" in the function "void HasSellFilled()" there seems to be a bug, line 2610:

Code: Select all

SetUpAndSendTrade(OP_BUY); 
should be changed to

Code: Select all

SetUpAndSendTrade(OP_SELL);
, shouldn't it? ;)
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: Steve's 10.6 EA manual trading aids

Post by SteveHopwood »

fxdaytrader wrote:Hm, in "Steve's 10.6 trading aid EA - Stochastic H1 buy.mq4" in the function "void HasSellFilled()" there seems to be a bug, line 2610:

Code: Select all

SetUpAndSendTrade(OP_BUY); 
should be changed to

Code: Select all

SetUpAndSendTrade(OP_SELL);
, shouldn't it? ;)
It doesn't matter. It is redundant code - I created all the sub EA's from the Master, merely changing a few default inputs and renaming. You will find a description of how in the opening comments of the Master version.

Might be worth checking that the sell versions are correct.

<Has a quick look at a sell version>. The code is wrong in the 'Bounce' snippet but again doesn't matter - redundant code.

<Has a quick look at the 'Bounce' version>. Nope. Fine.

<Has a quick look at the Master version>. Nope. Fine.

So, no problems. Thanks for bringing it up though. Better safe than crying over lost pips.

:D
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
User avatar
fxozgirl
Trader
Posts: 1176
Joined: Wed Nov 16, 2011 9:16 am
Location: Melbourne, Australia

Re: Steve's 10.6 EA manual trading aids

Post by fxozgirl »

SteveHopwood wrote:
Recovery
This is an idea Bob came up with several trading systems ago. I used it successfully in my demo 10.6 trading last week, and so added it as a possibility for users here.

The basic principle behind Recovery is this, using a buy as an example:
  • you take out a buy trade.
  • the trade moves against you and you are in the hole by, say, 50 pips. You take out another buy at the same lot size as the original trade.
  • if the market now moves back in your direction by 25 pips, you have the original trade at -25 and the new trade at +25. You can now close out an uncertain position at breakeven.
The process can continue indefinitely until:
  • your position closes at breakeven.
  • your position hits a stop loss and all your trades close.
  • you reach your maximum allowed number of open trades and either manage to close out at breakeven or you decide you are onto a loser and cut the process short.
Bob's original Recovery was way more complicated than this; I have implemented a simple version. Play with it on demo and see if it suits you. The crucial inputs are:
  • MaxTrades: the most trades you will allow in the Recovery process. The default of 1 disallows Recovery.
  • RecoveryDistancePips: the distance in pips that the market moves against you to trigger a Recovery trade. This level is represented on your charts by a Turquoise line. Once Recovery is in progress, the BE is represented by a Magenta line.
FOR NOW, ONLY USE RECOVERY ON DEMO ACCOUNTS. ITS CODE HAS YET TO BE PROPERLY TESTED.

Steve...I have been demo trading 10.6 Edsel manually by just setting pending trades (so not using your helper EA's), but have been trying to implement as required a mini recovery system similar to what you have described above, however on occasions have missed being able to close out trades as they reach break even or better by not being at the pc at the time.

Is it possible (and if you have time) for you to write a 'recovery only' management EA that can be placed on a chart that could take over management of multiple trades of the same pair. Simplified user inputs to include close at break even, close at x pips above breakeven?
So to be clear the EA wouldn't take trades, only manage those trades (by currency pair) already open.

:?:

Thanks :D
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: Steve's 10.6 EA manual trading aids

Post by SteveHopwood »

fxozgirl wrote:
SteveHopwood wrote:
Recovery
This is an idea Bob came up with several trading systems ago. I used it successfully in my demo 10.6 trading last week, and so added it as a possibility for users here.

The basic principle behind Recovery is this, using a buy as an example:
  • you take out a buy trade.
  • the trade moves against you and you are in the hole by, say, 50 pips. You take out another buy at the same lot size as the original trade.
  • if the market now moves back in your direction by 25 pips, you have the original trade at -25 and the new trade at +25. You can now close out an uncertain position at breakeven.
The process can continue indefinitely until:
  • your position closes at breakeven.
  • your position hits a stop loss and all your trades close.
  • you reach your maximum allowed number of open trades and either manage to close out at breakeven or you decide you are onto a loser and cut the process short.
Bob's original Recovery was way more complicated than this; I have implemented a simple version. Play with it on demo and see if it suits you. The crucial inputs are:
  • MaxTrades: the most trades you will allow in the Recovery process. The default of 1 disallows Recovery.
  • RecoveryDistancePips: the distance in pips that the market moves against you to trigger a Recovery trade. This level is represented on your charts by a Turquoise line. Once Recovery is in progress, the BE is represented by a Magenta line.
FOR NOW, ONLY USE RECOVERY ON DEMO ACCOUNTS. ITS CODE HAS YET TO BE PROPERLY TESTED.

Steve...I have been demo trading 10.6 Edsel manually by just setting pending trades (so not using your helper EA's), but have been trying to implement as required a mini recovery system similar to what you have described above, however on occasions have missed being able to close out trades as they reach break even or better by not being at the pc at the time.

Is it possible (and if you have time) for you to write a 'recovery only' management EA that can be placed on a chart that could take over management of multiple trades of the same pair. Simplified user inputs to include close at break even, close at x pips above breakeven?
So to be clear the EA wouldn't take trades, only manage those trades (by currency pair) already open.

:?:

Thanks :D
Yep. Leave it with me. The day job is a tad busy at the mo, but I will start planning this in the bath and code it asap.

:D
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
95026862

Re: Steve's 10.6 EA manual trading aids

Post by 95026862 »

SteveHopwood wrote:
95026862 wrote:the original not putting in trades,

Yes it is. Guess how I know?
and the flexible is opening and closing short trades simultaneously
Don't care. Sick to death of the damn thing and wishing I hadn't coded it. I neither want it nor need it. Any more problems with the blasted thing and I will delete it.

good point
User avatar
Jemook
Trader
Posts: 1085
Joined: Thu May 10, 2012 10:19 am
Location: Bondi, Sydney, Australia

Re: Steve's 10.6 EA manual trading aids

Post by Jemook »

Steve I'm happy to work privately with you and keep testing until it gets the Jemook tick of approval. From everything I've seen so far the stochastic entry is an amazing trigger, obviously needs to be used in conjunction with a strategy. So I'm all for getting this sucker working properly although I do understand the frustration with getting it to work!
Please note I am no longer affiliated with Global Prime. I've moved on to my next adventure with Afterprime.

Catch me here: https://www.afterprime.com
kwchau
Trader
Posts: 305
Joined: Tue Jan 03, 2012 3:37 pm

Re: Steve's 10.6 EA manual trading aids

Post by kwchau »

Jemook wrote:Steve I'm happy to work privately with you and keep testing until it gets the Jemook tick of approval. From everything I've seen so far the stochastic entry is an amazing trigger, obviously needs to be used in conjunction with a strategy. So I'm all for getting this sucker working properly although I do understand the frustration with getting it to work!
I totally agree with Jeromey that the Stoch EAs is a very useful tool to trade with Bob's 10.6 system.

Don't forget about the Flexible Stoch EAs, they have the same structures as the original Stoch EA.
The Flexible Stoch EAs at their current form are not working, I am still using the first version which is working ok but not exactly I like it, even so they are very helpful.

I hope Steve would agree to continue to work on them .
User avatar
matt_32
Trader
Posts: 204
Joined: Tue Apr 03, 2012 8:51 am
Location: Crete, Greece

Re: Steve's 10.6 EA manual trading aids

Post by matt_32 »

Great tools, helped me improve my trading greatly!

Does anybody experiance any freezing using these EA's ?

Matt
"Wise men speak because they have something to say; Fools because they have to say something." - Plato 347 BC
Post Reply

Return to “Bob's individual forum”