Hello, I'm using the following function to download oil production data and other variables. I’ve noticed that sometimes Q4 information is missing, or it differs significantly from the quarterly reports. Could you please explain how I can fix or reconcile these differences?
import refinitiv.data as dl
fundamental_and_reference.Definition( universe = tickers_list, fields = ["TR.F.CrudeOilProdPerDayAvgTot.Date", "TR.F.TotRevenue", "TR.F.NatGasProdPerDayAvgTot", "TR.F.CrudeOilProdPerDayAvgTot", "TR.F.OpExpnTot", "TR.F.SGATot", "TR.F.InvstLT", "TR.F.DeprInCOGS","TR.F.CashCashEquivTot","TR.F.DebtTot","TR.F.ComShrOutsTot"], parameters = {"SDate": "2005-01-01", "EDate": "0", "FRQ": "FQ", "Period": "FQ0"}, extended_params = {"output":"Col,T|Va,Row,In,DATE|"}).get_data()