I am currently trying to query historical instruments on the Hong Kong exchange. I am using the following query:
Search/HistoricalCriteriaSearch
{
"Request": {
"RicPattern": ".HK$",
"Range": {
"Start": "2010-11-07T00:00:00.000Z",
"End": "2010-11-08T00:00:00.000Z"
}
}
}
This returns to me a bunch of duplicate values for each stock like
'0001.HK',
'0001.HK',
'0001.HK',
'0001os.HK',
'0001os.HK',
'0001stat.HK',
'0001ta.HK'
The duplicates contain no real data, only the first instrument is correct. How best can I filter these invalid results in HistoricalCriteriaSearch?
Thanks