I'm able to snapshot STRIKE_PR2 in this way:
response = ld.content.pricing.Definition(universe='IWM1WO=R', fields='STRIKE_PR2').get_data()
However, I cannot get the historical intraday STRIKE_PR2 values:
response = ld.content.historical_pricing.events.Definition(
universe='IWM1WO=R',
start='2026-08-05T18:00:00Z',
end='2026-08-05T18:30:00Z',
fields='STRIKE_PR2'
).get_data()
Is this just the wrong way to fetch this data, or is this historical data simply not available?