I know I can get snapshots of Highs and Lows with code such as the below, but is it possile to get this historically?
df, err = ek.get_data(
    instruments = [
        'VOD.L'
    ],
    fields = [
        'TR.Price52WeekHighDate',
        'TR.Price52WeekHigh',
        'TR.Price52WeekLow',
        'TR.Price52WeekLowDate',
        'YRHIGH',
        'YRLOW',
        'YRHIGHDAT',
        'YRLOWDAT'
    ]
)
display(df)