You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
This ea really is written by a noob. He doesn't have any mathematical methods nor have he discovered anything unique. Results without codes is simply meaningless.
and who wrote it?
i assume it sees at least 15 mins ahead in time :P
we could go hunting this days...with markets being so quiet :
So bottom line is, if you really want somebody to be able to analyze it, put a version as the one you have on you`re first post... otherwise, impossible mate .
this one has 4 consecutive wins, 4 consecutive losses with a profit factor of 1.02 ... it is deffenetly not working like the one in first post :D.
Hi Micky,
thanks for all your reply
Sorry for attaching the wrong EA. Please find attached the correct one
For the below result - Base Currency=GBP, Deposit=1000, Risk=1%, SL/TP = 50
Hi Micky,
thanks for all your reply
Sorry for attaching the wrong EA. Please find attached the correct one
For the below result - Base Currency=GBP, Deposit=1000, Risk=1%, SL/TP = 50
For the below result - Base Currency=GBP, Deposit=1000, Risk=1%, SL/TP = 50
yes but how u risk 1% with 0.3 lots? and than 0.7?
Hi Micky,
i have trouble finding the lots
first, 1.30000 - 1.30500 = (0.0050)/0.0001 = 50 pips .... is this correct?
and
GBP1000*1% = 10 GBP
how to calculate requried lots to get £10 from 50 pips trading EURUSD ?
My code is.. please correct if this wrong
double nextlot(){
double lot;
int profit=10;
int TP=50;
lot = NormalizeDouble(profit/TP,1);
if(lot>=0.1) return(lot);
else return(0.1);
}