Hello All and @Jirapongse
- Need an assistance can you help us to provide sample on how to retrieve historical data with specific Strike Price like 100, 101, 120 of '0#TY+
Tried the formula below but we are getting an error and also how to retrieve historicald data for expired option like TYZ24^2
import refinitiv.data as rd
from refinitiv.data.discovery import Chain
import datetime
from datetime import date
rd.open_session()
df = rd.get_history(
universe = Chain('0#TY+'),
fields = ['BID','ASK'],
end = '2025-11-10', interval='1D', count=100,)
display(df)