| New signals service! | |
|
|||||||
| 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 |
|
![]() |
|
|
LinkBack (3) | Thread Tools | Display Modes |
|
|||
|
Quote:
Attach the script to the chart and find the statement in /file folder. That's all. |
|
|||
|
Quote:
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. |
|
||||
|
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")); } |
|
||||
|
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). |
|
|||
|
Quote:
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)? |
|
||||
|
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 |
|
|||
|
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 |
|
||||
|
Quote:
Here is new version of my report: MT4 Report v.3 & template file
__________________
MQL4: idea * experience + creative solution |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
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 |