How extract historical Shanghai-Hong Kong connect northbound quota values from Eikon API
Use .NQUOTA.SH RIC. E.g. to retrieve the most recent daily quota limit and balance (scaled to 1000 CNY) use
ek.get_data('.NQUOTA.SH',['QUTA_LMT','QUTA_REM'])
To get the timeseries of daily quota balance for the last 90 days use
ek.get_timeseries('.NQUOTA.SH', start_date = dt.timedelta(-90), end_date = dt.datetime.today())
Thanks. Is there a way to extract more granular information, like money flow, buy amount and etc., as shown in the picture. And if there is a way to check the data for individual stocks?