how to get field name for TR.F.SGAASR?

Options
df_SGA,err = ek.get_data(['6902.T'],
['TR.F.SGAASR','TR.F.SGAASR.name','TR.F.SGAASR.fperiod','TR.CompanyName'],
{'Curn':'JPY','Scale': 6 ,'Period':'FY0','Frq':'FY','SDate':'0','EDate':'-30'})
df_SGA


returns total selling, general and admin expenses but also break down of the item,

how can I get the name of alll the fields?

tried TR.F.SGAASR.name, TR.F.SGAASR.fieldname, TR.F.SGAASR.name.*** but nothing works...

Tagged:

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    @wenjun.xia

    Thank you for the exaplanation.

    The field could be TR.F.SGAASR.LIName.

    df_SGA, err = ek.get_data(['6902.T'],
                             ['TR.F.SGAASR','TR.F.SGAASR.LIName','TR.F.SGAASR.fperiod','TR.CompanyName'],
                             {'Curn':'JPY','Scale': 6 ,'Period':'FY0','Frq':'FY','SDate':'0','EDate':'-30'})
    df_SGA

    1646640532495.png

Answers