Search results

  1. B

    IB C# API - Price options chain (interactive brokers)

    any update on what IB could do ?
  2. B

    Pulling historical emini quotes in C++

    what would you want to do it in C++ ? C++ is so hasbeen, time to go for a real new language, this 2015, not 1995
  3. B

    Storing trading strategy logic

    what a strange pointless thread,
  4. B

    IBPy beginner / any experience like this?

    This is a good blog, this guy understands the limits of IB APIs, and the pointless classes that come with it, 2rosy himself is another of those developers that promotes pointless APIs LOL
  5. B

    Need help - lost big money to prop. firm scam.

    sounds like you need to contact the SEC or FINRA first,
  6. B

    IB C# API - Price options chain (interactive brokers)

    the request is queued as a subscription on their server, the reply is asynchronous it might be possible to send ReqMktData for multiple contracts under the same clientID connection, but if that's not the case, then it's poor design and you will need to try a different data provider
  7. B

    IB C# API - Price options chain (interactive brokers)

    also check for the same clientID connection, if you can't you send multiple ReqMktData for different contracts, not as a list, but queued requests. I find it hard to believe that you would need to open a different clientID connection for each ReqMktData, that would be really poor design from IB...
  8. B

    Database organization

    I fail to see how quants at hedge funds and Investment Banks could manage all those data by themselves with low level tech when in reality they would focus more on strategies, since that's why they are being paid for. Also, I don't see the IT departments at those huge Investment Banks letting...
  9. B

    Database organization

    RDBMS are perfectly capable of handling time series, not sure why volpunter, in his infinite "wisdom", think only "KDB and other columnar specialized data bases" can handle those. The storage engine of such databases doesn't exclude them from handling SQL requests and create relations between...
  10. B

    Database organization

    exactly, anyone serious with trading doesn't bother with silly technical details like SSD or seek time or binary files, that's the trademark of basement amateurs who have nothing to build except hoarding data into Gb and Tb to make themselves more important than they are, since there is nothing...
  11. B

    Database organization

    you are hopeless, first you are taking technical advice from volpunter, someone who has been exposed several times for having no clue on programming design, coding and programming pattern, so you are already fucked right there. Take a strong RDBMS and structure properly your tables with a...
  12. B

    IB C# API - Price options chain (interactive brokers)

    in the IB API, you can send a list of objects in one ReqMktData if I am not mistaken, no need to open a "client connection" for each symbol you are trying to feed data from as for recommending quote service, I wouldn't know for sure, I am probably not the right person to ask that, above all if...
  13. B

    IB API: High latency of reqContractDetails() call for option chains

    those services might not provide a full list of options chain available, just a static view with a delayed PIT while IB might do a real-time scan from hundreds of sources Market Data is a funny business, not everyone is providing the same level of service and the same data. Part of the illusion...
  14. B

    IB C# API - Price options chain (interactive brokers)

    in IB, you can make the quote request (ReqMktData) reply as a loop, which means it will feed every few seconds data to whatever objects you have assigned for the ReqMktData. I am quoting from memory here, so check the IB API Programming Guide for more details. However, it would be better to use...
  15. B

    Language comparison

    that's it ? come on, you can do better than that :rofl:
  16. B

    Language comparison

    don't mind volpunter, he is our resident angry nutjob, thinks he knows everyone and eveything in the world, even when proved wrong. A total internet nutcase, and I am glad we have him here for our entertainment pleasure :)
  17. B

    Looking for an experienced IB API programmer

    Quite easy, I built already something similar for a Portfolio of securities with a particular investment theme. See my IB API thread to learn how to program with the IB API, quite easy
  18. B

    IB API: High latency of reqContractDetails() call for option chains

    it's slow because I assume the IB system has to "poll" for the availability of all those options with different strikes and maturity, and since the options market is quite fractured, I am surprised it can do all this in 50 sec, because that's amazingly fast for all the heavy work there is behind it.
  19. B

    Database organization

    is storing terabytes of useless tick data from the past really relevant for a winning strategy ? isn't the equivalent of reading dry tea leaves to predict the weather or better, the faith of humanity ? it seems a lot of good IT resources are being wasted on useless data for useless and clueless...
  20. B

    Ex. Galleon guy blows 100 million dollar hedge fund in 4 weeks.

    he is going to get sued, above all if the last trades he did proved to be completely senseless and amateurish
Back
Top