Bob and Shelley Again

Locked
User avatar
fxozgirl
Trader
Posts: 1176
Joined: Wed Nov 16, 2011 9:16 am
Location: Melbourne, Australia

Re: Bob and Shelley Again

Post by fxozgirl »

When Steve coded the first version of BASA it was the end of July, traditionally a difficult period for trading due to the decreased trading volumes. There were quite a few losses in those early days, but a lot of those occurred whilst we were still developing the code accurately and tweaking some of the parameters. Towards the end of August we were coming close to a more stable version of BASA.

These days it seems as though every other week there is some sort of upheaval in the market, making it harder and harder to be a consistently profitable trader...even more so than manual trading, it is very difficult (read: almost impossible) to get an EA to be profitable in such variable trading conditions...BASA comes close (IMO and experience, when used with conservative settings)!

Don't get me wrong...BASA is first and foremost a trend following EA! It is designed to get in and stay in and ride the trend, however there has not been too many sustained trends over the last couple of months for BASA to latch onto, but the few there has been, BASA has excelled itself. The challenge though, was not to give back our profits gained during a trending period when the markets started to range or were flat.

And that's exactly what there has been a lot of recently...flat and/or ranging markets and IMO (although I admit quite biased :lol: ) BASA has really shown it has the ability to either stay out of the market completely when the market is flat just like last week for example whilst the world was waiting for the US to decide on their debt ceiling (remember all those posts people were saying they didn't have any trades for days) which is thanks to Andy's (MrLong) MA Stack function and when the market was ranging, if using the Half Lots Closed function we were able to pick up some small but consistent pips.

Sure, there has been some losers (I had 4 this week), but the way BASA stays out of the market when it needs to or chips away at the small gains when it can and then capitalises when a pair takes off (ala eurcad this week which hit its 300 pip TP) is pretty amazing to watch!

More than anything, I am hopeful, thanks to the selfless contributions of Steve, Andy, Dave and a number of other members (and not to mention Bob who probably doesn't even know what's going on here :lol: ) that we may just have developed an EA robust enough to produce that 5% gain per month I would so love to have :mrgreen:
matrixebiz
Trader
Posts: 70
Joined: Wed Nov 16, 2011 4:39 am

Re: Bob and Shelley Again

Post by matrixebiz »

Hey Steve, maybe we should have called this one "The Beast" :)

Anyway, thank you to Shelley, Steve and all others who made this system possible and a fantastic system so far it is :) I have my BE and JS settings kind of tight but 709 pips and 2 trade currently in profit in 2 weeks, nice!
You do not have the required permissions to view the files attached to this post.
art
Trader
Posts: 588
Joined: Fri Mar 02, 2012 3:51 pm

Re: Bob and Shelley Again

Post by art »

hi guys, so pleased you're getting good results, well done. ii've had two trades in the last 3 days, any thoughts cheers, yesterdays trade gbpchf short hardly moved closed it last night +4
User avatar
fxozgirl
Trader
Posts: 1176
Joined: Wed Nov 16, 2011 9:16 am
Location: Melbourne, Australia

Re: Bob and Shelley Again

Post by fxozgirl »

art wrote:hi guys, so pleased you're getting good results, well done. ii've had two trades in the last 3 days, any thoughts cheers, yesterdays trade gbpchf short hardly moved closed it last night +4

Hi Art...I answered this same question from you a couple of pages ago, the market was consolidating on Friday after a very good week for BASA. The default settings will be keeping you from taking a trade at the high/low of the market...this is a good thing.

Please take the time to read the user guide so you get to understand how BASA works...the default settings do not trade very often but they are very accurate :D
art
Trader
Posts: 588
Joined: Fri Mar 02, 2012 3:51 pm

Re: Bob and Shelley Again

Post by art »

Thanks for that I will refresh myself with the rules this weekend, cheers
zTB
Trader
Posts: 75
Joined: Sat Mar 16, 2013 9:45 am

Re: Bob and Shelley Again

Post by zTB »

fxozgirl wrote:
More than anything, I am hopeful, thanks to the selfless contributions of Steve, Andy, Dave and a number of other members (and not to mention Bob who probably doesn't even know what's going on here :lol: ) that we may just have developed an EA robust enough to produce that 5% gain per month I would so love to have :mrgreen:
Godspeed, Shelley.

I think you deserve all the help you get.

:)

Z
Wishing good things for all.
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: Bob and Shelley Again

Post by SteveHopwood »

V 2k is in post 1, with the fix for the risk-based stack lot size that Dave spotted.

To preserve your hard coded inputs, go to void LookForTradingOpportunities() and find the two code snippets that start with the comment:
//Lot size calculated by risk

Replace the first snippet (within the if (SendLong) with

Code: Select all

         //Lot size calculated by risk
         if (RiskPercent > 0) 
            if (OpenTrades == 0) 
               SendLots = CalculateLotSize(price, NormalizeDouble(stop + (HiddenPips / factor), Digits) );
Then replace the snippet within the if (SendShort) with

Code: Select all

         //Lot size calculated by risk
         if (RiskPercent > 0)
            if (OpenTrades == 0) 
               SendLots = CalculateLotSize(price, NormalizeDouble(stop - (HiddenPips / factor), Digits) );
and recompile.

: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: Bob and Shelley Again

Post by fxozgirl »

SteveHopwood wrote:V 2k is in post 1, with the fix for the risk-based stack lot size that Dave spotted.

To preserve your hard coded inputs, go to void LookForTradingOpportunities() and find the two code snippets that start with the comment:
//Lot size calculated by risk

Replace the first snippet (within the if (SendLong) with

Code: Select all

         //Lot size calculated by risk
         if (RiskPercent > 0) 
            if (OpenTrades == 0) 
               SendLots = CalculateLotSize(price, NormalizeDouble(stop + (HiddenPips / factor), Digits) );
Then replace the snippet within the if (SendShort) with

Code: Select all

         //Lot size calculated by risk
         if (RiskPercent > 0)
            if (OpenTrades == 0) 
               SendLots = CalculateLotSize(price, NormalizeDouble(stop - (HiddenPips / factor), Digits) );
and recompile.

:D

Thanks again Steve...I'll load up my demo ready for Monday
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: Bob and Shelley Again

Post by SteveHopwood »

Andy has sent me a pm. The stacking ma stuff isn't quite right - one of my usual copy/paste bloops. I will post the fix in time for market opening.

: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
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: Bob and Shelley Again

Post by SteveHopwood »

One more update before the markets open later on; V 2l in post 1.

Andy was looking through the code and spotted a couple of errors in my calls to the ma stack detection function.

Making the changes yourselves:
scite line 1414. Replace
if (useMaStackForMainTrade && (!detectMaStack(Symbol(), PERIOD_H4, FastStackMaPeriod, SlowStackMaPeriod, 0, MODE_LWMA, PRICE_OPEN, OP_BUY, 0))) return;

with
if (useMaStackForMainTrade && (!detectMaStack(Symbol(), PERIOD_H4, FastStackMaPeriod, SlowStackMaPeriod, 0, MODE_LWMA, PRICE_CLOSE, OP_BUY, 0))) return;

then repeat the process at line 1529.

Then go to the bottom of bool detectMaStack(string symbol, int timeframe, int period, int period1, int mashift, int method, int applied, int type, int shift) - function starts at line 1797. Create a blank line above the function's closing bracket and insert
//Got this far, so ma's do not stack up
return(false);

the recompile.

: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.
Locked

Return to “Automated trading systems”