Python Eikon API to Reuters Stock Screen

Hi, As part of my portfolio optimization, I test out various stocks and optimize their weights to have max returns for min risk. I can have these list of stocks as individual buttons, which when clicked I would like to provide key metrics of them. Rather than trying to download the details and provide them, which is no value add from my side, I would like to access Eikon's stocks screen, where I pass the stock instrument symbol and have the same screen (like in Eikon) pop up through the API. Makes my life easy and would be able to access all the wealth of information from Eikon at the portfolio's fingertips, rather than going back into Eikon and typing the stock symbol. Is there anyway I can access this through Eikon API.

Thanks in advance.

Regards

Leben

Best Answer

  • chavalit-jintamalit
    Answer ✓

    Hi @lebenjohnson.mannariat

    You can use Side by Side Integration API to send command to Eikon to open a stock screen.

    You can find the information here.

    This is my sample command to launch a page for IBM.N symbol.

    {
    "command": "launch",
    "appId": "GxHOME",
    "context": "{\n \"entities\": [ { \"RIC\": \"IBM.N\" } ]\n}",
    "sessionToken": "<your Side by Side Integration API session token"
    }

    And I got this page pop up in my Eikon Desktop.

    image

Answers