Search results

  1. 2

    Charting Volatility Surfaces from Quandl Data

    They dont provide strikes; the implied vols are ATMs of various days to maturity. How can you create a surface?
  2. 2

    [HELP] How to build quickfix python and ruby?

    you need to install with correct permissions error: /usr/local/lib/python2.7/site-packages/quickfixt11.py: Permission denied
  3. 2

    IBpy reqExecutions

    here's an example you get orderstatus and executions. It works with ibpy-0.7.6_9.51-py2.7 I assume your problem is that you need to call reqExecutions() from an instance and executions comeback through the execdetails() method. http://bit.ly/1fPx3lD
  4. 2

    Has anyone built a Market Depth/Level 2 Orderbook UI that connects to IB API

    do you have anything posted? github, bitbucket, a demo
  5. 2

    protect intellectual property

    I am not familiar with any of the technologies you mentioned but you could compile your code or use an obfuscator.
  6. 2

    $70,000 minimum wage at this private company...

    redistribution of wealth? glorified union? Is it all his money that is going to the lower paid employees? How do the other employees who are not getting this huge salary bump feel?
  7. 2

    CME Historical Data with Trade Aggressor Info

    you can get it from the cme https://www.cmegroup.com/market-data/datamine-historical-data/
  8. 2

    Get Volume at each specific Price Data

    if you had the trade data you could group by price and sum the trade size
  9. 2

    How does IB's API work with historical data?

    here's an example http://bit.ly/1FtE43K that publishes a midprice and other #s over zeromq. You could listen to zmq in your program for the prices instead of reading a file every minute. Also, here's how to use the API in python http://bit.ly/17h05Rm A custom solution is not free
  10. 2

    Beginners question: Is this a riskless trade??

    Looks like your Long 100 TNA and Long 100 TZA net each other out so you're just selling calls. Do it, do it.
  11. 2

    Interactive Brokers API wishlist

    Those languages might not be used for core infrastructure like connectivity, OMS, and messaging but they are heavily used as parts of a system: signals, low frequency logic, etc
  12. 2

    Oaktree Capital Group LLC

    I found a documentary
  13. 2

    Python and QuickFix Developer?

    PM me but it would be cheaper if you just bought the data or use quandl. Also depending on data rates it might be easier to do this in java or c# ... right tool for the job
  14. 2

    Futures Spreading Greeks... Or just term structure greeks?

    isnt that a fly? btw I upload some curve stuff daily if it helps http://bit.ly/1eJFJV6
  15. 2

    Bond yields/spreads - Free chart resources

    you can get that data from quandl.com
  16. 2

    To make a sound for symbol, when there is a new entry signal.

    I do something similar to this with python. Kind of like a robot squawk box. import pyttsx engine = pyttsx.init() engine.say("buy microsoft at 41") engine.runAndWait()
  17. 2

    Storing trading strategy logic

    this thread is reinventing the wheel. The pattern is dependency injection or visitor. Both do what you want.
  18. 2

    Storing trading strategy logic

    I was hoping for a concrete implementation. Can you show some code that does this
Back
Top