Go Back   DailyFX Forum > FXCM Products and Services > MT4 > Expert Advisor Discussion

Reply
 
Thread Tools Rating: Thread Rating: 2 votes, 5.00 average.
  #1 (permalink)  
Old 12-09-2008, 09:16 AM
Jason Andrus
Guest
 
Posts: n/a
MT4 Expert Advisors

Discuss your Expert Advisors with other traders in the MetaTrader4 forum. Compare systems and profitable strategies to find the best EA for you.
Reply With Quote
  #2 (permalink)  
Old 12-28-2008, 02:46 AM
Registered User
 
Join Date: Jun 2006
Posts: 1
vccuong is on a distinguished road
Testing

I am just testing
Reply With Quote
  #3 (permalink)  
Old 01-07-2009, 04:51 PM
Member
 
Join Date: Dec 2008
Posts: 10
jess82 is an unknown quantity at this point
I’ve seen some ea’s on the platform but I don’t really know how to use them. I guess it can work depending on the strategy we set on it, I’ll wait your advices
Reply With Quote
  #4 (permalink)  
Old 01-23-2009, 01:53 PM
Jason Andrus
Guest
 
Posts: n/a
Quote:
Originally Posted by jess82 View Post
I’ve seen some ea’s on the platform but I don’t really know how to use them. I guess it can work depending on the strategy we set on it, I’ll wait your advices
The platform will have a couple of EA's pre-loaded for you to use. If you have a strategy you would like to automate using an EA, then you can code the strategy in MQL to run on MetaTrader 4.

The second option is to use an EA developed by a third party. There are a multitude of EA's being sold/given away, but as with any strategy, make sure to do your due diligence.
Reply With Quote
  #5 (permalink)  
Old 02-03-2009, 05:24 PM
Luke Quinn's Avatar
FXCM Programmer
 
Join Date: Aug 2008
Posts: 37
Luke Quinn is an unknown quantity at this point
Fractional Pricing - (5th digit pricing)

I wanted to post this here because I get a lot of questions about Fractional Pricing with FXCM. Fractional Pricing allows a broker to more easily tighten spreads because of the precision of pricing. A Broker may not be able to offer spreads of 2 pips on EURUSD but wants to be lower than 3. With fractional pricing in place, it allows a broker to do a 2.6 or 2.3 pip spread, passing the difference on to the client.

A problem that arises from this is that a lot of programmers don't write EA's with this in mind. This limits the client's flexibility, and can lead to a lot of confusion. The biggest mistake revolves around the predefined variable "Point". A point, by MT4 terms, is the smallest unit by which a a price can increment. Most developers assume that Point equals 1 pip, but on a fractional pricing server a point is actually 1/10th of a pip. This leads to common problems such as stops and limits being 10 times too small.

An easy way to address this on pre-existing strategies is to create an external variable and integer.

extern bool FractionalPips = true;

int pip;

Then after the start of the strategy you include some code that sets the value of pip. Essentially when fractionalpips equals true, then pip equals 10, if not, pip equals 1.

if(FractionalPips==true)
{
pip=10;
}
else pip =1;

Once that is complete, at every spot in the strategy where you see "Point", change it to "Point*pip" This will allow your Point value to once again be equal to 1 pip, thus restoring the original functionality of your system.

For many people adding this code to their strategy is quite easy. If you lack confidence in doing this, Programming Services is available for projects such as this and have the experience necessary to follow through. Inquiries can be sent to consulting@fxcm.com.


Luke Quinn
Programming Services
__________________
FXCM Programming Services is able to leverage its experience and expertise to help clients implement their automated strategy designs on platforms such as TradeStation, MetaTrader, among others, upon request.
Reply With Quote
  #6 (permalink)  
Old 02-08-2009, 04:48 AM
Registered User
 
Join Date: Feb 2009
Posts: 2
MisterFX is an unknown quantity at this point
Hello

if you want Results from severals EA's tested from 2006-2009 and get the live statements from yahoo Metatrader group

Yahoo Metatrader Group - Powered by CO.CC

Regards
Reply With Quote
  #7 (permalink)  
Old 02-22-2009, 07:30 AM
Registered User
 
Join Date: Feb 2009
Posts: 1
fxmasterer is an unknown quantity at this point
Hello,
I don't know if it is right place, but I didn't found find better, so don't you know some tool which allow me more automatical copy history trades in MT4 to Excel or to make some analysis?

Thank you!
Reply With Quote
  #8 (permalink)  
Old 03-06-2009, 05:57 PM
Registered User
 
Join Date: Feb 2009
Posts: 2
ChrisKnight108 is an unknown quantity at this point
Original Turtle Trader Expert Advisor - 255% in 2008

It all started with a bet between Richard Dennis and Bill Eckhardt

The Turtle Traders’ legend began with a bet between American multi-millionaire commodities trader, Richard Dennis and his business partner, William Eckhardt. Dennis believed that traders could be taught to be great; Eckhardt disagreed asserting that genetics were the determining factor and that skilled traders were born with an innate sense of timing and a gift for reading market trends.

What transpired in 1983-1984 became one of the most famous experiments (nature versus nurture) in trading history. Averaging 80% per year, the program was a success, showing that anyone with a good set of rules and sufficient funds could be a successful trader.


System Rules:

The Turtles followed a clearly defined set of trading rules. Find these rules attached


Does This System Still Work?

