For a deeper look into our DataScope Select SOAP API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
3 0 0 1

Does the .Net API FuturesAndOptionsSearch support multiple id's in the same request?

dss-rest-apidatascope-selectdss.net
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

1 Answer

Upvotes
Accepted
23k 22 9 14

Hello @roroian

DSS request supports single indentifier as a parameter to FuturesAndOptionsSearch.

One can verify the complete spec on any request via

Datascope Reqference Tree

However,

The identifier can be wildcarted, for example:

{
    "SearchRequest": {
        "FileCodes": null,
        "CurrencyCodes": null,
        "ExchangeCodes": null,
        "StrikePrice": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Search.NumericRangeComparison",
            "From": 85,
            "To": 88
        },
        "ExpirationDate": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Search.DateValueComparison",
            "ComparisonOperator": "GreaterThanEquals",
            "Value": "2016-12-31T00:00:00.000Z"
        },
        "IdentifierType": "Ric",
        "Identifier": "IB*"
    }
}

Would yield resulting rics starting with IB*, such as

...
{
            "Identifier": "IBMM172008500.U",
...
            "Identifier": "IBMA172008500.U",
...  

If this does not work for your requirements, you may want to look at HistoricalBulkSearch and HistoricalCriteriaSearch, that may be a better fit.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea