Search results

  1. S

    Options Backtesting Software

    I would suggest purchasing your own historical options data and just use either R or python/pandas for backtesting. Almost every single software I've seen incorrectly calculates greeks/iv anyway.
  2. S

    Best Language for developing a backtesting platform

    Either R or python/pandas
  3. S

    Is it possible to make money automated trading?

    I think it's just that a lot of people underestimate the difficulty of this problem. However, there are plenty of capacity constrained strategies that one could implement and make a reasonable return on. For example I have a friend who trades for himself doing mostly stat arb strategies with...
  4. S

    Reasonable OMS for IB

    Isn't IB on FIX 4.2? Worst case scenario whip up a connector.
  5. S

    Is it possible to make money automated trading?

    It's a poor sample of set of people to choose from, people who actually know what they're doing have absolutely no incentive nor time to join such a competition.
  6. S

    Is it possible to make money automated trading?

    Well that's the thing about most quant strategies right? The strategies themselves are typically "dumb". Where the difficult part comes in is how to actually execute these orders and so on. Like they say, the devil is in the details.
  7. S

    Reasonable OMS for IB

    Do you guys know if there are any reasonable OMSs for IB? IB plugin would be nice, but would like to achieve broker neutrality as well so something FIX compliment would be nice. The only real requirement for me as of now is the ability to track virtual PnL for strategies and execution at...
  8. S

    Best multi-asset broker agnostic software

    Hey guys, so I'm looking for a multi-asset (will be primarily trading futures and options) broker agnostic front-end software, ideally FIX compliment. One other key element I'm looking for is that it can group positions by strategy rather than reporting the portfolio as a whole (p&l breakdown of...
  9. S

    Derivative of Delta with Respect to Theta?

    Those are all closed-form solutions posted from QN, I believe. If you wanted to compute it quickly you could either do it numerically or use a symbolic engine (e.g. matlab) to back out a solution.
  10. S

    IV formula

    I just took a look at the wilmott link and I suppose you would have ended the thread at at that if you had what you're looking for (I have no idea what your background is). So here's some quick pseudocode to solving for IV with the N-R method. This is assuming you're using the BSM. 1...
  11. S

    IV formula

    There typically* isn't a closed-form solution for IV, if that's what you're looking for. The standard approach is to use a root finding procedure, Newton-Raphson is fast enough for most applications. *depends on your model
  12. S

    How do you handle asynchronous nature of IB API?

    Synchronizing it.. There's actually a decent blog post on this: http://www.maxdama.com/2010/02/simplifying-ibs-api-by-synchronization.html
  13. S

    Holiday Calendar

    There are actually algorithms for this, I worked on one at work a few months ago.
  14. S

    risk-free rate

    If I come here for entertainment/boredom does that make me a high faultin' jackass?
  15. S

    risk-free rate

    I had use a psuedonym (i.e. not my usual online handle) for this site out of shame :( What's funny is that, just this morning I was reading something from over there where you answered pretty much the same question.
  16. S

    risk-free rate

    np?
  17. S

    BackTesting - which program?

    Matlab or R, the latter is more flexible though learning curve is steep.
  18. S

    Programmer Required

    are you looking for something VBA based (i.e. strictly excel) or redoing the entire thing in some other language?
  19. S

    intraday time decay?

    You're correct in that if the risk-free rate is 0 then theta is equal, however that is rarely ever the case!
  20. S

    intraday time decay?

    If we're just looking at a basic black-scholes model for a generic underlyer. We have: C(S,t) = S*N(d1) - k*exp(-r*t)*N(d2) P(S,t) = k*exp(-r*t)*N(-d2) - S*N(-d1) d1 = (ln(s/k)+(r+si^2/2*)*t/(si*sqrt(t)) d2 = d1 - si*sqrt(t) C(S,t): Price of a call P(S,t): Price of a put S...
Back
Top