Shelley's multi-pair basket trader

Share your 10.x automated traders here.
Post Reply
spybreak
Trader
Posts: 29
Joined: Fri Apr 13, 2012 3:04 pm

Re: Shelley's multi-pair basket trader

Post by spybreak »

Wowh , what a nice start !! :o :D

13 trades this morning, lots 0.02 + 89.39$ , i like it :mrgreen:

thanks for Shelley and SteveHopwood for this gift ;)
garyfritz

Re: Shelley's multi-pair basket trader

Post by garyfritz »

Spot, I suspect you might be right for 5-digit crims but not for 4-digit. I *think* Point is supposed to be the smallest increment the price can change. For 5-digit crims it's 0.00001, but I think for 4-dig it should be 0.0001. Scoobs' original code may have been written for 4-digit and it can't handle 5.

Might have to do something like:

Code: Select all

    double point  = 0.01;
    if(digits > 3)
    {
      point = 0.0001;
    }
    if(digits == 3 || digits == 5)
        point = point / 10.0;
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: Shelley's multi-pair basket trader

Post by spotdespot »

garyfritz wrote:Spot, I suspect you might be right for 5-digit crims but not for 4-digit. I *think* Point is supposed to be the smallest increment the price can change. For 5-digit crims it's 0.00001, but I think for 4-dig it should be 0.0001. Scoobs' original code may have been written for 4-digit and it can't handle 5.

Might have to do something like:

Code: Select all

    double point  = 0.01;
    if(digits > 3)
    {
      point = 0.0001;
    }
    if(digits == 3 || digits == 5)
        point = point / 10.0;
Yes - you're right Gary - good call. Normally Steve deals with the 4/5 and even allows for 6 and 7 digit crims differently but it seems not for the "basket cases" :lol: (or this one anyway).

Cheers,
Dave.
harry45
Trader
Posts: 158
Joined: Fri Nov 18, 2011 11:36 am
Location: Russia,St.Petersburg

Re: Shelley's multi-pair basket trader

Post by harry45 »

garyfritz wrote:Spot, I suspect you might be right for 5-digit crims but not for 4-digit. I *think* Point is supposed to be the smallest increment the price can change. For 5-digit crims it's 0.00001, but I think for 4-dig it should be 0.0001. Scoobs' original code may have been written for 4-digit and it can't handle 5.

Might have to do something like:

Code: Select all

    double point  = 0.01;
    if(digits > 3)
    {
      point = 0.0001;
    }
    if(digits == 3 || digits == 5)
        point = point / 10.0;
Thank You Gary,it helps.
Regards
vivaldi
Trader
Posts: 58
Joined: Thu Feb 02, 2012 12:08 am
Location: Netherlands

Re: Shelley's multi-pair basket trader

Post by vivaldi »

Hallo Steve,
As to the problem of iCustom(..........) and a lot of input parameters. I found out, that if you omit them all in the call 'iCustom(.) , it works fine. Your receiving program then takes the external inputs of the indicator as defaults and produces a valid buffervalue.
Regards,
Vivaldi
kelisa
Trader
Posts: 188
Joined: Sun Mar 04, 2012 6:51 am

Re: Shelley's multi-pair basket trader

Post by kelisa »

Hi Steve or any expert programmers,

After I drop the EA onto the chart, I cant get into its properties. It just wouldnt open. Could it be my Empty4 version issue? Any help would be appreciated. :)
If your strategy is working well, dont be GREEDY and change it!
rekfo
Posts: 9
Joined: Wed May 23, 2012 2:42 pm

Re: Shelley's multi-pair basket trader

Post by rekfo »

kelisa wrote:Hi Steve or any expert programmers,

After I drop the EA onto the chart, I cant get into its properties. It just wouldnt open. Could it be my Empty4 version issue? Any help would be appreciated. :)
make sure it in folder experts and close and reopen Empty4
rekfo
Posts: 9
Joined: Wed May 23, 2012 2:42 pm

Re: Shelley's multi-pair basket trader

Post by rekfo »

spybreak wrote:Wowh , what a nice start !! :o :D

13 trades this morning, lots 0.02 + 89.39$ , i like it :mrgreen:

thanks for Shelley and SteveHopwood for this gift ;)
spybreak what time do you start shelley expert?
garyfritz

Re: Shelley's multi-pair basket trader

Post by garyfritz »

No refko, that's not it. I've got the same thing. The EA runs just fine, opens orders, etc, but you can't open the properties on it. I've seen this before but I'm not sure what causes it. I'm guessing it might be something about the EA sleeping and not responding to the properties request?

I opened a basket just before noon NY = 4pm London. It ran up to about $350 open profit then gave most of it back by 5pm NY. I closed it out at 10pm NY and I'll try the London open tomorrow.

Would be interesting to follow & chart the open equity throughout the day to see if there are any repeating patterns, or if it's semi-random. The way this bot works I think you'd have to open a new basket every hour but it would be interesting to see how it works.
rekfo
Posts: 9
Joined: Wed May 23, 2012 2:42 pm

Re: Shelley's multi-pair basket trader

Post by rekfo »

garyfritz wrote:No refko, that's not it. I've got the same thing. The EA runs just fine, opens orders, etc, but you can't open the properties on it. I've seen this before but I'm not sure what causes it. I'm guessing it might be something about the EA sleeping and not responding to the properties request?

I opened a basket just before noon NY = 4pm London. It ran up to about $350 open profit then gave most of it back by 5pm NY. I closed it out at 10pm NY and I'll try the London open tomorrow.

Would be interesting to follow & chart the open equity throughout the day to see if there are any repeating patterns, or if it's semi-random. The way this bot works I think you'd have to open a new basket every hour but it would be interesting to see how it works.
Than you can remove and put the ea again and setting the properties
Post Reply

Return to “10.x EA forum”