Exporting number of shares to a MONITOR using Side by Side

Hi,

I would like to confirm if it is possible to use the Side by Side API to send the information of the number of shares of a Portfolio to a Monitor?

The number of shares are defined by the user and it would be allocated in a free text Column.

Thanks,

Daniel

Best Answer

  • @daniel.fernandez
    At the moment there are no public APIs that allow access to Portfolio Warehouse. For App Studio we currently have an API, which is currently in Beta and which allows a permissioned App Studio app to read user portfolios from Portfolio Warehouse with express consent required from the user. I don't believe this capability is on the roadmap for any other Eikon APIs. But what you're asking for is the write access to Portfolio Warehouse, which I'm quite confident is not even being considered at this time.

Answers

  • You can use SxS to launch a Monitor app and specify a set of items. The request is:

    {
    "command": "launch",
    "appId": "THOMSONREUTERS.REALTIME.THINMONITOR",
    "context": {
    "entities": [
    {
    "RIC": "C"
    },
    {
    "RIC": "9984.T"
    },
    {
    "RIC": "EUR="
    },
    {
    "RIC": ".HSI"
    }
    ]
    },
    "sessionToken": "token"
    }

    This will launch a Monitor app with subscribed items specified in the context.

    image

    You can also link to a Monitor app and then change its context. For more information, please refer to SxS Developer Guide.

  • I am wondering if this APP Studio API is going to be free access?

  • I am wondering if this APP Studio API is going to be free access?

  • It's free in the sense that we don't charge for it. But it's only available to App Studio program participants.