stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

Bob's Brainless Thingy
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=3828
Page 2 of 3
Author:  SteveHopwood [ Tue Sep 16, 2014 8:17 am ]
Post subject:  Bob's Brainless Thingy

Anyone using the bot will be getting these errors. I will add the required fixes soon.

:xm:
Author:  matt_32 [ Tue Sep 16, 2014 8:39 am ]
Post subject:  Bob's Brainless Thingy

SteveHopwood » Tue Sep 16, 2014 10:17 am wrote:Anyone using the bot will be getting these errors. I will add the required fixes soon.

:xm:


Thank you Steve :yahoo:
Author:  rapple [ Fri Sep 19, 2014 12:53 am ]
Post subject:  Bob's Brainless Thingy

Hi Steve. Hope your wife is feeling well. I am sure she is excited about going home.

I am setting up some Demos to test Bob's Brainless Thingy.

I have set one up with 'Bob's H4 240 trend filter' enabled (MaTF=15, MaPeriod =100). However this EA will now not place any pending trades.

Could I please request that this is included

Thanks Rapple
Author:  SteveHopwood [ Fri Sep 19, 2014 8:44 am ]
Post subject:  Bob's Brainless Thingy

rapple » Fri Sep 19, 2014 12:53 am wrote:Hi Steve. Hope your wife is feeling well. I am sure she is excited about going home.

I am setting up some Demos to test Bob's Brainless Thingy.

I have set one up with 'Bob's H4 240 trend filter' enabled (MaTF=15, MaPeriod =100). However this EA will now not place any pending trades.

Could I please request that this is included

Thanks Rapple
Thanks Rapple - the same thing was happening to me. I added code to check that all the pendings had been sent earlier in the week, and was assuming it was a fault there that I had not got around to finding.

Your post sent me in the right direction, and coders would do well to take note of this. The LookForTradingOpportunities in all my shells works fine when the ea is called upon to send a single trade in one direction only. It fails when the ea might be called upon to send only one of two opposite-direction trades if a filter such as 240 MA or Slope etc is being used.

Fixes in V 1b in post 1.

:xm:
Author:  SteveHopwood [ Mon Sep 22, 2014 5:19 pm ]
Post subject:  Bob's Brainless Thingy

I assume that traders demoing BBT as originally coded saw the same losses in the early part of last week that I did?

I enabled the MA filter on Friday and the account is up by c. 2.5%.

:xm:
Author:  rapple [ Wed Sep 24, 2014 12:45 am ]
Post subject:  Bob's Brainless Thingy

Hi Steve

Early days but really happy with BBT so far

I am running slightly different settings

+30 TP
-10 SL
+10 BE

MA filter
MaTF=15
MaPeriod=100

:clap: :clap: :clap:
Author:  SteveHopwood [ Wed Sep 24, 2014 6:15 am ]
Post subject:  Bob's Brainless Thingy

That is looking good, rap.

:xm:
Author:  Stan [ Wed Sep 24, 2014 2:51 pm ]
Post subject:  Bob's Brainless Thingy

Steve i tested this ea OOTB 15M on my live mini account and the result are very promising. I have noticed however that the pending order seem to send only in sell direction. I use the MA240 filter like OOTB setting that have you posted, but in the positive pairs above the 240MA the ea don't send any buy orders. I don't know if it's only one my problem but i have seen the same in my another demo account.
Another problem that i have seen is that sometimes the open yellow line isn't in the correct position and then the order doesn't send in the correct level to 10 points above/below the open session and than is the yellow line.
I attached one immagine with the open of ny session today at 12.00 broker time.
Cheers
Author:  SteveHopwood [ Wed Sep 24, 2014 4:03 pm ]
Post subject:  Bob's Brainless Thingy

Stan » Wed Sep 24, 2014 2:51 pm wrote:Steve i tested this ea OOTB 15M on my live mini account and the result are very promising. I have noticed however that the pending order seem to send only in sell direction. I use the MA240 filter like OOTB setting that have you posted, but in the positive pairs above the 240MA the ea don't send any buy orders. I don't know if it's only one my problem but i have seen the same in my another demo account.
Another problem that i have seen is that sometimes the open yellow line isn't in the correct position and then the order doesn't send in the correct level to 10 points above/below the open session and than is the yellow line.
I attached one immagine with the open of ny session today at 12.00 broker time.
Cheers
Amazing what I do not notice, sometimes. I had a look at my account and yes, sells only. Thanks for staying awake, Stan. :clap:

I had tried for a cpu-saving shortcut in the sell trade decision and it buggered the ea trying to send a buy stop. Fix in V1c in post 1.

Coders go to lines 1392 - 1425 and replace every instance of

Code: Select all

return;
with

Code: Select all

SendShort = false;
The 'return' command aborted the buy trade that was otherwise due to be sent.

Stan, your line thingy could be caused by loading BBT onto the M15. BBT uses the open time/price of the H1 candle at the session open, so the M15 might be mucking this up. Change to the H1 and see if this makes a difference.

:xm:
Author:  Stan [ Wed Sep 24, 2014 5:05 pm ]
Post subject:  Bob's Brainless Thingy

SteveHopwood » Wed Sep 24, 2014 5:03 pm wrote:
Stan » Wed Sep 24, 2014 2:51 pm wrote:Steve i tested this ea OOTB 15M on my live mini account and the result are very promising. I have noticed however that the pending order seem to send only in sell direction. I use the MA240 filter like OOTB setting that have you posted, but in the positive pairs above the 240MA the ea don't send any buy orders. I don't know if it's only one my problem but i have seen the same in my another demo account.
Another problem that i have seen is that sometimes the open yellow line isn't in the correct position and then the order doesn't send in the correct level to 10 points above/below the open session and than is the yellow line.
I attached one immagine with the open of ny session today at 12.00 broker time.
Cheers
Amazing what I do not notice, sometimes. I had a look at my account and yes, sells only. Thanks for staying awake, Stan. :clap:

I had tried for a cpu-saving shortcut in the sell trade decision and it buggered the ea trying to send a buy stop. Fix in V1c in post 1.

Coders go to lines 1392 - 1425 and replace every instance of

Code: Select all

return;
with

Code: Select all

SendShort = false;
The 'return' command aborted the buy trade that was otherwise due to be sent.

Stan, your line thingy could be caused by loading BBT onto the M15. BBT uses the open time/price of the H1 candle at the session open, so the M15 might be mucking this up. Change to the H1 and see if this makes a difference.

:xm:

Thank you Steve for the fix version.
I switch to H1 timeframe and see what happens.
The last 3 days with 240MA filter i have had very good result with this ea.
I trade only 10 pairs at Lo and Ny session OOTB setting except the BE set to 20 pips.
Cheers

:)
All times are UTC Page 2 of 3