TradingHours Library
Project description
TradingHours.com Python Library
TradingHours.com licenses Market Holidays and Trading Hours data for over 1000 exchanges and trading venues around the world. This library allows clients to easily integrate our market holidays and trading hours data into existing applications. This packages downlods all available data from TradingHours.com and then allows you to work with the data locally.
About the Data
We support over 1000 exchanges and trading venues, including all major currencies. See all supported markets.
Our comprehensive data covers:
- Market holidays
- Trading hours
- Half-days / Irregular schedules
- Non-settlement dates
- Currency holidays
- Detailed trading phases
How is data collected?
Our global research team collects and verifies trading hours and market holidays using exclusively primary sources. Manual and automated checks ensure the highest degree of accuracy and reliability.
Once data is collected, we then continually monitor for changes to ensure the data is always up-to-date. Data is updated daily.
Getting Started
Just install tradinghours
with pip and set your API key. Click here to get your key.
pip install tradinghours
export TRADINGHOURS_TOKEN=<your-key-goes-here>
See advanced configuration options.
Contents
Importing Data
You just need to run the following command to download and import official data. Remember that you need to have a valid TRADINGHOURS_TOKEN environment variable.
$ tradinghours import
Downloading..... (0.824s)
Ingesting.......................... (12.066s)
You can then check current data status with the following subcommand:
$ tradinghours status --extended
Collecting timestamps.... (0.213s)
TradingHours Data Status:
Remote Timestamp: Thu Oct 26 02:08:17 2023
Local Timestamp: Thu Oct 26 03:12:40 2023
Reading local data.... (0.426s)
Extended Information:
Currencies count: 30
Markets count: 1012
Markets
View Available Markets
from tradinghours import Market
for market in Market.list_all()[:3]:
print(market)
>>> Market: AE.ADX Abu Dhabi Securities Exchange Asia/Dubai
Market: AE.DFM Dubai Financial Market Asia/Dubai
Market: AE.DGCX Dubai Gold & Commodities Exchange Asia/Dubai
Get A Specific Market
from tradinghours import Market
# Get by either FinID or MIC
market = Market.get('US.NYSE')
market = Market.get('XNYS')
# Easily see what attributes an object has
# (You can call this on any object)
market.pprint()
>>> {'acronym': 'NYSE',
'asset_type': 'Securities',
'country_code': 'US',
'exchange_name': 'New York Stock Exchange',
'fin_id': 'US.NYSE',
'market_name': 'Canonical',
'memo': 'Canonical',
'mic': 'XNYS',
'permanently_closed': None,
'replaced_by': None,
'security_group': None,
'timezone': 'America/New_York',
'weekend_definition': 'Sat-Sun'}
If a market is marked "permanently closed" it may be replaced or superseded by another market.
By default, the newer market will be returned automatically. You can still retrieve the
older market object for historical analysis by using the follow=False
parameter.
from tradinghours import Market
# AR.BCBA is permanently closed and replaced by AR.BYMA
market = Market.get('AR.BCBA')
original = Market.get('AR.BCBA', follow=False)
print(f'{market.fin_id} replaced by {market.replaced_by} on {market.permanently_closed}')
print(f'{original.fin_id} replaced by {original.replaced_by} on {original.permanently_closed}')
>>> AR.BYMA replaced by None on None
AR.BCBA replaced by AR.BYMA on 2017-04-17
Market Holidays
from tradinghours import Market
market = Market.get('US.NYSE')
holidays = market.list_holidays("2024-01-01", "2024-12-31")
for holiday in holidays[:3]:
print(holiday)
>>> MarketHoliday: US.NYSE 2024-01-01 New Year's Day
MarketHoliday: US.NYSE 2024-01-15 Birthday of Martin Luther King, Jr
MarketHoliday: US.NYSE 2024-02-19 Washington's Birthday
Trading Hours
from tradinghours import Market
market = Market.get('XNYS')
for phase in list(market.generate_schedules("2023-09-01", "2023-09-30"))[:3]:
print(phase)
>>> Phase: 2023-09-01 04:00:00-04:00 - 2023-09-01 09:30:00-04:00 Pre-Trading Session
Phase: 2023-09-01 06:30:00-04:00 - 2023-09-01 09:30:00-04:00 Pre-Open
Phase: 2023-09-01 09:30:00-04:00 - 2023-09-01 09:30:00-04:00 Call Auction
Currencies
List Currencies
from tradinghours import Currency
for currency in Currency.list_all()[:3]:
print(currency)
>>> Currency: AUD Australian Dollar
Currency: BRL Brazilian Real
Currency: CAD Canadian Dollar
Currency Holidays
from tradinghours import Currency
currency = Currency.get('AUD')
for holiday in currency.list_holidays("2023-06-01", "2023-12-31")[:3]:
print(holiday)
>>> CurrencyHoliday: AUD 2023-06-12 King's Birthday
CurrencyHoliday: AUD 2023-10-02 Labor Day
CurrencyHoliday: AUD 2023-12-25 Christmas Day
Advanced
Optional Advanced Configuration
By default, the library uses local file storage. Optionally you can configure the library to use an SQL store. You can adjust settings using a tradinghours.ini file on the current working directory.
Here is a sample configuration file using file system storage:
[api]
token = YOUR-TOKEN-HERE
[data]
use_db = False
local_dir = /srv/tradinghours/local
remote_dir = /srv/tradinghours/remote
And here you can see one using a local SQL Alchemy database. Note that you can use any valid Database URL:
[api]
token = YOUR-TOKEN-HERE
[data]
use_db = True
db_url = sqlite:///tradinghours.db
Database Schema
In case you would like to directly access the tables for the SQL mode, you can see that they all follow a very simple structure with keys for stored data and the data with actual JSON. The library uses this simple structure that should be compatible with nearly all database engines around.
Here is the DDL for the tables currently in use:
CREATE TABLE thstore_currencies (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
CREATE TABLE thstore_currency_holidays (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
CREATE TABLE thstore_holidays (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
CREATE TABLE thstore_markets (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
CREATE TABLE thstore_mic_mapping (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
CREATE TABLE thstore_schedules (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
CREATE TABLE thstore_season_definitions (id INTEGER NOT NULL, slug VARCHAR, "key" VARCHAR, data JSON, PRIMARY KEY (id));
Time Zone Database
This package employs zoneinfo
for timezone management, utilizing the IANA Time Zone Database,
which is routinely updated. In certain environments, it's essential to update the tzdata
package accordingly.
tradinghours
automatically checks your tzdata
version against PyPI via HTTP request, issuing a warning
if an update is needed.
To update tzdata
run this command: pip install tzdata --upgrade
To disable this verification and prevent the request, add this section to your tradinghours.ini file:
[control]
check_tzdata = False
Model Configuration
Change String Format
from tradinghours import Currency
Currency.set_string_format("{currency_code}: {financial_capital} - {financial_capital_timezone}")
currency = Currency.get("EUR")
print(currency)
Currency.reset_string_format()
print(currency)
>>> EUR: Frankfurt - Europe/Berlin
Currency: EUR Euro
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tradinghours-0.2.1.tar.gz
.
File metadata
- Download URL: tradinghours-0.2.1.tar.gz
- Upload date:
- Size: 45.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdb171aab85f40342095395df13fcc7519b5c7b379689ac69a2875dba449e4d4 |
|
MD5 | 80d9a7ff55d47e579a16018be655afe2 |
|
BLAKE2b-256 | 52912b2ea2112c71e3f4f3289704eea42468ca52b4fca79192ceca2d7a690b34 |
File details
Details for the file tradinghours-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: tradinghours-0.2.1-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1d80d6eab057839e92dcf219397df35c1871caafba8dfc9b8d5ddd79b357b19 |
|
MD5 | 76c4ad2c7111f59f4148b9734bee475e |
|
BLAKE2b-256 | fd1894a627b0839268e79add47eebe477761282f6082909432e9d49784b51410 |