13 trades this morning, lots 0.02 + 89.39$ , i like it
thanks for Shelley and SteveHopwood for this gift
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"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.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;
make sure it in folder experts and close and reopen Empty4kelisa 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.
spybreak what time do you start shelley expert?spybreak wrote:Wowh , what a nice start !!![]()
![]()
13 trades this morning, lots 0.02 + 89.39$ , i like it![]()
thanks for Shelley and SteveHopwood for this gift
Than you can remove and put the ea again and setting the propertiesgaryfritz 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.