That's the amount of $$$ I maybe will use on a liveacc.
Last three trades went into losses,version C.
Those with "normal" accounts ( where 1 lot = $100,000 ) should not have ANY problem with lot-sizing ( this applies to most brokers ==> Axi, GP, Pepper, FinFx, HotForex, etc )Geges » Wed Jan 15, 2014 3:51 am wrote:Hi SpiderX,
Ok-10-4 on that...
I guess I didn't acknowledge the gremlin as I should...
A $ saved is a $ earned
bazze » Wed Jan 15, 2014 3:10 pm wrote:I only trade on a $5000 demoacc.
That's the amount of $$$ I maybe will use on a liveacc.
Last three trades went into losses,version C....But,I'm still in profit,$204.62
OK, so I downloaded Sensus Empty4 and ran some tests against my AxiTrader Empty4.bazze » Wed Jan 15, 2014 3:46 pm wrote:Sorry,dudest... I didn't see your questions before now![]()
Here is the whole logfile(ver.C) for yesterday....As you see I have tested not only this EA,but I really hopes that you can use it anyway....Sorry again for the "delay"
(Edit:Haven't uploaded such files before,that's the reason that I give you the whole file,I shall try to learn me how to copy/paste later) Broker: Sensus...Acc.size:$5000...Leverage: 1:200
Code: Select all
double FreeMargin = AccountBalance(); // don't worry about FreeMargin being used to ref to A/c Bal
Code: Select all
double TickValue = MarketInfo(Symbol(),MODE_TICKVALUE) ;
Code: Select all
double LotStep = MarketInfo(Symbol(),MODE_LOTSTEP);
Code: Select all
double SLPts = StopLossPips /PFactor;
Code: Select all
SLPts /= Point; //No idea why *= factor does not work here, but it doesn't
Code: Select all
double Exposure = SLPts * TickValue; // Exposure based on 1 full lot
Code: Select all
double AllowedExposure = (FreeMargin * Risk) / 100;
Code: Select all
int TotalSteps = ((AllowedExposure / Exposure) / LotStep);
Code: Select all
double Lots = TotalSteps * LotStep;
Hey SpiderX!SpiderX » Wed Jan 15, 2014 3:44 pm wrote:Hi dudest,
Last 2 trades lost 30 pips....Orange boxes.
Think EA was trying to long in a down trend
Have you considered only to trade in direction of trend ?
Cheers