Search results

  1. T

    Algorithmic Paper Trading

    assuming you have a market data feed, tradelink can papertrade that feed. iqfeed starts around $70/month for retail i believe. tradelink not java or python though, although there are supposedly decent .net intepreters for python. maybe if you wrote your idea in two languages already you...
  2. T

    Algorithmic Paper Trading

    tradelink
  3. T

    Get trading tick using IB API

    yeah with IB volume calculated from ticks is not going to be correct in the sense of matching what is actually occuring in aggregate. if you need tick by tick you should use another feed for the market data and just execute through ib. tradelink.org code contains examples of this if you...
  4. T

    TDAmeritrade ripping us off?

    jeff fox-worthy... "you may be a trader when" : * your periodic daily loss reminds you of an xfiles episode * you're certain your b/d is shilling for your counter party * your dictionary is missing pages for coincidence and randomness * the GS quarterly report is pinned to your...
  5. T

    Writing Robust Trading Code

    the second part of what you say is 100% correct for ET. the first part is ok but just remove the apology part.
  6. T

    Writing Robust Trading Code

    dear missed connection, i'm not sure who you are but i'm sorry if i offended you. seriously....it's just the elitetrader spirit.... there's not much eliteness or trading involved, really. that is for elsewhere
  7. T

    Writing Robust Trading Code

    even though trolls are fantasy they do have value in the material realm.
  8. T

    Writing Robust Trading Code

    hm.... well the "average" feeds you mention are pretty good. not sure how many problems with this, i would imagine that most of your problems come from your first #1 and #2. this is why people running discretionary programs often trade in an office and/or run their programs from the...
  9. T

    From IB TWS to

    1245 is right, that is why most firms operate on their shared infrastructure. however there is a big difference between them. sterling shared infrastructure also has very low message per second limitations (orders per second + cancels per second <= 20), so if you're planning on doing a lot...
  10. T

    From IB TWS to

    sterling is pretty good but their feed sucks. using it with a seperate feed is recommended, unless you can get on a prop shop that has dedicated sterling servers (which is not as good as dedicated feed, but better than shared servers most firms have access to).
  11. T

    anybody know how to write a feed handler?

    i think you just answered your own question.
  12. T

    anybody know how to write a feed handler?

    he can't simulate being in a colo environment running a desktop version of TT trader though. :)
  13. T

    anybody know how to write a feed handler?

    99% sure zeromq (and prob rabbit mq) support multicast patterns and should be high performance enough to migrate to your real data, so you could simulate with those using fake or small data sets and then just switch out this part when you go colo.
  14. T

    Why FX charting platforms blow away everything else?

    that said there are lots of charting options out there competing for your dollar, I'm not a chart person but I bet you can find something close.
  15. T

    Why FX charting platforms blow away everything else?

    probably best general answer is a business incentive risk/reward thing.... FX is not regulated/centralized, so market makers make more on spreads and is generally more profitable than business models based on clearinghouses like equities/futures/options are. (plus FX has more capacity than...
  16. T

    Cyborg like conditional execution

    ah, you mean like once you generate a entry order than using an algo to update the price of the order. you can do that in most platforms, if you understand the algos you are using.
  17. T

    Trading platform that has market replay?

    i was using tick as in tick data, eg timesales + some level of depth. a tick bar is still a bar, although for retail platforms that don't natively support tickdata sometimes they will try to back in some of the same data as a work around and to be able to check a marketing box that they have...
  18. T

    Cyborg like conditional execution

    not familiar with cyborg. order execution can only be conditional based on the order types supported by the exchange (and broker/clearing) you're executing through (eg stop/limit conditional on price, time for IOC orders, etc for other custom types). if you mean making an order...
  19. T

    Trading platform that has market replay?

    bars don't exist in the market. only sales and quote data (aka market or tick data) does. bars simplify working with market data, both for users who are not data sensitive and for platform creators who serve only this audience. outside of a software simulator you can't actually get...
  20. T

    Trading platform that has market replay?

    bar replay and market replay are different
Back
Top