Refinitiv Data Library for Python

RowHeaders

The list of RowHeaders parameters

Name Value
DATE "date"

Usage

The following example demonstrates how to create a historical pricing events definition object for LSEG.L which retrieves the 20 most recent events for "trade" event type only.

from refinitiv.data.content import fundamental_and_reference, RowHeaders

definition = fundamental_and_reference.Definition(
    universe="IBM.N",
    fields=["TR.Revenue"],
    row_headers=RowHeaders.DATE,
)