Search results

  1. D

    get Google option chain

    Thanks. Real-time data is fine. May I retrieve the option chain at any time when market is open for a real-time snapshot?
  2. D

    get Google option chain

    Ye, this is one way. Actually my purpose is to re-organize the data on a web server which is running CentOS. I can get IB data on my laptop but can't do it on the server. Want to know if there is any option chain Web API...
  3. D

    get Google option chain

    YQL option chain is not accurate. I found some data inconsistent with nasdaq.com which is supposed to be correct. So this problem is re-opened. Still need help to retrieve the whole accurate option chain from somewhere.
  4. D

    get Google option chain

    finally I move to YQL and this is solved.
  5. D

    get Google option chain

    Thanks 2rosy. I tried this but it only returns the most close expiry option data. Is there any way to retrieve the next two months option chain? Or am I wrong?
  6. D

    get Google option chain

    Hi, I'm trying to retrieve Google option chain by linux c++. Unfortunately the website uses Ajax and the program could only get the static webpage. 1. Is there anyway to retrieve the data? 2. Alternatively, is there any good source of option chain? Thanks!
  7. D

    Need a stockcharts.com-like program

    Butterfly, thank you. I'll check that. Actually I have found an excellent image library Imagemagick and successfully make it work with linux and c++. Now my website dynamically generates stock charts in .png format. I'm still working on it.
  8. D

    IB TWS - disable order ticket window

    I have two accounts on IB. One popup order ticket window on placing order, the other doesn't popup that window. I want to disable the order ticket window to place order faster but can't find the option in configuration. Could anyone help?
  9. D

    Need a stockcharts.com-like program

    Butterfly, could you tell the name of the PHP lib? Thanks.
  10. D

    Need a stockcharts.com-like program

    Thanks everyone. I should apologize for not explaining clearly. The purpose (or procedure) is: 1. A user submits a request for a specific chart from web browser. 2. PHP call system() to run a C++ program to generate the chart saved in the JPEG format. 3. The C++ program returns the...
  11. D

    Need a stockcharts.com-like program

    I should say that I need the source code or library for development. ;)
  12. D

    Need a stockcharts.com-like program

    Is there any program to generate stock charts similar to stockcharts.com? Any information is appreciated.
  13. D

    IB API - orderStatus() can't find order type and order limit price

    I read through the API reference of orderStatus() but can't find the variable of order type and order price. I must miss something. Anyone helps?
  14. D

    IB API - get all expirys and strikes of a stock symbol

    Thanks Butterfly. Fortunately I solved this problem. I'm using the EWrapper from the old version. The old definition is void contractDetails(const ContractDetails &contractDetails); while the new one is void contractDetails(int reqId, const ContractDetails &contractDetails); My...
  15. D

    IB API: contractDetailsEx

    Fortunately I solved this problem. I'm using the EWrapper from the old version. The old definition is void contractDetails(const ContractDetails &contractDetails); while the new one is void contractDetails(int reqId, const ContractDetails &contractDetails); My codes were written in...
  16. D

    IB API - get all expirys and strikes of a stock symbol

    Butterfly, did you read this thread? http://www.elitetrader.com/vb/showthread.php?s=&threadid=204724 I met the same problem. The old API version (maybe 2009) works but the 9.69 API doesn't work for me. How did you set the parameters of reqContractDetails( int reqId, const Contract...
  17. D

    IB API: contractDetailsEx

    I have the same problem. I use socket c++ API. When I call m_pClient->reqContractDetails(100, contract); only contractDetailsEnd() is fired. The contractDetails() just gives no response.
  18. D

    IB API - get all expirys and strikes of a stock symbol

    thanks Steve, good to know this.
  19. D

    IB API - get all expirys and strikes of a stock symbol

    I don't either. How did IB TWS do that? Is there a good algorithm to find all expiries and strikes without too much server communication?
  20. D

    IB API - get all expirys and strikes of a stock symbol

    Given a stock symbol, how to get all expirys and strikes of its option chain on IB API? I can't find such an API function yet.
Back
Top