Main Content

endofday

Request end-of-day data from Refinitiv DataScope Select

Since R2023a

    Description

    example

    d = endofday(c,sec,fields) returns end-of-day data using:

    • DataScope Select object created by the datascopeSelect function

    • Refinitiv™ security list information (for example, Reuters® Instrument Codes, or RICs)

    • Refinitiv end-of-day fields

    Examples

    collapse all

    Use a DataScope Select connection to retrieve end-of-day data for one security.

    Create a Refinitiv DataScope Select connection by using a username and password. The appearance of the connection object c in the MATLAB® workspace indicates a successful connection.

    d = datascopeSelect("username","password")

    Retrieve end-of-day data for the ABDE.O security. Using the endofday function, retrieve the ask price and previous close price.

    sec = ["ABDE.O","Ric"];
    fields = ["Ask Price","Previous Close Price"];
    d = endofday(c,sec,fields)
        d =
      
          1x4 table
      
            IdentifierType    Identifier    Ask Price    Previous Close Price
            ______________    __________    ________    __________________
      
                 Ric            ABDE.O       163.66           170.03 

    Input Arguments

    collapse all

    Refinitiv DataScope Select connection, specified as a connection object created with datascopeSelect.

    Security, specified as an N-by-2 string array or cell array of character vectors. The first column of the string array or cell array identifies the security. The second column identifies the type of security (for example, Reuters Instrument Code, or RIC).

    Example: ["IBM.N","Ric"]

    Fields, specified as a string array or cell array of character vectors. Specify Refinitiv end-of-day fields to retrieve end-of-day data. You can search for fields in MyRefinitiv.

    Example: ["Ask Price","Previous Close Price"]

    Output Arguments

    collapse all

    End-of-day data, returned as a table with these variables:

    • IdentifierType

    • Identifier

    • Field names, specified in the fields input argument

    Version History

    Introduced in R2023a