Dislikedyou cant beat this EA...even with that large drawdown it comes back kicking...{image}Ignored
- #398
- Jan 23, 2018 9:04pm Jan 23, 2018 9:04pm
- | Joined Apr 2008 | Status: Trader | 1,040 Posts
Good Trading
Grid - New indicator that replaces chart grid 60 replies
Lets try something new CUT OFF DATE 5 replies
Grid, Burst Grid, Grid Risk and Grid Profit 1 reply
Ok, Lets do it - Developing a Highly Profitable System 147 replies
Disliked{quote} Stormtrader are you going to trade all of these pairs with your 565$ account.I think your account balance will not enough to Run the EA on Many pairs.Ignored
int DefineStep(int countBUY, int countSELL)
{
int addStep=0;
if (countBUY>=StepPlusOrder) addStep=(countBUY-StepPlusOrder+1)*StepPlusValue;
if (countSELL>=StepPlusOrder) addStep=(countSELL-StepPlusOrder+1)*StepPlusValue;
int Step=StepMin+addStep;
double hi=High[iHighest(NULL,0,MODE_HIGH,StepPeriod,1)];
double lo=Low[iLowest(NULL,0,MODE_LOW,StepPeriod,1)];
int calcStep=NormalizeDouble((hi-lo)/StepDel/Point,0);
if (calcStep>Step) Step=calcStep;
return (Step);
} DislikedAnyone know how exactly this strategy work so we can know what we see are bugs or correct execution? Thanks in advance!Ignored
DislikedHi all , The new version 1.7 is opening deals and closing them immediately,is there some thing missing . could any one tell whats the problem. ThanksIgnored