Hello!
I'm working with the LSEG Symbology API and running into an issue when trying to resolve the ODAX instrument using the ExchangeTicker
identifier type. The same approach works fine for FDAX, but with ODAX, the request times out.
Here's a simplified version of the request body I'm using:
var requestBody = new
{
from = new[]
{
new
{
identifierTypes = new[] { "ExchangeTicker" },
values = new[] { instrumentCode }
}
},
to = new[]
{
new
{
identifierTypes = new[] { "RIC" }
}
},
type = "auto",
reference = new[] { "name", "status", "PermID" },
filter = new { status = "active" }
};
The instrumentCode
is dynamically passed in, e.g., "FDAX"
works perfectly, but "ODAX"
causes the request to time out.
Am I missing something specific about how options like ODAX should be structured in the Symbology API? Is there a limitation in resolving option instruments this way, or does it require a different identifier type or additional metadata?
Any insights or examples would be greatly appreciated.
Thanks!