Welcome to the Traders Laboratory Forums.
Automated Trading Black box systems, strategy automation, algorithmic trading, etc...

Reply
Old 07-18-2009, 06:57 PM   #17

UrmaBlume's Avatar

Join Date: Apr 2008
Location: Las Vegas
Posts: 663
Ignore this user

Thanks: 87
Thanked 611 Times in 250 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

Quote:
Originally Posted by Frank »
usually best to ignore 'hater' posts like this but I will chime in with why..

you are paying Tradestation for their software, not for the data -- which is a commodity and 'should' be free, just like it is for stocks on Yahoo. would you pay $1200 a year to have access to the time of day? of course not, it is a free add-on data feed with your computer.

personally, I used Tradestation for years and moved away from it. I find it more appealing to manipulate data in my own way -- not through Tradestation. I have a solid database of data --- but it would be nice to have a place to reference when you do care to expand your own database of data for new markets or different timeframes. the net net answer to why? because in a world of peer to peer networking through the internet, it SHOULD be accessible for free.
Sorry, not a hater post at all.

The db you propose is very limited as to time frames and symbol list. Such a db is only suitable for a very limited trading/research operation. For any "REAL" trading or research venture $1200 per year for unlimited data is very inexpensive and if one's trading or research won't support that, then, indeed, such an ersatz approach would be appropriate.

Of note is that commercial data feeds like Trade Station are at the bottom of the line. The big boys use direct, near zero latency feeds that cost over $20,000 per month. No matter what you build you can't get that for free. The only reason they pay 20k per month is because they make money by using it.

If free one hour data on 10 symbols fulfills your needs then my all means this is the app for you. I run a small private trading and development operation and could neither trade or develop with the data you describe.
UrmaBlume is offline  
Reply With Quote
Old 07-18-2009, 08:04 PM   #18

Join Date: Jan 2008
Location: San Francisco
Posts: 394
Ignore this user

Thanks: 17
Thanked 338 Times in 156 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

yes, historical data fulfills my research needs. Whether you pay nothing, $20k per month or $12 million per year (as my old firm paid in annual investment infrastructure), guess what? its the same data.

you missed the point by trying to pigeon me into one-hour data and condescending about your 'private trading operation' --- whatever bro, I am not talking about data delivery with zero-latency for trading -- I am talking about historical data. there is a difference. there is no edge in zero-latency raw-compute power. my trading platform with 'infintesimally higher than zero latency' is just fine.

in the future, just try to think about the fact that other people might do things differently than you do. there are many different ways to skin a cat and trust me, you don't know all of them. neither do I but the difference is I seem to be aware of this fact.
Frank is offline  
Reply With Quote
Old 07-18-2009, 08:37 PM   #19

UrmaBlume's Avatar

Join Date: Apr 2008
Location: Las Vegas
Posts: 663
Ignore this user

Thanks: 87
Thanked 611 Times in 250 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

Sorry Frank,

My questions regardiing your approach to data collection and managment are about practicality.

I and every professional trader I know would find such an approach to be not practical and that to be able to access unlimited data, either real time or historical, for any symbol or instrument at any time to be well worth what we pay.

Obviously your approach to data collection and management is adequate for your needs so it is the right one for you.

After almost 30 years of professional/management level involvement with the markets, I do, indeed, understand that there are many ways to profit from trading and just didn't understand why anyone would go to the trouble to build such a seemingly inadequate system just to save a few bucks. The answer of course is that it is not inadequate for your needs and thus is perfect for you.

I didn't mean to criticize of belittle your approach, I just didn't understand how anyone could go to that effort to get so little just to save a very few bucks. Now I know and wish you the best of luck.

cheers

Last edited by UrmaBlume; 07-18-2009 at 08:42 PM.
UrmaBlume is offline  
Reply With Quote
Old 07-21-2009, 12:13 AM   #20

Szymon's Avatar

Join Date: Dec 2007
Location: Sydney
Posts: 165
Ignore this user

Thanks: 18
Thanked 102 Times in 35 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

Hi Guys,

Thanks for your valuable input.

At this stage I am happy to take the hourly information, I use this information to calculate future high probability time reversals plus other things and also I wanted to see if this is all possible, to contribute towards this project and share this information like opensource project.

Here is a simple OpenECry connector, you can sign up for an API Login from OpenECry and use that to login to this test system. On the next system l will put some basic functionality on the form, just to see what kind of information they are offering.

Just extract the folder and double click on the OpenECry_Connector.exe file about 26kb. A form will pop up and then put your login details in, then you will get a test message if all went well.

Regards

