I have python list of dictionaries as below. I would like to find max value of 'high'
field.
ohlc = [
{
'open' : 100,
'high' : 105,
'low' : 95,
'close' : 103
},
{
'open' : 102,
'high' : 108,
'low' : 101,
'close' : 105
}
{
'open' : 101,
'high' : 106,
'low' : 100,
'close' : 105
}
]
In this case function should return high
= 108.