How to request for TICKER symbol as part of response for delayed quote request in EMA Java API?
I am calling TREP EMA API to get option chain for a given underlying security by passing RIC code of the underlying security (Ex: "0#IBM*.U for IBM chain). On the chain response, I am getting all constituents as a list with RIC code of each constituent. Then I am making a second batch call to TREP to get specific fields like strike price, bid, ask etc. for all of the chain constituents. My requirement is to get the TICKER symbol of the option as part of this batch response. Is there a way to request for TICKER symbol along with strike price, bid an ask for each of the option securities?
Find more posts tagged with
Hi @Gurpreet, Thanks for the update, but if I understand correctly IBMA102011500.U is the RIC code of this Option security right? I need to get the TICKER symbol of the Option security. Is there a field within the response that gives me the ticker symbol?
Yes, the IBMA102011500.U is the RIC or ticker for this Option security. If you want to get the underlying security, try FID 1026, or 3814.
FieldEntry fid="1026" name="STOCK_RIC" dataType="Ascii" value="IBM"
FieldEntry fid="3814" name="UNDERLYING" dataType="Ascii" value="IBM"
For content questions, please raise a Content query from MyRefinitiv. Select 'I need help understanding content within the product' and appropriate product e.g. 'Thomson Reuters Elektron Real-Time'.
You can use the fields: BKGD_REF, MNEMONIC and PROV_SYMB to get the ticker symbol. See the field definitions file or use Data Model Discovery tool from the developers portal.
Hi @Sreedhar.Kankanala the name of the instrument you subscribed to is available in the name method on the refresh or update object in the callback.
E.g:
returns:
Is this what you are looking for?