Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4


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
  #1 (permalink)  
Old 08-09-2006, 12:30 PM
Roets's Avatar
Senior Member
 
Join Date: Nov 2005
Location: North West South Africa
Posts: 115
Roets is on a distinguished road
Smile Tamiël_FX - Expert Advisor

Hi there,

I have programmed the following EA to trade over a longer term. The EA have showed in backtesting to be profitable. The EA works on H1 and maybe higher timeframes. The EA is programmed to work on mini accounts. If you want to let it work on full account you must delete the "m" at the end of each cross in the code to make the Magic numbers.

Backtest Stats
Account growth over 4 months = 90%
Average drawdown over 4 months = 5.3%
Average pip per day = 22 pips
Average profitable trades = 67%
The above results was without MM.

Can you guys and gals test this EA on demo accounts. Maybe we can share our results and improve the EA.

I have found that if you add to many indicators and checks you dont get very var with an EA. We need to make it as simple as possible.
I will start forward testing on demo account from today.
Attached Images
File Type: gif Tamiël_FX_USDCADm.gif (5.8 KB, 75 views)
File Type: gif Tamiël_FX_EURUSDm.gif (5.5 KB, 65 views)
Attached Files
File Type: htm Tamiël_FX_USDCADm.htm (110.8 KB, 58 views)
File Type: htm Tamiël_FX_EURUSDm.htm (48.3 KB, 63 views)
File Type: mq4 Tamiël_FX.mq4 (8.4 KB, 116 views)
__________________
Pro FX Experts for Professional Meta Trader Experts
Automate your manual method!
We accept all major credit cards with no upfront payment required!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 08-09-2006, 12:37 PM
Roets's Avatar
Senior Member
 
Join Date: Nov 2005
Location: North West South Africa
Posts: 115
Roets is on a distinguished road
Smile Tamiël_FX - EA

Some other tests I done.
Attached Images
File Type: gif Tamiël_FX_GBPUSDm.gif (5.7 KB, 50 views)
File Type: gif Tamiël_FX_USDJPYm.gif (6.0 KB, 48 views)
Attached Files
File Type: htm Tamiël_FX_GBPUSDm.htm (93.1 KB, 49 views)
File Type: htm Tamiël_FX_USDJPYm.htm (148.3 KB, 20 views)
__________________
Pro FX Experts for Professional Meta Trader Experts
Automate your manual method!
We accept all major credit cards with no upfront payment required!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 08-09-2006, 12:42 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 350
elihayun is on a distinguished road
Thanks for sharing.

To solve the mini account use this code insted of yours

