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

Closed Thread
 
Thread Tools Display Modes
  #21 (permalink)  
Old 04-08-2006, 09:33 AM
Member
 
Join Date: Oct 2005
Posts: 39
mj10 is on a distinguished road
Working with Excel (tools, indicators, conversion ...)

hi does any one knows how to convert day data of a stock into week and month in excel if someone can help me it would be very great full to him.
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!
  #22 (permalink)  
Old 04-08-2006, 09:41 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,054
Blog Entries: 241
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
There is some thread forex data converters
If not try to look at the whole section http://www.forex-tsd.com/tools-utilities/
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!
  #23 (permalink)  
Old 04-09-2006, 06:39 AM
Member
 
Join Date: Oct 2005
Posts: 39
mj10 is on a distinguished road
well it is for converting a hst to csv or something like that
the thing i was looking for is simple converting a day data into week or month
(in excel) as i have the data in excel
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!
  #24 (permalink)  
Old 05-09-2006, 01:13 AM
Senior Member
 
Join Date: Apr 2006
Location: Oregon
Posts: 116
67-17454 is on a distinguished road
Help: Simple Save Data To A File

I'm tinkering around trying to figure out how to send 15 minute data to a file. Any help would be appreciated.

It compiles without errors. I put it in the Indicator folder and it's visible, but when I try to add it in MT4, it's not accepted - does not get added to the EURUSD chart.

int start()
{
int handle;
string tSymbol="EURUSD";
double rates_m15[][6];
ArrayCopyRates(rates_m15,tSymbol,PERIOD_M15);
handle=FileOpen("Out.csv",FILE_CSV|FILE_WRITE,',') ;
if (handle<1)
{
Print("File Out.CSV not found, the last error is ", GetLastError());
return(false);
}
else
{
FileWrite(handle,tSymbol,TimeToStr(rates_m15[0][0]),rates_m15[0][1],rates_m15[0][2],rates_m15[0][3],rates_m15[0,4]);
FileClose(handle);
Alert("Sent Data 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!
  #25 (permalink)  
Old 05-09-2006, 04:32 AM
Techguy's Avatar
Junior Member
 
Join Date: Nov 2005
Posts: 26
Techguy is on a distinguished road
Array Issue?

I'm just taking a wild stab here, but I thought that MT4 could only handle single element arrays. I thought I read that somewhere.

Also FYI, the compiler is not bullet proof. It seems to compile even though there may be issues in the code, i.e. datetime variables accidently declared as int.

Try the Metaquotes (manufacturer's) forum for researching the big bugs.
__________________
Kind Regards,

Techguy
Never Lose A Password

Last edited by Techguy; 05-09-2006 at 04:36 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!
  #26 (permalink)  
Old 05-09-2006, 06:25 AM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
I have 2 scripts that I wrote. the 1st one will write to the history, up to the datetime you can change. The 2nd will write to a CVS file. Hope it will help you
Eli
Attached Files
File Type: mq4 HistorySave.mq4 (3.0 KB, 252 views)
File Type: mq4 GetPrices.mq4 (1.5 KB, 254 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!
  #27 (permalink)  
Old 05-09-2006, 06:44 AM
firedave's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Jakarta, Indonesia
Posts: 414
firedave is on a distinguished road
Hi, sorry for asking this, maybe I'm just not quite understand the problem. But why need additional script to write to CVS file when we already have SAVE AS feature from MT4 ? Thank you in advance
__________________
David Michael H
"Trader helps traders with sincerity, honesty and integrity"
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!
  #28 (permalink)  
Old 05-09-2006, 08:11 AM
elihayun's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 396
elihayun is on a distinguished road
Quote:
Originally Posted by firedave
Hi, sorry for asking this, maybe I'm just not quite understand the problem. But why need additional script to write to CVS file when we already have SAVE AS feature from MT4 ? Thank you in advance
CVS files is great way to see the data in Excel. Not always, u want to see only the OCLH values. I use this script to save the MA or MACD values and analyze them afterwards.
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!
  #29 (permalink)  
Old 05-09-2006, 09:23 AM
firedave's Avatar
Senior Member
 
Join Date: Nov 2005
Location: Jakarta, Indonesia
Posts: 414
firedave is on a distinguished road
Quote:
Originally Posted by elihayun
CVS files is great way to see the data in Excel. Not always, u want to see only the OCLH values. I use this script to save the MA or MACD values and analyze them afterwards.
Understand, thank you for the reply
__________________
David Michael H
"Trader helps traders with sincerity, honesty and integrity"
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!
  #30 (permalink)  
Old 05-09-2006, 05:07 PM
Senior Member
 
Join Date: Apr 2006
Location: Oregon
Posts: 116
67-17454 is on a distinguished road
Did it

This did the trick. Thanks a lot.

I'm a better VB6 than 'C' programmer, so while I'm re-going through the learning curve (haven't programmed in 'C' since the mid-80s when I worked on Unix), I'm interacting between MT4 & VB6. I'm programming in the MMTS system from the e-Book - which I can do easily in VB6 with the interaction from MT4. I can also use a number of visual metaphors such as scoring the 19 different setups identified by Monika.

I know that I can use the DDE connection between MT4 & VB6, but this lets me leverage the MT4 system.

Thanks again.
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!
Closed Thread

Bookmarks

Tags
adaptive moving average excel, average directional index excel, Directional Movement Index EXCEL, excel, excel forex, Excel Hilbert transform, forex excel, forex excel tools, hilbert, hilbert transform excel, Kaufman, parabolic SAR calculation excel, parabolic sar excel, parabolic sar excel formula, parabolic sar formula excel, Parabolic SAR in Excel, parabolic SAR spreadsheet, ta-lib.xll


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
Mql2Mq4 Conversion Tool Beta V0.2 yousky Tools and utilities 33 10-20-2006 09:59 AM
4 Hr Expert very profitable needs conversion saslam Expert Advisors - Metatrader 4 8 09-24-2006 12:57 PM
Some useful tools ( portable version, so, working WITHOUT installation ) De Vinci Tools and utilities 1 08-18-2006 04:16 PM
Thread subscription tools not working cardio General Discussion 1 02-21-2006 08:13 PM


All times are GMT. The time now is 05:35 AM.



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