Forex



Go Back   Forex Trading > Downloads > Tools and utilities
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #11 (permalink)  
Old 01-03-2006, 03:58 PM
Alex.Piech.FinGeR's Avatar
Senior Member
 
Join Date: Oct 2005
Location: Germany
Posts: 307
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #12 (permalink)  
Old 01-03-2006, 04:32 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #13 (permalink)  
Old 01-06-2006, 08:35 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
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 08:39 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #14 (permalink)  
Old 01-13-2006, 09:32 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 54
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #15 (permalink)  
Old 01-13-2006, 09:46 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 54
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #16 (permalink)  
Old 01-13-2006, 09:51 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 54
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #17 (permalink)  
Old 01-24-2006, 07:04 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #18 (permalink)  
Old 01-24-2006, 07:25 PM
sadaloma's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 344
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #19 (permalink)  
Old 08-01-2006, 01: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, 516 views)
Attached Files
File Type: ex4 Report_v6.ex4 (25.0 KB, 180 views)
File Type: htm sample_report.htm (25.3 KB, 172 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #20 (permalink)  
Old 08-10-2006, 09:25 PM
RickD's Avatar
Member
 
Join Date: Jan 2006
Location: Eastern Europe
Posts: 54
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
forex, metatrader reports, mt4 reports


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 Off
Forum Jump

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


All times are GMT. The time now is 03:41 PM.



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