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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
3 0 1 2

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 512.0 KiB each and 1.0 MiB total.

@roroian, thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text beneath the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question. Thanks, AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
32.2k 40 11 20

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 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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