Hello,
I have downloaded the yield curve of a bond benchmark using the following
import refinitiv.data.eikon as ek
curve = ek.get_data('0#ITXZ=R',['MATUR_DATE','PRIMACT_1'])
Then I modify the yield curve by applying a parallel shift of 25bp via:
curve['Shifted_Rate'] = curve['PRIMACT_1ì] + 0.25
Now I want to reprice a bond using the shifted yield curve.
How can I achieve this using Refinitiv built-in functions?
Many thanks in advance.