Topic: How to track performace of several FST on the same instrument ?

I have a such question that how can I track performants of several FST on the same instrument ?

Fore example I have 4 instances of FST with different strategies that all running on EUR/USD. How can I monitor the performance difference from each of them ?

On the current state I don't know haw to monitor the performans of each FST in this situation. I can see the overall account balance.

I have two proposals:

- I think that is important to add "ID=xx" of the FST into the MT "Account History" Comment field. It enables to monitor performance of each separate strategy based on it's ID.

- The other way is to improve FST Journal tab (or generate eacy to Excel importable log file) that tracks only losses and profits of each order.

***************************************************************

Updated:

I found a very good free service to track the performance of multiple FST's.
Please visit http://www.mt4i.com/ for more information.

MTI Live’s publisher EA is an alternative to the Publisher settings built in to MetaTrader 4. The MTI
Live publisher has several advantages compared to the built-in MT4 publication settings:

• Less bandwidth. The MTI publisher typically uses 90% less bandwidth than MT4’s publisher.
EA statistics. The MTI publisher can include the magic number of each trade, allowing
analysis of results per EA.

• More flexibility. The MTI publisher lets you choose whether to include pending and open
orders in your published results. You can also set a delay so that orders are not included on
your statement until a number of minutes after they are opened.
• Greater resilience. The MTI publisher recovers better from temporary network problems than
the built-in MT4 publisher.
• Simpler firewall configuration. The MTI publisher sends its data over HTTP, and will work
provided that you are able to browse the MTI Live website. The MT4 publisher sends its data
over FTP, and can be blocked by some personal firewall software or routers.
• More frequent publication. The MTI publisher can export your data every minute, compared to
a maximum frequency of every 5 minutes with MT4’s publisher.

Re: How to track performace of several FST on the same instrument ?

I'm going to publish new release this weekend. I'll include ID=XX

Re: How to track performace of several FST on the same instrument ?

Hi!

In this context, a problem also encountered.

I connected with a Broker:
Once ID = 11 EUR/USD M30 and a second ID = 12 EUR/USD D1.
Both of them exit 'Bar closing'.
Occurred: ID = 12 open position and ID = 11 it closes!!! ID = 12 should do though.
The two strategies may take a blur, though this would not be free!

Re: How to track performace of several FST on the same instrument ?

Both strategies trade one and the same couple. Actually they control one aggregate position. If ID11 closes the position, ID12 will see it as closed.
A situation may arise when both strategies send close orders simultaneously. In that case the first order will be executed and the second order will be canceled (an error message may be returned). This will not break the trade.

Re: How to track performace of several FST on the same instrument ?

This I understand. But I want to test two different strategies at the same time a broker. I is not good, if ID = 12 end of the day to close down and ID = 11 before closing at the end of half an hour.
But I also understand that if it is not possible. I can not stay another way, the various currency pairs as I run a broker.

Re: How to track performace of several FST on the same instrument ?

It's possible to trade several strategies on one and the same couple but you have to make a little change in the expert.

1. Find on line 30 of the expert:

#define EXPERT_MAGIC  20011023

2. Change this to

extern int EXPERT_MAGIC = 20011023;

3. When starting the expert set unique ID number and EXPERT_MAGIC number. Let's say ID=12, EXPERT_MAGIC = 12.

4. For the other instance of the expert set different numbers like: ID=13, EXPERT_MAGIC = 13.


Now both experts will work with their own magic numbers and the positions will not interfere each other.

Re: How to track performace of several FST on the same instrument ?

This is great! I rewrote everything, I set successfully, as you write. Now only needs to be tested, that's all right.
Thank you.

Re: How to track performace of several FST on the same instrument ?

http://img27.imageshack.us/img27/8559/fstjan.png

This is very important issue because I have 4-5 experts running on the same pair. I discovered similar anomaly, but I didn't understood the issue completely. I'm glad that this issue is solved now.

Maybe you should publish the bug fix realase of the FST expert.

Great work indeed.

Popov wrote:

It's possible to trade several strategies on one and the same couple but you have to make a little change in the expert.

1. Find on line 30 of the expert:

#define EXPERT_MAGIC  20011023

2. Change this to

extern int EXPERT_MAGIC = 20011023;

3. When starting the expert set unique ID number and EXPERT_MAGIC number. Let's say ID=12, EXPERT_MAGIC = 12.

4. For the other instance of the expert set different numbers like: ID=13, EXPERT_MAGIC = 13.


Now both experts will work with their own magic numbers and the positions will not interfere each other.

Re: How to track performace of several FST on the same instrument ?

I found a free service for advanced EA statistics. Please see the updated info on the top.