import lseg.data as ld
import pandas as pd
ld.open_session()
df_cds = ld.get_history(
universe='.VIX',
fields=['TR.ClosePrice'],
interval='1D',
start='2026-01-01',
end='2050-12-31',
count=5
)
pd.set_option('display.max_rows', None)
display(df_cds)
It gives NULL values when running in Python. How can I make this work in Python?