Search results

  1. T

    Bars class

    even easier.... since tradelink.org is open and C# and supports time/tick/volume bars, just use classes in there that start with bar*.
  2. T

    Creating own trading system

    most flexiable trading platform, use tradelink.org as your open source trading base, quantlib for oss pricing, that way you get started w/everything right away but still can customize later.
  3. T

    which backtesting platform i can trust

    yeah... think you can disable w/out touching source, but any way you slice it... flexibility is tasty.
  4. T

    Data Feed collection...

    not sure what you mean by non institutional, but you can buy per symbol options contract data for any contract from tickdata.com
  5. T

    Data Feed collection...

    tradelink.org works with iqfeed and has a record feature
  6. T

    which backtesting platform i can trust

    yeah i use tradelink and contribute features back sometimes. it's a good platform esp now it's been around a while it seems to work well for most people. it's easy to get started, people are helpful on community as long as you're not a d@ck. in terms of looking at it, nothing special...
  7. T

    which backtesting platform i can trust

    syswizard is right though about nobody who has been around a while is going to steal your ideas.
  8. T

    which backtesting platform i can trust

    not sure I agree. if you want something added to multicharts, good luck with that. no problem with open source.
  9. T

    which backtesting platform i can trust

    you should look at tradelink, it is comparable platform yet open source so you know your strategies are not being shipped anywhere.
  10. T

    Does anybody use the common indicators in their algo?

    all the ones you mention are used
  11. T

    Programming for idiots

    this is better than a wizard and unlike TT's xtrader it's broker neutral http://www.youtube.com/watch?feature=player_embedded&v=cDRj2VR_osI
  12. T

    Reasonable OMS for IB

    i just saw another thread from you presumably about same thing since you're looking at open source, tradelink is more popular than all the open source platforms mentioned here put together.
  13. T

    Best multi-asset broker agnostic software

    may not fit exactly off the shelf, but i use tradelink.org to do some of this. it's definately multi asset and broker neutral. for having different position views by strategy, the way to do this would be to add some new quotopia models/views that filter positions just to that strategy...
  14. T

    Unsupported Ninjatrader Programming

    imho google open source trading
  15. T

    AmiBroker or Ninjatrader to Replace StrategyDesk ?

    tradelink is good with ib
  16. T

    Looking for a Developer/Programmer to create a program for mutual use.

    you can do this in tradelink.org don't even need a programmer
  17. T

    Unsupported Ninjatrader Programming

    sounds like you better off targeting an open source platform in c# for this.
  18. T

    simple program

    in tradelink it would be something like : public class MyStrategy { public void GotTick(Tick k) { if (k.isTrade && k.hasAsk && (k.trade==100) sendorder(new BuyLimit(k.symbol,k.ask,k.AskSize)); } }
  19. T

    Das Trader Api

    works pretty well
  20. T

    Co-location/ server maintenance API integration

    nothing is perfect, but if you obfuscate the binary and include a mechanism where it can only run on hardcoded (or website listed) mac addresses, that will make it difficult to move.
Back
Top