Where is the Activetick API document?

Discussion in 'Data Sets and Feeds' started by hardywu, Jul 9, 2015.

  1. hardywu

    hardywu

    I eventually kind of workaround this issue by merge `Requestor` and `Streamer` classes into a single one. I guess two existing instances of these classes may conflict with each other.
     
    #21     Jul 26, 2015
  2. @hardywu

    The C++ example included with SDK uses multiple inheritance for the Streamer class:

    class Requestor : public ActiveTickServerRequestor
    {
    public:
    Requestor(const APISession& session);
    virtual ~Requestor(void);
    ..
    ..


    class Streamer : public ActiveTickStreamListener, public Requestor
    {
    public:
    Streamer(const APISession& session);
    virtual ~Streamer(void);
    ..
    ..

    This is a very typical C++ inheritance case, in which your Streamer object can send requests to the server AND also receiving streaming updates.

    As always, you can send your questions related to API directly to our support at support@activetick.com
     
    #22     Jul 29, 2015
  3. How is it looking for the release of tick-level emini futures data ?
    Anxious to get started....
     
    #23     Jul 29, 2015
  4. @syswizard We're a bit behind but making good progress. Our first beta release should go live within 1-2 weeks. You can request to be added to our notification list if you email support at activetick.com.
     
    #24     Jul 30, 2015
  5. cjbuckley4

    cjbuckley4

    @activetick will this include L2 or is that going to be done through activeticker?
     
    #25     Jul 30, 2015
  6. Which Emini symbols will be available in beta ?
     
    #26     Jul 30, 2015
  7. hardywu

    hardywu

    @activetick
    I can confirm that, without modify the source code, the compiled binary is working without such issue in linux system. So the error comes from the shared library `libActiveTickServerAPI.dylib` for Mac OS X system. My guess would be that the `atfeed-cppsdk-osx.i386.tar.gz` SDK is casting memory errors under 64-bit Mac System.
     
    #27     Aug 4, 2015