An open source software that can handle data feed from eSignal,IQFeed etc

Discussion in 'App Development' started by Buccio, Jun 6, 2016.

  1. Buccio

    Buccio

    I want to use an open source software that can handle data feed from eSignal,IQFeed etc.
    I know tradelink, but it requires C# i.e. Windows.
    I like a croos-platform package.
    Is there such?
     
  2. IAS_LLC

    IAS_LLC

    What do you mean by "handle"? What are you trying to pipe the data in to?
     
  3. There was, Tradelink. Code is available, but support does not exist. I use it with IQ Feed and Sterling API.
     
  4. Buccio

    Buccio

    I'm planning to pipe the data in to a C++ or Java code of trading strategy that I will create.
    I think it's convenient to use a common platform
    than I set up systems that can communicate to each eSignal or IQFeed
    independently.

    Isn't it dangerous to use such a software?
     
  5. IAS_LLC

    IAS_LLC

    If you know C++, why not just code it yourself? Its not that hard. The contents of candidate feeds is mostly the same. Just make a decoder ring that packs the market it data into a common struct that you strategy uses. That's what I've done, but the only feed I'm set up to handle right now is NxCore. I plan on expanding it, once the need presents itself.
     
  6. Buccio

    Buccio

    Ah,circumstances are like that! I see.
    Then I'll try to code it by myself.
    Thank you for an advice.