| Automated Trading Black box systems, strategy automation, algorithmic trading, etc... |
![]() | | Tweet | |
| | #25 | ||
![]() | Re: Why? Quote:
Was it your intent to hijack this thread to talk up TS or was it an accident? Last edited by ZOSO; 07-22-2009 at 10:14 PM. | ||
| |
|
| | #26 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. I'm currently employeed at an FCM to monitor and administer an in-house trading system. My overall goal is to test system ideas and market trends that I notice while watching the futures markets at work. If you need resources, such as a server to host the data, or whatever, loop me in and I would love to help out. | ||
| |
|
| | #27 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. F Quote:
| ||
| |
|
| | #28 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. F | ||
| |
|
| | #29 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. what i have used and really liked for historical backtesting is pytables, it's pretty awesome--can natively treat a portions (amount currently in RAM) of a database as a numpy array and has some real speedy and easy to use c based find/matching functions. i've used TA-Lib wrapped in python (but actually run in c) to populate the tables in the case that i wanted some indicators plus, its python ; so we talking rapid development times.matplotlib and scipy have some cool charting capabilities including candlesticks in the finance module. not sure if it can be used with ms .NET's iron python distribution, i've only used it with linux PyTables - Getting the most *out* of your data An Introduction to PyTables video tutorial - PyTables Tutorials - Learn: programming_tools, interface, extremely_large_datasets, pytables, HDF5, efficient, tutorial, tools, cover, data, solution, interfaces, free, videos, video, fast, features, infor Numpy Home Page matplotlib: python plotting — Matplotlib v0.98.6svn documentation TA-Lib : Technical Analysis Library - Home | ||
| |
|
| | #30 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. | ||
| |
|
| | #31 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. 1 - Timezones are important 1a - The database should self-identify what timezone data is being stored in, e.g. some integer offset relative to UTZ (i.e. keep database in EST, CST, whatever makes sense to you) 1b - Data loading applications need to know what timezone the source data is in so they can normalize to the target database (becomes important when people in different timezones can contribute data) 1c - User Applications (e.g. charts) should be able to convert database times into end-user times 2 - Even if you're only computing or plotting "floor" session data, it is useful to have 24-hour data (e.g. globex) so that overnight high low prices are known 3 - Market Profile charts 3a - the maximum time quanta is 30 minute bars, the "current" bar can be updated with greater frequency (e.g. every 30 seconds) for semi-realtime charts 3b - Volume-at-Price data is necessary for Market Profile but it will force you to compromise the minimum price-delta (e.g. $1 for $BRK.B , $0.01 for $GLD) 3c - separate tables for OHLC (key: YYMMDD,HHMM) and Volume-at-Price (key: YYMMDD,HHMM,Price) help speed charting for MP and non-MP charts 4 - Store dates and prices as integer values 4a - need date methods to compute yymmdd+date_offset and (yymmdd+-yymmdd) as date offset (my database is in yymmdd and I will have to convert to yyyymmdd by next year) 4b - convert fractional prices (ags, bonds) to integers so that ranges can be easily computed, e.g. multiply Ag prices by 25 and 30-Year bonds by 15625 to eliminate the fractional portion of the price 5 - DBA stuff - data sources are imperfect and I have to reload data to remove bad ticks or fill-in missing times more often than I'd like. the real problem is finding bad data or missing ticks before the tick data goes offline (DTN tick data only goes back 8 days, eSignal tick data goes back 10 days) | ||
| |
|
| | #32 | ||
![]() | Re: New Open Source Project - MS Sql Server Market Data Colletor. | ||
| |
|
![]() |
| Thread Tools | Search this Thread |
| 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 |