When I make a call in Python such as the one below, I get OHLC quoted in yields:
df = ek.get_timeseries('AU3YT=RR', start_date = '2000-01-01', end_date = '2021-04-20')
However, in excel I can do a similar call, but get the price (and the yield if I want):
=@RHistory("AU3YT=RR","ASK.Timestamp;ASK.Close","INTERVAL:1D",,"TSREPEAT:NO CH:Fd",D4)
Is there a way to edit my python call to get bond price instead of yield?