
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
I started to test my Expert Advisor on history. I think those people have profitable Expert Advisors, maybe they don't need to re-invent the wheel. ( Besides, the Championship has even been organized).
If I have an Expert Advisor that gives 50% per month on Demo, I am ready to offer it. (In the future I can connect Metatrader to any exotic tool ( if justified). (My traders are ready to accept the offer and take it to the market.
Here email clin-p@inbox.ru or write directly here.
Vlad.
I'll sell it for 500 quid which I myself drained in 2 months without it and that's why I decided to write it)))
if you want to pay by credit card, I'll give you a link.)
Here's a code made in 2 days of experiments on the history (in 2006 it's not bad at all)
EURUSD daily
There are some improvements, but they do not concern profit increase, but decrease of drawdown
It's a pity it wasn't accepted in the contest now, because I was too late
but since october he has not yet given tips so it may be possible to compare him with the best results
in any case it would be interesting to run it under the new year and see what happens
//+------------------------------------------------------------------+
//| Victor-Champion. mq4 |
//+------------------------------------------------------------------+
extern double TakeProfit = 60;
extern double Lots = 5.0;
extern double StopLoss = 60;
int CalculateCurrentOrders(string symbol)
{
int buys=0,sells=0;
for(int i=0;i<OrdersTotal();i++)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false) break;
if(OrderSymbol()==Symbol())
{
if(OrderType()==OP_BUY) buys++;
if(OrderType()==OP_SELL) sells++;
}
}
if(buys>0) return(buys);
else return(-sells);
}
void CheckForOpen()
{
int StartBar=0;
int TotalBars=5;
double hi1=High[Highest(NULL,0,MODE_HIGH,TotalBars,StartBar)];
double lo1=Low [Lowest(NULL,0,MODE_LOW ,TotalBars,StartBar)];
double hi2=High [Highest(NULL,0,MODE_HIGH,TotalBars+3,StartBar)];
double lo2=Low [Lowest(NULL,0,MODE_LOW,TotalBars+3,StartBar)];
int vpered;
int i_u = -1; i_d = -1;
for ( int i = 0; i < Bars-1; i ++ )
{
if ( i_u == -1 && iFractals( NULL, 0, MODE_UPPER, i ) > 0 ) { i_u = i; }
if ( i_d == -1 && iFractals( NULL, 0, MODE_LOWER, i ) > 0 ) { i_d = i; }
if ( i_u > -1 && i_d > -1 ) { break; }
}
if(Volume[0]>1) return;
//---- sell conditions
if(i_u > i_d && lo2 < lo1)
{
vpered=OrderSend(Symbol(),OP_SELL, Lots, Bid, 3, Bid + StopLoss*Point, Bid - TakeProfit*Point, "",0,0,Red);
return;
}
//---- buy conditions
if(i_u < i_d && hi2 > hi1)
{
vpered=OrderSend(Symbol(),OP_BUY, Lots, Ask, 3, Ask - StopLoss*Point, Ask + TakeProfit*Point, "",0,0,Blue)
return;
}
//----
}
void start()
{
if(Bars<100 || IsTradeAllowed()==false) return;
if(CalculateCurrentOrders(Symbol())< 3) CheckForOpen();
else return;
}
I'm wildly sorry for the layman's question. What is a link ?
Result:
A link is simply a link to a page on the internet.
It is usually written as: http - colon - two slashes - website address - website page, etc.
You google. "what is a link"! google(http://www.google.com/)
Result:
A link is simply a link to a page on the internet.
It is usually written as: http - colon - two slashes - website address - website page, etc.
got it thanks....
using this system http://www.2checkout.com/
would you like to make me happy?
using this system http://www.2checkout.com/
would you like to make me happy?
Do you mean pay using this system or what ... I don't understand... :(
to have some kind of guarantee that you will not lose all of your money in automatic trading, you may use the following option
we open 2 accounts
one of us will trade on the machine - on the other - manually
Once a week, on Friday evening after the close, the manual account is topped up from the automatic account to its level
If something on the machine fails you will lose only half of your money
divide the deposit in half and continue trading with the new adviser
in your case, to achieve a 50% profit a month for the entire deposit you need to make 100% on the machine
if we assume that the maximum series of failures in the EA is assumed to be equal to 5 (with equal measures of winning-loss), then it needs to bet only 1/5 of the deposit size.
in these conditions, for the doubling of deposit in a month (20 working days), the Expert Advisor should gain 500 points - i.e. 25 points per day (with a constant win)
Considering that a good EA may give 3 correct tips and 1 incorrect tip, we obtain that 2 out of 4 orders are growing and the whole term increases by 2 times or we should take 50 pips per day.
Evening.
Maybe I'm doing something wrong.
I traded this EA on GBPUSD from May 2006 till October.
23 -9746.52 199 0.86 -48.98 13233.50 98.12% TakeProfit=100 StopLoss=90 Lots=1
6 -9487.66 226 0.85 -41.98 11567.92 95.76% TakeProfit=110 StopLoss=60 Lots=1
24 -9429.56 250 0.90 -37.72 13118.42 95.83% TakeProfit=110 StopLoss=90 Lots=1
10 -9197.72 183 0.83 -50.26 12774.44 94.09% TakeProfit=90 StopLoss=70 Lots=1
22 -9180.22 368 0.92 -24.95 20278.58 96.11% TakeProfit=90 StopLoss=90 Lots=1
11 -9170.14 89 0.69 -103.04 11680.06 93.37% TakeProfit=100 StopLoss=70 Lots=1
29 -9159.78 77 77 0.71 -118.96 12646.76 93.77% TakeProfit=100 StopLoss=100 Lots=1
5 -9145.64 67 0.57 -136.50 10548.58 92.51% TakeProfit=100 StopLoss=60 Lots=1
1 -9014.88 299 0.87 -30.15 12803.70 92.86% TakeProfit=60 StopLoss=60 Lots=1
31 -8942.22 501 0.94 -17.85 31492.16 96.75% TakeProfit=60 StopLoss=110 Lots=1
2 -8929.62 244 0.85 -36.60 12928.44 92.35% TakeProfit=70 StopLoss=60 Lots=1
17 -8888.18 90 0.72 -98.76 12375.16 91.76% TakeProfit=100 StopLoss=80 Lots=1
18 -8881.32 203 0.87 -43.75 11586.54 94.31% TakeProfit=110 StopLoss=80 Lots=1
7 -8877.96 554 0.93 -16.03 18258.38 94.21% TakeProfit=60 StopLoss=70 Lots=1
12 -8856.96 95 0.72 -93.23 10520.16 90.20% TakeProfit=110 StopLoss=70 Lots=1
3 -8836.94 212 0.84 -41.68 13183.66 92.75% TakeProfit=80 StopLoss=60 Lots=1
27 -8793.96 417 0.93 -21.09 29264.34 97.38% TakeProfit=80 StopLoss=100 Lots=1
16 -8792.98 372 0.92 -23.64 14472.64 92.73% TakeProfit=90 StopLoss=80 Lots=1
21 -8790.88 461 0.94 -19.07 29120.56 96.01% TakeProfit=80 StopLoss=90 Lots=1
30 -8776.04 88 0.76 -99.73 11062.10 90.04% TakeProfit=110 StopLoss=100 Lots=1
4 -8762.04 183 0.82 -47.88 12342.12 92.30% TakeProfit=90 StopLoss=60 Lots=1
28 -8752.10 242 0.90 -36.17 15122.38 92.38% TakeProfit=90 StopLoss=100 Lots=1
15 -8749.30 435 0.93 -20.11 23070.18 94.87% TakeProfit=80 StopLoss=80 Lots=1
9 -8741.04 390 0.92 -22.41 14007.00 92.18% TakeProfit=80 StopLoss=70 Lots=1
26 -7737.80 506 0.95 -15.29 34326.60 95.78% TakeProfit=70 StopLoss=100 Lots=1
25 -7657.86 552 0.95 -13.87 32145.40 93.72% TakeProfit=60 StopLoss=100 Lots=1
20 -7575.68 526 0.95 -14.40 36614.48 96.15% TakeProfit=70 StopLoss=90 Lots=1
14 -7240.10 584 0.95 -12.40 30993.20 93.19% TakeProfit=70 StopLoss=80 Lots=1
13 -6954.22 598 0.95 -11.63 28472.08 93.69% TakeProfit=60 StopLoss=80 Lots=1
8 -6925.10 535 0.95 -12.94 15377.04 89.82% TakeProfit=70 StopLoss=70 Lots=1
I have tested on hourly rates.
Sincerely Vlad.
Testing on the daily... Bloody hell it's working !!! I took the pound dollar and put the optimisation in... more profitable than unprofitable !!!!!! there is something to it...
i am going to test it now... i will write more later !!!
strange)))) I wrote EURUSD daily
Give me your email :))
Something to talk about !!!!