Baluda Slope Strength auto-trader

Share your 10.x automated traders here.
Post Reply
User avatar
Baluda
Trader
Posts: 330
Joined: Mon Feb 06, 2012 2:00 pm
Location: An insignificant village in the Netherlands

Re: Baluda Slope Strength auto-trader

Post by Baluda »

Steve,

Something I overlooked: :oops:

Code: Select all

void CalculateCurrencySlopeStrength(int tf, int shift)
{
       ArrayInitialize(currencyValues, 0.0);
       
       int i;

       rest of procedure...
The currencyValues array needs to be initialized on each pass.

Paul
Check the MQL4 Market for my best EA's and Indicators.
User avatar
Baluda
Trader
Posts: 330
Joined: Mon Feb 06, 2012 2:00 pm
Location: An insignificant village in the Netherlands

Re: Baluda Slope Strength auto-trader

Post by Baluda »

garyfritz wrote:For comparison / verification purposes I looked at the current values from Baluda's strength/slope calculations (from the EA Comment()) vs. the values from my currency strength indicator. I scaled my values to cover the same range as his.
Gary,

Keep in mind that SlopeStrength only considers the symbols the user provided in the 'symbolsToWeigh' setting. The latest version has a new setting 'autoSymbols' that pulls the symbols from the symbols.raw file. Maybe the data in the comparison is even more similar when 'autoSymbols' is set to true.

Paul
Check the MQL4 Market for my best EA's and Indicators.
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: Baluda Slope Strength auto-trader

Post by SteveHopwood »

Baluda wrote:Steve,

Something I overlooked: :oops:

Code: Select all

void CalculateCurrencySlopeStrength(int tf, int shift)
{
       ArrayInitialize(currencyValues, 0.0);
       
       int i;

       rest of procedure...
The currencyValues array needs to be initialized on each pass.

Paul
I am in my usual state of utter cluelessness here. All I have done is add

ArrayInitialize(currencyValues, 0.0);

to the start of void CalculateCurrencySlopeStrength(int tf, int shift)

Is this correct? In replying, keep it simple and bear in mind that I have no idea what is going on here.

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

Re: Baluda Slope Strength auto-trader

Post by garyfritz »

Baluda wrote:Keep in mind that SlopeStrength only considers the symbols the user provided in the 'symbolsToWeigh' setting. The
Good point! And in fact several NZD pairs & a few others were missing. But even with all 28 pairs we still have some differences:
Baluda.gif
Including all pairs, your NZD value is stronger than it was, but AUD and NZD are still both significantly weaker than my results. Yours have USD and JPY as buys (> 0.4) while mine also buys NZD. You'd sell CHF and GBP but I'd just sell GBP.

Who's "more right" ? It's mighty hard to tell without a proper backtest, though the quick NZD checks I did seem to indicate a strong NZD. Right now we just know we're different.
You do not have the required permissions to view the files attached to this post.
User avatar
mobthehop
Trader
Posts: 362
Joined: Wed Nov 16, 2011 12:16 am

Re: Baluda Slope Strength auto-trader

Post by mobthehop »

New toy - nice...... Looking forward to try it on Monday - thanks to you guys!

Gary, I still don't understand how your currency strength works but have you considered to compare your values with Baluda's using H4 tf on his? Maybe yours is more responsive to recent changes....

Cheers
User avatar
Baluda
Trader
Posts: 330
Joined: Mon Feb 06, 2012 2:00 pm
Location: An insignificant village in the Netherlands

Re: Baluda Slope Strength auto-trader

Post by Baluda »

SteveHopwood wrote: I am in my usual state of utter cluelessness here. All I have done is add

ArrayInitialize(currencyValues, 0.0);
You're good.
Check the MQL4 Market for my best EA's and Indicators.
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: Baluda Slope Strength auto-trader

Post by SteveHopwood »

I have updated post 1 with the version that does not try to send trades even though the markets are closed.

Can't wait to see how this puppy woofs. :lol:

: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.
spybreak
Trader
Posts: 29
Joined: Fri Apr 13, 2012 3:04 pm

Re: Baluda Slope Strength auto-trader

Post by spybreak »

SteveHopwood wrote:I have updated post 1 with the version that does not try to send trades even though the markets are closed.

Can't wait to see how this puppy woofs. :lol:

:D
Hi,

Is it possible please to implement this function to EA Shelley's multi-pair basket trader ,
example during asian session on friday ?

Thanks in advance ;)
forexripper
Trader
Posts: 133
Joined: Fri Apr 13, 2012 6:11 pm

Re: Baluda Slope Strength auto-trader

Post by forexripper »

My 2cents here:

Can we have the slope indi instead of using average for a currency (not pair) use the relative increase and decrease against each (say in last 5 days etc.) so we know if e.g. JPY overall is increasing or decreasing and that may hint us on retracements / pull backs etc. and accordingly we can use Shelley and other gr8 EAs on this forum.

Thanks
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: Baluda Slope Strength auto-trader

Post by SteveHopwood »

forexripper wrote:My 2cents here:

Can we have the slope indi instead of using average for a currency (not pair) use the relative increase and decrease against each (say in last 5 days etc.) so we know if e.g. JPY overall is increasing or decreasing and that may hint us on retracements / pull backs etc. and accordingly we can use Shelley and other gr8 EAs on this forum.

Thanks
Currency Slope Strength shows this. Find it in the manual tools thread.

: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.
Post Reply

Return to “10.x EA forum”