PHP Code:
int GenerateMagicNoNumber(int seedstring symbolint timeFrame)
{
   
int isymbol 0;
   if (
StringFind(symbol,"EURUSD")>=0>=0isymbol 1;
   else if (
StringFind(symbol,"GBPUSD")>=0isymbol 2;
   else if (
StringFind(symbol,"USDJPY")>=0isymbol 3;
   else if (
StringFind(symbol,"USDCHF")>=0isymbol 4;
   else if (
StringFind(symbol,"AUDUSD")>=0isymbol 5;
   else if (
StringFind(symbol,"USDCAD")>=0isymbol 6;
   else if (
StringFind(symbol,"EURGBP")>=0isymbol 7;
   else if (
StringFind(symbol,"EURJPY")>=0isymbol 8;
   else if (
StringFind(symbol,"EURCHF")>=0isymbol 9;
   else if (
StringFind(symbol,"EURAUD")>=0isymbol 10;
   else if (
StringFind(symbol,"EURCAD")>=0isymbol 11;
   else if (
StringFind(symbol,"GBPUSD")>=0isymbol 12;
   else if (
StringFind(symbol,"GBPJPY")>=0isymbol 13;
   else if (
StringFind(symbol,"GBPCHF")>=0isymbol 14;
   else if (
StringFind(symbol,"GBPAUD")>=0isymbol 15;
   else if (
StringFind(symbol,"GBPCAD")>=0isymbol 16;
   return (
StrToInteger(StringConcatenate(seedisymboltimeFrame)));

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 08-09-2006, 12:54 PM
Roets's Avatar
Senior Member
 
Join Date: Nov 2005
Location: North West South Africa
Posts: 115
Roets is on a distinguished road
Wink

Quote:
Originally Posted by elihayun
Thanks for sharing.

To solve the mini account use this code insted of yours

PHP Code:
int GenerateMagicNoNumber(int seedstring symbolint timeFrame)
{
   
int isymbol 0;
   if (
StringFind(symbol,"EURUSD")>=0>=0isymbol 1;
   else if (
StringFind(symbol,"GBPUSD")>=0isymbol 2;
   else if (
StringFind(symbol,"USDJPY")>=0isymbol 3;
   else if (
StringFind(symbol,"USDCHF")>=0isymbol 4;
   else if (
StringFind(symbol,"AUDUSD")>=0isymbol 5;
   else if (
StringFind(symbol,"USDCAD")>=0isymbol 6;
   else if (
StringFind(symbol,"EURGBP")>=0isymbol 7;
   else if (
StringFind(symbol,"EURJPY")>=0isymbol 8;
   else if (
StringFind(symbol,"EURCHF")>=0isymbol 9;
   else if (
StringFind(symbol,"EURAUD")>=0isymbol 10;
   else if (
StringFind(symbol,"EURCAD")>=0isymbol 11;
   else if (
StringFind(symbol,"GBPUSD")>=0isymbol 12;
   else if (
StringFind(symbol,"GBPJPY")>=0isymbol 13;
   else if (
StringFind(symbol,"GBPCHF")>=0isymbol 14;
   else if (
StringFind(symbol,"GBPAUD")>=0isymbol 15;
   else if (
StringFind(symbol,"GBPCAD")>=0isymbol 16;
   return (
StrToInteger(StringConcatenate(seedisymboltimeFrame)));

It will not work at IBFX mini account. The crosses at IBFX is Ex. EURUSDm and not EURUSD for mini accounts.
__________________
Pro FX Experts for Professional Meta Trader Experts
Automate your manual method!
We accept all major credit cards with no upfront payment required!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 08-09-2006, 01:38 PM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 350
elihayun is on a distinguished road
Quote:
Originally Posted by Roets
It will not work at IBFX mini account. The crosses at IBFX is Ex. EURUSDm and not EURUSD for mini accounts.
I know that, thats why I am testing if the string is found.

StringFind will return >= 0 if find a substring within a string. Since EURUSD can be found in EURUSD and in EURUSDm you don't have to warry if the account is mini or not. It will work on both
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 08-09-2006, 02:10 PM
Roets's Avatar
Senior Member
 
Join Date: Nov 2005
Location: North West South Africa
Posts: 115
Roets is on a distinguished road
Quote:
Originally Posted by elihayun
I know that, thats why I am testing if the string is found.

StringFind will return >= 0 if find a substring within a string. Since EURUSD can be found in EURUSD and in EURUSDm you don't have to warry if the account is mini or not. It will work on both

Thank you I will test with the new code.
Roets
__________________
Pro FX Experts for Professional Meta Trader Experts
Automate your manual method!
We accept all major credit cards with no upfront payment required!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

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 On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
RSI Expert Advisor TF2K Suggestions for Trading Systems 4 03-21-2007 12:52 PM
50-34 Expert advisor geisebhum Suggestions for Trading Systems 4 12-20-2006 05:45 PM
CCI Expert Advisor rodrigokaus Expert Advisors - Metatrader 4 10 09-29-2006 06:31 PM
expert advisor ? swirly Expert Advisors - Metatrader 4 3 08-30-2006 07:04 AM
What Expert Advisor are they using? fikko Expert Advisors - Metatrader 4 4 07-01-2006 08:47 AM


All times are GMT. The time now is 11:14 AM.



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