Forex
Google
New signals service!

Go Back   Forex Trading > Discussion Areas > Post and compare Trades


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #91 (permalink)  
Old 01-28-2007, 06:08 AM
Farhad Farshad's Avatar
Senior Member
 
Join Date: May 2006
Posts: 104
Farhad Farshad is on a distinguished road
Quote:
Originally Posted by marketjouster
Hello Farhad,
Thanks for the amendment to the FarhadCrab3 expert. Could you briefly explain what the additional code controls? Does it shut off the generation of new orders when the margined % becomes more than 30% of initial account balance?



PS - I was also wondering if you had a short list of MT4 brokers that are willing to support accounts with experts that scalp 8-10 pips in the way that the Farhad Crab experts do? I'm guessing that some might have an objection to it. Maybe not....?

-MJ


Thanks very much.
MJ
if you want to have more controls change the following code in FarhadCrab version3 :
//Number of Buy Positions

bool takeBuyPositions() {
int j = 0 ;
//if (maLongCurrent<closeCurrent) {
if ((CurTime()-OrderOpenTime()>300)) {j=1;}
if ((CurTime()-OrderOpenTime()>600)) {j=2;}
if ((CurTime()-OrderOpenTime()>900)) {j=3;}
if ((CurTime()-OrderOpenTime()>1200)) {j=4;}
if ((CurTime()-OrderOpenTime()>1500)) {j=5;}
if ((CurTime()-OrderOpenTime()>1800)) {j=6;}
if ((CurTime()-OrderOpenTime()>2100)) {j=7;}
if ((CurTime()-OrderOpenTime()>2400)) {j=8;}
if ((CurTime()-OrderOpenTime()>2700)) {j=9;}
if ((CurTime()-OrderOpenTime()>3000)) {j=10;}
if ((CurTime()-OrderOpenTime()>3300)) {j=11;}
if ((CurTime()-OrderOpenTime()>3600)) {j=12;}
if ((CurTime()-OrderOpenTime()>3900)) {j=13;}
if ((CurTime()-OrderOpenTime()>4200)) {j=14;}
if ((CurTime()-OrderOpenTime()>4500)) {j=15;}
if ((CurTime()-OrderOpenTime()>4800)) {j=16;}
if ((CurTime()-OrderOpenTime()>5100)) {j=17;}
if ((CurTime()-OrderOpenTime()>5400)) {j=18;}
if ((CurTime()-OrderOpenTime()>5700)) {j=19;}
for (int i=j; i<OrdersTotal(); i++) {
if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
if (OrderSymbol()==Symbol() && OrderMagicNumber() == magicEA) {
return(0);
}
}
}

return(0);
}

//Number of Sell Positions

bool takeSellPositions() {
int j = 0 ;
//if ((OrdersTotal()==0)) {j=0;}
//if (maLongCurrent>closeCurrent) {
if ((CurTime()-OrderOpenTime()>300)) {j=1;}
if ((CurTime()-OrderOpenTime()>600)) {j=2;}
if ((CurTime()-OrderOpenTime()>900)) {j=3;}
if ((CurTime()-OrderOpenTime()>1200)) {j=4;}
if ((CurTime()-OrderOpenTime()>1500)) {j=5;}
if ((CurTime()-OrderOpenTime()>1800)) {j=6;}
if ((CurTime()-OrderOpenTime()>2100)) {j=7;}
if ((CurTime()-OrderOpenTime()>2700)) {j=9;}
if ((CurTime()-OrderOpenTime()>3000)) {j=10;}
if ((CurTime()-OrderOpenTime()>3300)) {j=11;}
if ((CurTime()-OrderOpenTime()>3600)) {j=12;}
if ((CurTime()-OrderOpenTime()>3900)) {j=13;}
if ((CurTime()-OrderOpenTime()>4200)) {j=14;}
if ((CurTime()-OrderOpenTime()>4500)) {j=15;}
if ((CurTime()-OrderOpenTime()>4800)) {j=16;}
if ((CurTime()-OrderOpenTime()>5100)) {j=17;}
if ((CurTime()-OrderOpenTime()>5400)) {j=18;}
if ((CurTime()-OrderOpenTime()>5700)) {j=19;}
for (int i=j; i<OrdersTotal(); i++) {
if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
if (OrderSymbol()==Symbol() && OrderMagicNumber() == magicEA) {
return(0);
}
}
}

return(0);
}
//end of code

SIMPLY CHANGE THE ABOVE CODE TO THE FOLLOWING:

//Number of Buy Positions

bool takeBuyPositions() {
for (int i=0; i<OrdersTotal(); i++) {
if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
if (OrderSymbol()==Symbol() && OrderMagicNumber() == magicEA) {
return(0);
}
}
}

return(0);
}

//Number of Sell Positions

bool takeSellPositions() {
for (int i=0; i<OrdersTotal(); i++) {
if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
if (OrderSymbol()==Symbol() && OrderMagicNumber() == magicEA) {
return(0);
}
}
}

return(0);
}

//END OF CODE

YOU WILL HAVE MORE POSITIONS IF YOU CHANGE i=0 to i=1 or i=2 etc,
__________________
http://farhadsalimi.com
THE BEST NEVER REST
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #92 (permalink)  
Old 01-29-2007, 01:46 AM
gkozlyk's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 202
gkozlyk is on a distinguished road
On v4.5-beta of FarhadCrab, i was getting repeatedly this error in Experts:

