Please find attached a full screenshot of the issue I encountered while attempting to retrieve 1-min

Please find attached a full screenshot of the issue I encountered while attempting to retrieve 1-minute OHLCV data for the RIC AMC.N using the Refinitiv Data Library for Python. The error message NA may indicate missing data permissions, despite a successful session connection.

User id -

S2739087@ed .ac.uk

Answers

  • @navamani.p

    Not all fields are applicable to all the asset classes. The user can create the historical pricing summaries object without specifying the fields parameter - to get a list of all the applicable fields.

    E.g.

    definition = historical_pricing.summaries.Definition(
        universe = "AMC.N", 
    	interval = Intervals.DAILY,
    	start = "2021-01-20",
    	end = "2021-02-03"
    )
    
    
    >>> response.data.df.columns
    Index(['TRDPRC_1', 'HIGH_1', 'LOW_1', 'ACVOL_UNS', 'OPEN_PRC', 'BID', 'ASK',
           'TRNOVR_UNS', 'VWAP', 'BLKCOUNT', 'BLKVOLUM', 'NUM_MOVES', 'TRD_STATUS',
           'SALTIM', 'VWAP_VOL'],
          dtype='object', name='AMC.N')
    >>>