Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Tools and utilities


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 (3) Thread Tools Display Modes
  #11 (permalink)  
Old 01-03-2006, 02:58 PM
Alex.Piech.FinGeR's Avatar
Senior Member
 
Join Date: Oct 2005
Location: Germany
Posts: 305
Alex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud ofAlex.Piech.FinGeR has much to be proud of
Thumbs up equity curve ?

thanks good job

i possible with equity curve ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 01-03-2006, 03:32 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,894
Blog Entries: 54
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by Alex.Piech.FinGeR
thanks good job

i possible with equity curve ?
It is the script to gerenate the statement.
Attach the script to the chart and find the statement in /file folder.
That's all.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 01-06-2006, 07:35 AM
Administrator
 
Join Date: Sep 2005
Posts: 15,894
Blog Entries: 54
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by RickD
Hi!
Here is my script for MT4.
1. You can hide/show separated columns now.
2. Sort function added. You get a mechanism of sorting data by columns.
3. Validate function added. The final report will have only validated data.
RickD,

Thanks a lot for your script. It is very useful.

You said that we may use some of the functions of this script. But sorry I do not know up to now how to use these functions (to sort the orders by pairs etc). I know that I should attach the script to the chart and the report will wait for me in /file folder. But how to use all the options of this script?

And just a suggestion: you did your post in "Commercial Trading Systems and indicators" section but I am moderating this section so I took some time to see your post and to recognize that your post has nothing with this section and to move it to the right place. Please if you are posting something for free (as usually) do not use Commercial section.

Last edited by newdigital; 01-06-2006 at 07:39 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 01-13-2006, 08:32 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 52
RickD is on a distinguished road
Quote:
Originally Posted by newdigital
RickD,

Thanks a lot for your script. It is very useful.

You said that we may use some of the functions of this script. But sorry I do not know up to now how to use these functions (to sort the orders by pairs etc). I know that I should attach the script to the chart and the report will wait for me in /file folder. But how to use all the options of this script?
1. Sorting.

Sorting bases on SortBy[] and SortBy2[] arrays.
You can find SortBy arrays at the beginning of my script.

Example:

1)
int SortBy[] = {BY_OPENTIME};

The script will sort all the orders by OPENTIME column.
The order is ascending by default.

2)
int SortBy[] = {BY_SYMBOL, BY_PROFIT};
int SortBy2[] = {ASK, DESK}; (Sorry for my misprint, should be DESC)

No comment

Use following predefined constants:
BY_TICKET
BY_OPENTIME
BY_TYPE
BY_LOTS
BY_SYMBOL
BY_OPENPRICE
BY_SL
BY_TP
BY_CLOSETIME
BY_CLOSEPRICE
BY_COMMISSION
BY_SWAP
BY_PROFIT
BY_COMMENT
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 01-13-2006, 08:46 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 52
RickD is on a distinguished road
2. Validation

There is Validate function at the end of my script:

bool Validate(int ticket) {
...
}

Example:

1)
Let I need report containing only GBPUSD orders.

I use the following Validate function:

bool Validate(int ticket) {
return (OrderSymbol() == "GBPUSD");
}

It is not necessary to call OrderSelect function.
The script calls OrderSelect automatically before Validate.

2) If I need all closed by takeprofit orders only:

bool Validate(int ticket) {
return (StringFind(OrderComment(), "[tp]") != -1);
}

3) If I need all the orders opened after 2005.06.13 20.00:

bool Validate(int ticket) {
return (OrderOpenTime() > StrToTime("2005.06.13 20.00"));
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 01-13-2006, 08:51 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 52
RickD is on a distinguished road
How to show/hide separated columns

#define SHOW_OPENTIME 1
#define SHOW_OPENPRICE 1
#define SHOW_SL 1
#define SHOW_TP 1
#define SHOW_CLOSETIME 1
#define SHOW_CLOSEPRICE 1
#define SHOW_COMMISSION 1
#define SHOW_SWAP 1
#define SHOW_COMMENT 0

It means OPENTIME, ..., SWAP columns are visible (1), the COMMENT column is hidden (0).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 01-24-2006, 06:04 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,894
Blog Entries: 54
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by RickD
How to show/hide separated columns

#define SHOW_OPENTIME 1
#define SHOW_OPENPRICE 1
#define SHOW_SL 1
#define SHOW_TP 1
#define SHOW_CLOSETIME 1
#define SHOW_CLOSEPRICE 1
#define SHOW_COMMISSION 1
#define SHOW_SWAP 1
#define SHOW_COMMENT 0

It means OPENTIME, ..., SWAP columns are visible (1), the COMMENT column is hidden (0).
Is it possible to sort by pips and to get total?
For example I am testing one EA on as many pairs as possible. Possible to use this script to know how many pips (in total) EA made for each particular pair during the estimated period of time (weekly let's say)?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18 (permalink)  
Old 01-24-2006, 06:25 PM
sadaloma's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 343
sadaloma is on a distinguished road
I am not sure if I should start a new thread for this so excuse me if I am a bit off topic here:

I was using a small free software called "MTreport4" to analyse statements (mine and the ones from other testers) to show pips made or lost per currency.

But now with the new build 188, the software won't work anymore.

Does anybody have a different "analyser" software that is compatible with build 188?

Thanks

Sada
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19 (permalink)  
Old 08-01-2006, 12:18 PM
Junior Member
 
Join Date: Jun 2006
Posts: 9
phazei is on a distinguished road
I just found this nifty program today and it was *almost* what I was looking for.
Good thing I know how to code

I added a function to show subtotals for each specific EA based on comment along with each EA's profit factor.

It also sorts by comment properly now, the [sl] and [tp] don't get in the way.

Hope someone else finds this usefull.

Just drag the script onto any chart and it will get all your history.

-Adam
Attached Images
File Type: jpg sample_report.jpg (277.8 KB, 310 views)
Attached Files
File Type: ex4 Report_v6.ex4 (25.0 KB, 125 views)
File Type: htm sample_report.htm (25.3 KB, 113 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20 (permalink)  
Old 08-10-2006, 08:25 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 52
RickD is on a distinguished road
Quote:
Originally Posted by newdigital
Is it possible to sort by pips and to get total?
For example I am testing one EA on as many pairs as possible. Possible to use this script to know how many pips (in total) EA made for each particular pair during the estimated period of time (weekly let's say)?
Use Validate function to designate the estimated period and currency pair. Unfortunately the script shows profit in deposit currency instead of pips.

Here is new version of my report:
MT4 Report v.3 & template file
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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/tools-utilities/473-parse-mt4-html-reports.html
Posted By For Type Date
MT4 Report file This thread Refback 01-20-2008 09:08 PM
E2E-Fx This thread Refback 08-22-2007 12:55 PM
MT4 Report file This thread Refback 08-01-2007 07:20 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Live Testing reports daraknor Phoenix 821 04-06-2008 03:31 PM
Account Reports mikejody Metatrader 4 0 04-18-2007 10:42 PM


All times are GMT. The time now is 02:06 PM.



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