Short answer: Yes.

Here is a site that has reported Backtest results for the Turtle System:

+255% in 2008:

Turtle Trading Results
Attached Files
File Type: pdf turtlerules.pdf (270.6 KB, 1232 views)
Reply With Quote
  #9 (permalink)  
Old 04-22-2009, 11:09 AM
Registered User
 
Join Date: Apr 2009
Posts: 1
ForexPro2009 is an unknown quantity at this point
Compare Expert Advisors

Check out this expert advisor comparison:

Expert Advisor Product Comparison

It gives a good explanation about custom and commercial Expert Advisors on the market.

Great introduction.
Reply With Quote
  #10 (permalink)  
Old 05-04-2009, 04:22 AM
Registered User
 
Join Date: May 2009
Posts: 1
david.petard is an unknown quantity at this point
AAMB-1

I'm using AAMB-1 expert advisor and i'm looking for other users to exchange ideas and results. Does somebody have experience (bad or good) with this ea ?

Last edited by david.petard; 05-05-2009 at 12:47 AM..
Reply With Quote
  #11 (permalink)  
Old 05-15-2009, 01:42 PM
Member
 
Join Date: Mar 2006
Posts: 7
birdjaguar is on a distinguished road
If the .EX strategies were profitable without alterations, everyone would be using them.
Reply With Quote
  #12 (permalink)  
Old 05-28-2009, 11:44 AM
Member
 
Join Date: Mar 2006
Posts: 7
birdjaguar is on a distinguished road
Thanks for answering my previous question about applying the free EAs to the chart. My next concern is that the strategy tester only goes back to 5/11/09. Is this normal? I am using the MACD Sample that comes wit the software. I tried using ticks and open prices. Either way the date function does not work. How can I test further back?
Reply With Quote
  #13 (permalink)  
Old 05-29-2009, 04:51 PM
Jose Sinning's Avatar
Moderator
 
Join Date: Nov 2008
Posts: 32
Jose Sinning is an unknown quantity at this point
Quote:
Originally Posted by birdjaguar View Post
Thanks for answering my previous question about applying the free EAs to the chart. My next concern is that the strategy tester only goes back to 5/11/09. Is this normal? I am using the MACD Sample that comes wit the software. I tried using ticks and open prices. Either way the date function does not work. How can I test further back?
You should be able to backtest as far back as January 1, 1970 using Strategy Tester, however you have to make sure that the prices in your History Center for the currency pair you are using date back to whatever date you wish to use as the starting point for your backtest. If for example, your strategy uses 1 minute data and you want to test your strategy from 5/11/97 to this date for the pair EURUSD, you have to make sure you have the data in your MT4 platform to run this backtest, otherwise you will either get an error or the strategy will start trading as far back as it has prices for.

Shortcut to History Center F2

So, go to Tools > History Center > EURUSD > Select the period you need and then click on download to get prices. You also have the option to import prices.

If you wish to get FXCM prices send us an email @ consulting@fxcm.com for a quote.
Attached Thumbnails
mt4-expert-advisors-historycenter.jpg  

__________________
FXCM Programming Services
FXCM Servicios de Programacion
Reply With Quote
  #14 (permalink)  
Old 05-29-2009, 07:23 PM
Member
 
Join Date: May 2009
Posts: 12
wwwin is an unknown quantity at this point
Quote:
Originally Posted by birdjaguar View Post
Thanks for answering my previous question about applying the free EAs to the chart. My next concern is that the strategy tester only goes back to 5/11/09. Is this normal? I am using the MACD Sample that comes wit the software. I tried using ticks and open prices. Either way the date function does not work. How can I test further back?
Try Tools/History Center/Download
Reply With Quote
  #15 (permalink)  
Old 06-02-2009, 08:30 AM
Member
 
Join Date: Mar 2006
Posts: 7
birdjaguar is on a distinguished road
Okay. Thanks again. I made it over the history hurdle. Now, I have problems with executing on the FXCM demo. When I attach the strategies to the charts, they don't execute. I downloaded a different broker's demo. The same exact strategies did execute. Has anyone else had this problem?

Also, when I manually looked at the back test, I noticed some trades were skipped. Some trades were closed early. Is this something others are experiencing?

How can I have any confidence that the strategy will execute properly in real time if it does not do it on the demo? In this question, I am asking about anyone else's experience in going from demo to live with MT4 code. Please help. I was really looking forward to using MT4 for trade entry. It seems to have a big following, but I am not getting consistent signals or execution. Am I an anomaly?
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 On
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




Disclaimer: Trading foreign exchange on margin carries a high level of risk, and may not be suitable for all investors. The high degree of leverage can work against you as well as for you. Before deciding to trade foreign exchange you should carefully consider your investment objectives, level of experience, and risk appetite. The possibility exists that you could sustain a loss of some or all of your initial investment and therefore you should not invest money that you cannot afford to lose. You should be aware of all the risks associated with foreign exchange trading, and seek advice from an independent financial advisor if you have any doubts. Any opinions, news, research, analyses, prices, or other information contained on this website is provided as general market commentary and does not constitute investment advice. Forex Capital Markets LLC. will not accept liability for any loss or damage, including without limitation to, any loss of profit, which may arise directly or indirectly from use of or reliance on such information.

All times are GMT -5. The time now is 08:45 PM.
Copyright ©2009 Daily FX. All Rights Reserved.