How to get Total Revenue with Dates?

imageI am trying to get the FY2019 Revenue data for the below list of stocks. I used the following code.

data,er = ek.get_data(ric_code, ['TR.Revenue(SDate=2019-05-03,EDate=2020-02-07).Date',

'TR.Revenue'], {'SDate':'2019-05-01','EDate':'2020-08-04'})


I am getting NA values back.

Can you also direct me to the docs/tutorials where I can learn more on how to pull fundamental data for the stock listings.


["UNH.N, CI.N, JPM.N, ANTM.N, BAC.N, WFC.N, C.N, HUM.N, AIG.N, PGR.N, ALL.N, CB.N, TRV.N, COF.N, USB.N, HIG.N, FLR.N, PNC.N, BK.N, RGA.N, SYF.N, TFC.N, DTE.N, CNP.N, UNM.N, VST.N, STT.N, DFS.N, SRE.N, OKE.N, AIZ.N, RE.N, WRB.N, PPL.N, VOYA.N, FITB.O, UGI.N, ALLY.N, CFG.N, KEY.N, MTB.N, RF.N, ACGL.O, ATH.N, EVRG.N, AXS.N, KMPR.N, HBAN.O, RNR.N, FRC.N, CMA.N, SIVB.O, ZION.O, GEL.N, PFG.O, FHN.N, PBCT.O, CIT.N, TCF.N, EWBC.O, WTFC.O, SBNY.O, WBS.N, WAL.N, TCBI.O, PNFP.O, NYCB.N, OZK.O, AGO.N, BKU.N, JRVR.O, FHB.O, FBK.N, APLT.O, RAPT.O"]

Best Answer

  • Hi @pyquant

    You can use "Data Item Browser" to explore the fields.

    Please review this tutorial for "Data Item Browser" tutorial(scroll down to Data Item Browser section)


    image

    I think maybe you can use TR.RevenueActValue field.


    rics = ["UNH.N, CI.N, JPM.N, ANTM.N, BAC.N, WFC.N, C.N, HUM.N, AIG.N, PGR.N,ALL.N, CB.N, TRV.N, COF.N, USB.N,\
    HIG.N, FLR.N, PNC.N, BK.N, RGA.N, SYF.N, TFC.N, DTE.N, CNP.N, UNM.N, VST.N, STT.N, DFS.N, SRE.N, OKE.N, AIZ.N,\
    RE.N, WRB.N, PPL.N, VOYA.N, FITB.O, UGI.N, ALLY.N, CFG.N, KEY.N, MTB.N, RF.N, ACGL.O, ATH.N, EVRG.N, AXS.N, KMPR.N,\
    HBAN.O, RNR.N, FRC.N, CMA.N, SIVB.O, ZION.O, GEL.N, PFG.O, FHN.N, PBCT.O, CIT.N, TCF.N, EWBC.O, WTFC.O, SBNY.O,\
    WBS.N, WAL.N, TCBI.O, PNFP.O, NYCB.N, OZK.O, AGO.N, BKU.N, JRVR.O, FHB.O, FBK.N, APLT.O, RAPT.O"]

    fields = ['TR.RevenueActValue.Date','TR.RevenueActValue.periodenddate','TR.RevenueActValue']


    data,err = ek.get_data(rics, fields, {'Frq':'FY','Period':'FY2019'})
    data