Comments Automated Trading Championship 2007

87

hi brother

i would like to exchange trading ideas with you hoping that will be beneficial to both of us

you can drop me a line at magedlotfy@yahoo.com

or absolute21@bellsouth.net

good luck

maged lotfy

2007.12.21 12:36
 
9
Dont hurry to make a Christmas purchase. Santa Claus is waiting you with big discount  for this EA:   fx-auto-trader @ mail.ru
2007.12.21 12:29
 
2
samba wrote:
William,
Congratulations!! After the competition, if you decide to sell your EA, Contact me shijo234@gmail.com

Samba
Thank you. If I decide to sell, I will contact you via your email address.
2
2007.12.21 11:14
2
YuraZ wrote:
wackena писал(а):
bub wrote:
William, do you can open a demo account on own site with MT, which will trade withyourEA after ending of ATC 2007.
Very want watch your trades further after that festive days in real life and justworkdays. Some more may be you have even real account,
wich you can show for that, who want observe your work further.That real can beatal little, just 100-200 $ in any DC.
With big respect
Boris
As previously stated, I will wait until after the contest has finished to decidewhat I will do with this EA. This includes continued public reporting of demo orlive trading results.
I congratulate Likely it is already possible to speak about good result! Would liketo have with you contact yours faithfully YURIY ZAITCEV yzh@mail.ru

http://championship.mql4.com/2007/ru/users/YuraZ/

Thank you. Your EA has the up and down equity growth pattern, similar to mine. You have a good Profit Factor over 2.0. I believe any EA that trades at least 10 times per month and has a Profit Factor over 2.0 is a very good EA. Congratulations to you for a good contest performance.
2
2007.12.21 11:13
2
bub wrote:
William, congratulate you with second plase on this champioship. I am your firstfan here. Show your demo or little real account after 22 December please.
Sincerely yours Boris.

Thank you for your kind words.
2
2007.12.21 11:04
260

Hi dr Waleed !

I see that all five egyptians had a very very poor performance .

Happens , but don't worry . I know , it's easier to climb on Himalayas than developing a good automated system .

I see that you like the moving average crossover. Do you know how many times they cross each other , thousands of times . This old fashion doesn't work my friend , whatever filter you use .

You a have a very good programmer , Ahmed Soliman ( codesguru ) and you have an egyptian genius trader Maged Lotfy from Cairo ( He lives now in Canada or America ). So if you work together for sure you will make good money in trading and you will win the first price in this wonderfull competition organised by Metaquotes .

contact with this guy absolute21@bellsuoth.net or call 01-647 400 0909

(Please don't tell my name ) I only want to help egyptian community . I'm not egyptian , I'm from Europe . I used to know this gifted guy in New York.

All the best

2007.12.21 09:40
 
6
  Добрый день, Юрий! Скажите, пожалуйста, на каком индикаторе определяете дивергенцию?
27
2007.12.21 09:39
3

Василий, не планируете продавать свой советник? Если нет, не могли бы вы дать несколько подсказок по алгоритму работы вашего советника?

Удачи!

2007.12.21 09:25
 
27
sevpfk писал(а):

Вроде все получилось, хотя программист из меня еще тот.

Михаил, а нельзя получить изначальный код (управления ордерами), без изменений для чемпионата?

С уважением,

Олег.

Вот функция вычисления лотов. Я где-то ее взял и чуть изменил.

//------------------------------------------------------------------+
//| Calculate optimal lot size |
//+------------------------------------------------------------------+
double LotsOptimized()
{
double lot=Lots;
int orders=HistoryTotal(); // history orders total
int losses=0; // number of losses orders without a break
int Symborders=0;
//---- select lot size
lot=NormalizeDouble(AccountFreeMargin()*MaximumRisk/1000.0,1);
//---- calcuulate number of losses orders without a break
if(DecreaseFactor>0)
{
for(int i=orders-1;i>=0;i--)
{
if(OrderSelect(i,SELECT_BY_POS, MODE_HISTORY)==false) { Print("Error in history!"); break; }
if(OrderSymbol()!=Symbol() || OrderType()>OP_SELL) continue;
//----
Symborders++;
if(OrderProfit()>0) losses--; //break;
if(OrderProfit()<0) losses++;
}
if(losses>0) lot=NormalizeDouble(lot-lot*losses/DecreaseFactor, 1);
//if(losses>0) lot=NormalizeDouble(lot-lot*losses/Symborders, 1);
}
//---- return lot size
//if(lot<0.1) lot=0.1;
// Alert("-Баланс орров=",losses," Опт.лот=",lot,"/Всего в истории ",orders);
return(lot);
}
//+------------------------------------------------------------------+

Затем в ф-ии start() пишешь строчку

Lots=LotsOptimized();//Определяем оптимальный размер лота

Естественно при этом убираешь из кода ф-ию ChangeLot().


27
2007.12.21 07:40
49
wah jangan mas, saya sudah cocok sama yg sekarang saya pakai.... tapi kalo mas mau buka manage account hubungin saja saya di YM @yahoo.com 50-50 atau berapapun yg cocok menurut mas sugeng
2007.12.21 07:38
 
Pages: 
Total: 4680