Refinitiv Data Library for Python

estimates.view_summary.historical_snapshots_periodic_measures_interim.Definition

Describes parameters to retrieve the estimates monthly historical snapshot value for last 12 months for all interim period estimates measures.

Module

refinitiv.data.content.estimates.view_summary.historical_snapshots_periodic_measures_interim

Syntax

estimates.view_summary.historical_snapshots_periodic_measures_interim.Definition(universe, package, use_field_names_in_headers, extended_params)

Parameters

Value Description Data type Optional Default value
universe Single instrument or list of instruments. str or list(str) No -
package Packages of the content that are subsets in terms of breadth (number of fields) and depth (amount of history) of the overall content set. Package No -
use_field_names_in_headers Boolean that indicates whether or not to add field names in the headers. bool Yes False
extended_params Specifies the parameters that will be merged with the request. dict Yes None

Returned value

estimates.view_summary.historical_snapshots_periodic_measures_interim.Definition object

Usage

The following example demonstrates how to create the definition to retrieve the estimates monthly historical snapshot value for last 12 months for all interim period estimates measures for BNPP.PA using basic package.

from refinitiv.data.content import estimates

definition = estimates.view_summary.historical_snapshots_periodic_measures_interim.Definition(
    universe="BNPP.PA",
    package=estimates.Package.BASIC
)

Package