Recent content by nemo4242

  1. N

    Has yahoo stopped their history data api service?

    You could try it with other programs that use the Yahoo history db. E.g. there are R and Pandas package that do that. If you're suspicious that they block non-browser access, try changing the user agent. You seem to use Java, so e.g.: connection.setRequestProperty("User-Agent", "Mozilla/5.0...
  2. N

    Historical Surprises on EPS estimates

    You may get this data at Nasdaq: e.g. http://www.nasdaq.com/earnings/earnings-calendar.aspx?date=2016-Mar-14. Yahoo has it also: http://finance.yahoo.com/calendar/earnings?from=2017-04-09&to=2017-04-15&day=2017-04-10. Both sites use Zacks data, I think. I one wrote a python script to scrape the...
  3. N

    Strategies catalog

    They use the performance data in the published papers. Just look at http://quantpedia.com/Home/How. Of course this is sub-optimal, but backtesting all those strategies would be nearly impossible. Some of them use data that is hard to obtain, like options bid/ask or fundamental data. The site is...
  4. N

    Strategies catalog

    No. For what language/platform should they provide it? There are so many... But they distill the rules in one or few paragraphs of text and refer to the source academic papers for all the details. Still useful, I think. But I only looked at some of the free strategies.
  5. N

    Strategies catalog

    There is Quantpedia: http://quantpedia.com/Screener Some of the free strategies are quite interesting, but you got to pay some $$ to see all of them.
  6. N

    TWS Greeks calculation

    @JackRab: That's what I read elsewhere: If you use trading days your IV will be annualized by 252 and if using calendar days IV will be annualized by 365. About the spline interpolation: Wouldn't that introduce an extra bias if on of the options you use for fitting the spline is mispriced? That...
  7. N

    TWS Greeks calculation

    thank you for your input. what do you use regarding the time to expiration? calendar days or trading days?
  8. N

    TWS Greeks calculation

    I am trying to figure out how Greeks and implied volatility are calculated in Interactive Brokers TWS software. I am trying to match it with my own calculations using the Black Scholes formulas. Maybe somebody already figured that out and can help me here. What interest rate is used for the...
  9. N

    Any problems logging in to Interactive Brokers in past 1 hour?

    No, but obviously they do their maintenance when the markets are closed, so scheduled maintenance will be on the weekend, I think.
  10. N

    Any problems logging in to Interactive Brokers in past 1 hour?

    Google for interactive broker system status: https://www.interactivebrokers.com/de/index.php?f=2225&ns=T Due to scheduled system maintenance, clients will be unable to connect through our web, mobile, and TWS platforms [Mesg Id: 394584] 2016/03/12 06:29 It's Saturday, dude..
  11. N

    Need third party software for validation and statistics

    Easiest solution is probably to convert the excel file to csv (comma separeted text file) and then use R or Python pandas to do evaluation. If the excel file changes often, there are also libraries for both R and Python to read directly from the xls file. Pandas includes it, afaik. I would not...
  12. N

    Fully automated futures trading

    Congrats to those results. Question about "risk": I can estimate individual position risk using the instruments volatility as a proxy: risk = position_value * stddev(percent_instrument_return) But how do you estimate the total account risk? Just adding up all individual position risk values...
  13. N

    dax, eurostoxx 50 and mini-dax - exchange?

    DAX, EUROSTOXX50 and mini-DAX all trade on EUREX, which IB still shows as DTB (Deutsche Terminbörse). Market data is 8€/month for level 1. In the account management under Trade Setup/Market Data Subscriptions, there is a Market Data Assistant, where you can look up instruments and it will show...
  14. N

    Fully automated futures trading

    About forecast scalars: I am using artificial random data to estimate the scalars and correlations between rules. For example, I created 1000 different random walks, each 100000 bars('days') long and applied trading rules to them: count mean std min 25%...
Back
Top