The request
fields = ek.TR_Field('TR.HIGHPRICE(SDate=0,EDate=-23,Frq=M,Curn=Native,Adjusted=1,CALCMETHOD=HIGH)')
TSMonthlyHis, err = ek.get_data(WLList,fields)
# (WLList is a List of RICs; with the formula I want to get the monthly highs of all RICs during the last 24 months)
leads to some problematic output:
1) no data is returned for LSE AIM stocks (it seems to work for stocks on the main board of LSE)
2) the data is forcibly sorted by price, i.e. the output is like
AAPL.O 100
AAPL.O 102
....
In excel, this function will be put out in chronological order.
Since there is no date information included with it, I do not know how to deal with it
This leads to the next problem
3) ek.TR_Field('TR.HIGHPRICE(SDate=0,EDate=-23,Frq=M,Curn=Native,Adjusted=1,CALCMETHOD=HIGH).date') or .timestamp does not work
It appears as if besides output=value, no other output options are supported. Is that correct?
4) -----> how do I get this data in chronological order or with a date field attached to it so that I know what is what?
Thank you