Simon
Attached Thumbnails
New Open Source Project - MS Sql Server Market Data Colletor.-form.jpg  
Attached Files
File Type: zip OpenECry Connector.zip (217.6 KB, 13 views)
Szymon is offline  
Reply With Quote
Old 07-21-2009, 11:06 AM   #21

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,272
Ignore this user

Thanks: 129
Thanked 1,038 Times in 694 Posts



Re: Why?

Quote:
Originally Posted by UrmaBlume »
Why?

Decades of data in every time frame from 1 minute on up is available for every symbol from several different vendors for very little money.

Trade Station at $99 per month, free with just a few trades, makes all of this data available and it can be easily exported from TS into either a csv file or via dll to any database you want.

Plus with all the great open source db's available why MS db?

For Historical data you can get a free trial for TS and download what ever you want.

Is the sole reason for this app to save $99 a month? I don't get it.
I don't know what TS provide history wise but I would be surprised if it really does offer 'all the data you could want'. For example can you can load every tick of the ES since ist inception for example (complete with proper time stamps). What about the DAX FTSE CAC, what about more esoteric instruments? Data management is a pain but at least if you do that yourself you know you really do have everything you could possibly want andthat it has been collected and stored accurately.

I cant answer for Syzmone but why would you lock yourself in to an archaic propriatory product like TS? I presume the point of the project is so that you can connect your database to numerous data providers (including TS) and allow it to be queried by any client application that you can dream of.

Don't get me wrong TS is a great product for quick prototyping of ideas but as the cornerstone of a project to collect and manage financial time series data wel in fact TS as the cornerstone for any 'big iron' type project .....well no comment but good luck with that.

I do agree with your comment on the choice of database. SQL isn't ideal in the first place but despite that is still adequate. Going open would seem to make more sense to me too.
BlowFish is offline  
Reply With Quote
The Following User Says Thank You to BlowFish For This Useful Post:
Tams (07-21-2009)
Old 07-22-2009, 01:48 AM   #22

Szymon's Avatar

Join Date: Dec 2007
Location: Sydney
Posts: 165
Ignore this user

Thanks: 18
Thanked 102 Times in 35 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

Hi All,

Can someone tell me why MS Sql 2008 is not good for this, what have you experienced with this product and do you have any suggestions something else that is better than this product.

Here is a link to the MS Website for this product.

Microsoft SQL Server 2008: Overview


Simon

Last edited by Szymon; 07-22-2009 at 01:58 AM.
Szymon is offline  
Reply With Quote
Old 07-22-2009, 04:32 AM   #23

Join Date: Nov 2007
Posts: 87
Ignore this user

Thanks: 12
Thanked 30 Times in 20 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

About ways to store large data sets please notice this extensive discussion (you may have to register first to get access to the yahoo-group):

Yahoo! Group TWS-API: Has anybody tried some sort of database?

It is a discussion group of people who are writing programs for IB (Interactive Brokers) API.
Anyway the discussion is relevant for everybody who thinks about saving (and accessing) a big amount of data.
Answers your question about SQL also.



Another thing that might deserve your interest:

Esper - Complex Event Processing

A free, open-source and working event-processing project.
uexkuell is offline  
Reply With Quote
The Following User Says Thank You to uexkuell For This Useful Post:
Szymon (07-22-2009)
Old 07-22-2009, 06:28 AM   #24

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,272
Ignore this user

Thanks: 129
Thanked 1,038 Times in 694 Posts



Re: New Open Source Project - MS Sql Server Market Data Colletor.

One question to ask ...are SQL databases good the best way to store sequential data? Answer is probablly no. Does it matter that much? The answer is again probabbly not. Chances are the yahoo group that was linked will give you a much better idea of pros and cons.

Having chose SQl (which is certainly not wrong) then the only choice is which implementation to go with. To be honest I don't really know the current pros and cons, it's years and years since I have had to seriously evaluate DB products. Intuitivly an open source implementation seems to make sense for an open source project. There are many things that could blow that feeling right out of the water. Your preference is one of them
BlowFish is offline  
Reply With Quote
The Following User Says Thank You to BlowFish For This Useful Post:
Szymon (07-22-2009)

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Open ECry Data Feed Tresor Open E Cry 10 04-21-2009 12:04 AM
Open Interest Data Provider on EUREX ? paolfili Market Analysis 2 01-29-2009 04:01 AM
Finance articles source intocatonna Beginners Forum 1 08-06-2007 01:44 AM
Server Issues Resolved Soultrader Support Center 0 06-25-2007 11:03 AM
How to Project Fibonacci Time Cycles willd Trading Articles 0 02-02-2007 12:52 AM

All times are GMT -4. The time now is 04:43 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.