Please check we are getting error using the below code.

Please check we are getting error using the below code.

 

import refinitiv.data as rd

rd.open_session()

df = rd.get_data(

universe = ['.JTOPI'],

fields = ['TR.IndexJLConstituentRIC.change']

)

 

display(df)

 

Answers

  • @Vikram_2910

    The field TR.IndexJLConstituentRIC.change is not applicable to this RIC.

    rd.get_data(universe = ['.JTOPI'], fields = ['TR.IndexJLConstituentRIC'])
    
  • Jirapongse
    Jirapongse ✭✭✭✭✭

    @Vikram_2910

    I found that the field names may be changed to the followings.

    df = ld.get_data(
        universe = [".JTOPI"],
        fields = ["TR.IndexJLConstituentChangeDate","TR.IndexJLConstituentituentChange"]
    )
    df