Foreign currency position – Deutschmark

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/fc-position-dem

API Data Enquiry

Output Fields (JSON) Swagger Format
Name Type Unit Of Measure Description
end_of_monthDateAs at end of
Year and Month in ISO format yyyy-mm, For example, 1997-01
spot_assetsNumberHK$ millionDeutschmark2
Spot assets
forward_purchasesNumberHK$ millionDeutschmark2
Forward purchases
spot_liabilitiesNumberHK$ millionDeutschmark2
Spot liabilities
forward_salesNumberHK$ millionDeutschmark2
Forward sales
net_spot_positionNumberHK$ millionDeutschmark2
Net spot position
net_forward_positionNumberHK$ millionDeutschmark2
Net forward position
open_positionNumberHK$ millionDeutschmark2
Open position

Footnotes:

1. As from July 1990, foreign currency positions are redefined to exclude structural assets and liabilities (including investment in fixed assets and premises, overseas branch capital, investments in overseas subsidiaries and related companies and loan capital).
2. As from January 1999, positions in Deutschmark are reported under Euro.

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/fc-position-dem?offset=0',
dataType:'json',
success:function(data){
alert('results found:'+ data.result.datasize)
}
});

Python Example

import urllib.request
url = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/banking/fc-position-dem?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.