I use this to get data through datastream:
'<BBJPY3M=>-.5*(OIJPY3M(IB) +OIJPY3M(IO))'
how would I get that same data using the lseg.data python library and it's get_history function:
df_history = ld.get_history(
universe=["GB10YT=RR"],
fields=["BID", "HIGH_1", "LOW_1", "OPEN_PRC"],
interval="1D",
start="2026-01-01",
end="2026-05-01"
)