This repository contains historical financial data for currency pairs, specifically AUD/USD exchange rates, organized by year.
The data is organized in directories by year (2019-2025), with each directory containing monthly JSON files. Each file contains daily exchange rate data for a specific currency pair.
[CURRENCY_PAIR]_[YEAR]_[MONTH]_1day.json
Example: AUDUSD_2019_01_1day.json contains AUD/USD exchange rates for January 2019.
Each JSON file contains:
-
meta: Metadata about the currency pairsymbol: Currency pair (e.g., "AUD/USD")interval: Data interval ("1day")currency_base: Base currency ("Australian Dollar")currency_quote: Quote currency ("US Dollar")type: Type of currency pair ("Physical Currency")
-
values: Array of daily exchange rate datadatetime: Date of the exchange rateopen: Opening ratehigh: Highest rate during the daylow: Lowest rate during the dayclose: Closing rate
{
"meta": {
"symbol": "AUD/USD",
"interval": "1day",
"currency_base": "Australian Dollar",
"currency_quote": "US Dollar",
"type": "Physical Currency"
},
"values": [
{
"datetime": "2019-01-30",
"open": "0.71550000",
"high": "0.72745001",
"low": "0.71490002",
"close": "0.72460002"
}
]
}skp-data/
├── 2019/
│ ├── AUDUSD_2019_01_1day.json
│ ├── AUDUSD_2019_02_1day.json
│ └── ...
├── 2020/
├── 2021/
├── 2022/
├── 2023/
├── 2024/
└── 2025/
This data can be used for:
- Financial analysis
- Backtesting trading strategies
- Research purposes
- Educational purposes
Data in this repository is collected from financial market sources and organized for easy access and analysis.
This data is provided for educational and research purposes. Please check the terms of use of the original data source for any commercial use.