Manages trade dates.
Project description
tradingdate
Manages trade dates.
Installation
$ pip install tradingdate
Requirements
chinesecalendar
Usage
Get a calendar
>>> import tradingdate as td
>>> cal = td.get_calendar("chinese") # by default "chinese"
>>> cal
TradingCalendar(20040102 ~ 20251231, 'chinese')
>>> list(cal)[:3]
[TradingDate(20040102), TradingDate(20040105), TradingDate(20040106)]
Get a trading date
>>> date = td.get_trading_date(20250116)
>>> date
TradingDate(20250116)
>>> print(date.year, date.month, date.day)
2025 01 16
>>> date - 20
TradingDate(20241218)
>>> date + 100
TradingDate(20250617)
>>> date.week.start, date.week.end
(TradingDate(20250113), TradingDate(20250117))
>>> date.month.start, date.month.end
(TradingDate(20250102), TradingDate(20250127))
>>> date.year.start, date.year.end
(TradingDate(20250102), TradingDate(20251231))
Get iterator of trading dates
>>> list(td.get_trading_dates(20250101, 20250106))
[TradingDate(20250102), TradingDate(20250103), TradingDate(20250106)]
Make a new calendar
>>> td.make_calendar("user-defined", [20250101, 20250115, 20250201])
TradingCalendar(20250101 ~ 20250201, 'user-defined')
>>> list(td.get_trading_dates(20250101, 20250131, calendar_id="user-defined"))
[TradingDate(20250101), TradingDate(20250115)]
See Also
Github repository
PyPI project
License
This project falls under the BSD 3-Clause License.
History
v0.0.8
- Bugfix: no longer raises an OutOfCalendarError when the
endparameter forget_trading_dates()is None. - New method
TradingDate.iterate_until(). daterange()returns an instance ofDateRangenow.
v0.0.7
- Updated
make_calendar(): raises ValueError whencalender_idalready exists.
v0.0.6
- New function
daterange().
v0.0.5
- New property
TradingDate.week.
v0.0.4
- Improved effeciency when making a calendar.
- Updated message of NotImplementedError raised by
CalendarEngine.get_chinese_calendar().
v0.0.3
- Updated
make_calendar(): now accepts a date-list as the second positional argument instead of a dict.
v0.0.2
- New function
make_calendar(). - Removed the dependency on
numpy.
v0.0.1
- New methods
TradingCalendar.get_year(),YearCalendar.get_month(),MonthCalendar.get_day(). - Bugfix:
TradingDate.__sub__().
v0.0.0
- Initial release.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tradingdate-0.0.8-py2.py3-none-any.whl.
File metadata
- Download URL: tradingdate-0.0.8-py2.py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ebbe3bb82313302d9e1384118fb171357ac7c6d9c8bd6165d0c0020e1e4f547
|
|
| MD5 |
b4a06037c0b68fe0f333979153af2a6d
|
|
| BLAKE2b-256 |
067f05dd00c682cdfe4f2fb0a77a382f711f225a85d7d488b7639f7e6431a045
|