2007.01.28 17:35:23 FarhadCrab4.5-Beta EURUSD,M1: We have no money. Free Margin = 42089.64

Now in this tradestation, it is the only one running on the EurUsd and it gave this error about 100+ times in the last hour. I changed MoneyManagement = false so hopefully it fixes this issue.

So far no trades yet with this EA.

Thanx,

GK

Update: Changing moneymanagement doesn't do anything differently. I think i have it setup according to the recommendations given here for v 4.5-beta
__________________
Forex Factoid Home of the HedgeHog EA
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #93 (permalink)  
Old 01-29-2007, 05:10 AM
Farhad Farshad's Avatar
Senior Member
 
Join Date: May 2006
Posts: 104
Farhad Farshad is on a distinguished road
Quote:
Originally Posted by gkozlyk
On v4.5-beta of FarhadCrab, i was getting repeatedly this error in Experts:

2007.01.28 17:35:23 FarhadCrab4.5-Beta EURUSD,M1: We have no money. Free Margin = 42089.64

Now in this tradestation, it is the only one running on the EurUsd and it gave this error about 100+ times in the last hour. I changed MoneyManagement = false so hopefully it fixes this issue.

So far no trades yet with this EA.

Thanx,

GK


Update: Changing moneymanagement doesn't do anything differently. I think i have it setup according to the recommendations given here for v 4.5-beta
GK
when more than 1/10th of initial account balance is involved the EA gives this message. Hence it will not open any new position in this case until the open ones are closed. turning on or off money management does't affect this feature.
Still not open position.
__________________
http://farhadsalimi.com
THE BEST NEVER REST
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #94 (permalink)  
Old 01-30-2007, 01:22 AM
Senior Member
 
Join Date: Nov 2006
Posts: 299
abrs70 is on a distinguished road
how do we know performance of farhad 4??? 4.5 is a bit slow but wiser i think... is 4 more agressive than 4.5?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #95 (permalink)  
Old 01-30-2007, 03:36 AM
Member
 
Join Date: Jan 2007
Posts: 76
team_geo_fxsignal is on a distinguished road
Crab4.5 opened BUY @ 1.2967-68
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #96 (permalink)  
Old 01-30-2007, 01:26 PM
Farhad Farshad's Avatar
Senior Member
 
Join Date: May 2006
Posts: 104
Farhad Farshad is on a distinguished road
New Statement : 30/1/2007

Crab 4.5 Beta made two buy positions today. I've attached the statement for this week. I'm testing it on NorthFinance.com
For another Test see the following link:
http://www.forexea.com/farhadcrab_ibfx/statement.htm
http://www.forexea.com/farhadcrab_fxdd/statement.htm

other friends will post their test into this forum.
You can access a 6 month test with more than 200% gain on my site:
http://fxperz.com

I'll explain other features on the next post.

thanks everyone
Attached Files
File Type: htm Statement.htm (12.6 KB, 136 views)
__________________
http://farhadsalimi.com
THE BEST NEVER REST
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #97 (permalink)  
Old 01-30-2007, 03:19 PM
Farhad Farshad's Avatar
Senior Member
 
Join Date: May 2006
Posts: 104
Farhad Farshad is on a distinguished road
Quote:
Originally Posted by abrs70
how do we know performance of farhad 4??? 4.5 is a bit slow but wiser i think... is 4 more agressive than 4.5?
In Crabs, the more version is low the more aggressive becomes the EA.
__________________
http://farhadsalimi.com
THE BEST NEVER REST
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #98 (permalink)  
Old 01-30-2007, 03:28 PM
Member
 
Join Date: Jan 2007
Posts: 76
team_geo_fxsignal is on a distinguished road
Quote:
Originally Posted by Farhad Farshad
Crab 4.5 Beta made two buy positions today. I've attached the statement for this week. I'm testing it on NorthFinance.com
For another Test see the following link:
http://www.forexea.com/farhadcrab_ibfx/statement.htm
http://www.forexea.com/farhadcrab_fxdd/statement.htm

other friends will post their test into this forum.
You can access a 6 month test with more than 200% gain on my site:
http://fxperz.com

I'll explain other features on the next post.

thanks everyone
in Northfinance made loss?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #99 (permalink)  
Old 01-30-2007, 06:16 PM
Farhad Farshad's Avatar
Senior Member
 
Join Date: May 2006
Posts: 104
Farhad Farshad is on a distinguished road
Quote:
Originally Posted by team_geo_fxsignal
in Northfinance made loss?
No,
I've attached the statement
Attached Files
File Type: htm Statement.htm (12.6 KB, 115 views)
__________________
http://farhadsalimi.com
THE BEST NEVER REST
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #100 (permalink)  
Old 01-31-2007, 02:46 AM
Member
 
Join Date: Jan 2007
Posts: 76
team_geo_fxsignal is on a distinguished road
Quote:
Originally Posted by Farhad Farshad
No,
I've attached the statement
ok thanks

let say start with usd300, it will use usd30 to open position?

when does this ex4 expire?

Last edited by team_geo_fxsignal; 01-31-2007 at 03:01 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
farhadcrab, Farhad hill, farhad farshad

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump


All times are GMT. The time now is 04:21 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.