Search results

  1. D

    C

    He could work on a C++ port of TradeLink then. Not sure about the benefits of such a project, but it'll still beat reinventing the wheel.
  2. D

    C

    For trading platforms, you could contribute to the TradeLink project instead of starting a new one. For risk and pricing models, see QuantLib.
  3. D

    Delayed Futures and Futures Options data - IQFeed vs eSignal vs Kinetick vs etc?

    Thanks for sharing your experience tiddlywinks. Which client are you using to access the IQFeed data? I'm presently considering the following options, which allow me to download feed data to text files for import into my R scripts: $112/mth for the DTN.IQ client, or $68/mth for the basic...
  4. D

    Delayed Futures and Futures Options data - IQFeed vs eSignal vs Kinetick vs etc?

    And so I've confirmed that IQFeed provides historical intra-day futures options data (for unexpired options only) with a $68 monthly subscription to their basic service, excluding the startup fee and exchange fees for COMEX and NYMEX. Happy times.
  5. D

    Delayed Futures and Futures Options data - IQFeed vs eSignal vs Kinetick vs etc?

    Kinetick, CQG, Kibot and Pi Trading apparently offer only historical prices for futures, but not for options on futures. IQFeed has real-time feeds for futures options according to their websites. I've mailed them to confirm whether historical intra-day data is available as well. Haven't...
  6. D

    Need historical minute data - good source?

    For IB, according to http://www.interactivebrokers.com/php/apiUsersGuide/apiguide/api/historical_data_limitations.htm it seems you can download only a max of 2 days worth of 1-min data. It's a relatively cheap option though, if you're looking to populate your own database going forward...
  7. D

    Delayed Futures and Futures Options data - IQFeed vs eSignal vs Kinetick vs etc?

    For anyone who's watching this thread, I did a bit of searching on ET and found this useful post by biba4: http://www.elitetrader.com/vb/showthread.php?s=&threadid=181633&perpage=6&pagenumber=4
  8. D

    Delayed Futures and Futures Options data - IQFeed vs eSignal vs Kinetick vs etc?

    I need to download futures and futures options intraday (1-min) historical prices for equity indices, commodities, currencies, and preferably also bonds and IR swaps. I need the data downloaded as text (CSV) files, to be loaded into a stats analysis application. I need at least 2 years' worth of...
  9. D

    Long-term bullish vs short-term bearish

    For a short-term bearish/long-term bullish strategy, why not just apply any combination of write short-term call/buy short-term put/buy long-term call/write long-term put on your target companies? This solution would be low-cost if you stick to OTM options, as well as low-risk if you...
  10. D

    Risk Analysis: short OTM naked call Vs. covered call

    Draw the payout graphs (P&L vs stock price) and you can compare the pros and cons for yourself. Writing a call option by itself will give you unlimited losses on the downside if the stock price keeps rising. Adding a stock to make it a covered call will limit your loss to the stock value...
  11. D

    Does TWS support multiple cpu cores?

    Why do you care if it works with multiple cores? I haven't seen any TWS features that perform CPU-intensive operations.
  12. D

    Not sure what I've built.......

    Have you considered signing up with a prop firm? I started developing a simulation framework recently, in R and C++ and using historical data from WRDS plus live feeds from IB. It's taking a while due to work and school and family commitments. I don't have a basement full of servers yet; in...
  13. D

    Please Help.. Please

    I faced the same problem as you when I first started out. My solution: Automate. Algorithms don't have emotions.
  14. D

    Historical Fundamental Data

    The CompuStat database on WRDS. But there could be cheaper alternatives.
  15. D

    System needs input

    I just started working on an automated platform to generate portfolio reports for my IB accounts and to run automated trading strategies. I'm planning to deploy it on the cloud, but will eventually put it on a VPS when it starts paying for itself. I'm planning to run options trading algos on...
  16. D

    My own ATS: which subsystem to generate closing order?

    Yup. Your SES's main loop should look something like the following: execute() { 1. receive market data (price, volume, etc) from QuoteConnector 2. update values of any required technical indicators (20 EMA, etc) based on data updates from QC 3. receive data from OMS //position size...
  17. D

    My own ATS: which subsystem to generate closing order?

    It still can. Like I said it's best for your sub-components to be well-encapsulated, ie separated and hidden from each other. You've already done that by placing them in separate executables. All you need to do now is redesign the interfaces between QC->SES and SES->OMS so your executables...
  18. D

    Tradelink users? Issues?

    j2ee, It appears you've decided on using AmiBroker over TradeLink, MultiCharts, or any other platform (or decided on trying it out first, at least). May I ask what prompted your decision?
  19. D

    Tradelink users? Issues?

    Hope I'm not hijacking the thread, but I've yet to get a reply to http://www.elitetrader.com/vb/showthread.php?s=&threadid=248022 so... Can anyone please provide a comparison of TradeLink vs MultiCharts? The TradeLink website, http://code.google.com/p/tradelink/...LinkComparison, compares...
  20. D

    My own ATS: which subsystem to generate closing order?

    What you have here sounds like an application design problem more than anything else, which can be solved by using the object-oriented Strategy design pattern which is easily implementable in C++. Perhaps coupled with the State pattern, ie store the relevant State variables (current price...
Back
Top