How to find the corresponding FeedName/FeedAlias for a specified Data Feed Source (e.g. "IDN") in di

Hello, How to find the corresponding FeedName/FeedAlias for a specified Data Feed Source (e.g. "IDN") in different Eikon Desktop Environments? ------------------- For example, On Eikon A, feedname "IDN_RDF" and feedalias "A" indicate the Data Feed Source "IDN". However on Eikon B, feedname "SIT_IDN_RDF" and feedalias "D" indicate the Data Feed Source "IDN". ------------------- Many thanks in advance. Bo

Best Answer

  • I can't find the way retreive FeedName/FeedAlias via JET api. JET doesn't provide functions to retrieve this information.

    It only provides the way to set it in JET.Quotes.

    // DataFeed
    JET.Quotes.create()
    .rics("JPY=")
    .formattedFields("CF_LAST")
    .onUpdate(function(){})
    .feedName("IDN_RDF")
    .start();

    // KeyLetter
    JET.Quotes.create()
    .rics("JPY=")
    .formattedFields("CF_LAST")
    .onUpdate(function () {})
    .feedAlias("X")
    .start();