Skip to content

seruputkopipait/skp-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SKP Data Repository

This repository contains historical financial data for currency pairs, specifically AUD/USD exchange rates, organized by year.

Data Structure

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.

File Naming Convention

[CURRENCY_PAIR]_[YEAR]_[MONTH]_1day.json

Example: AUDUSD_2019_01_1day.json contains AUD/USD exchange rates for January 2019.

Data Format

Each JSON file contains:

  • meta: Metadata about the currency pair

    • symbol: 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 data

    • datetime: Date of the exchange rate
    • open: Opening rate
    • high: Highest rate during the day
    • low: Lowest rate during the day
    • close: Closing rate

Example Data

{
  "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"
    }
  ]
}

Repository Structure

skp-data/
├── 2019/
│   ├── AUDUSD_2019_01_1day.json
│   ├── AUDUSD_2019_02_1day.json
│   └── ...
├── 2020/
├── 2021/
├── 2022/
├── 2023/
├── 2024/
└── 2025/

Usage

This data can be used for:

  • Financial analysis
  • Backtesting trading strategies
  • Research purposes
  • Educational purposes

Source

Data in this repository is collected from financial market sources and organized for easy access and analysis.

License

This data is provided for educational and research purposes. Please check the terms of use of the original data source for any commercial use.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •