mirror of
https://ghfast.top/https://github.com/aeroxw/easy_tdx_max.git
synced 2026-09-12 18:04:20 +08:00
- Add backtest section to README with CLI usage and run_all_strategies.py demo - Update all version numbers to 1.8.0 (pyproject.toml, __init__.py, cli/__init__.py, docs/conf.py) - Fix turtle_breakout strategy: TAQ returns 3 values (UP, MID, DOWN) - Add run_all_strategies.py batch comparison script - Update README intro to highlight backtest feature - Add backtest to CLI command table and architecture tree Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
926 B
Python
34 lines
926 B
Python
# -- Sphinx configuration for easy-tdx ---------------------------------------
|
|
project = "easy-tdx"
|
|
copyright = "2025, Justin Gu"
|
|
author = "Justin Gu"
|
|
|
|
# The full version, including alpha/beta/rc tags
|
|
release = "1.8.0"
|
|
|
|
# -- Extensions ---------------------------------------------------------------
|
|
extensions = [
|
|
"myst_parser",
|
|
]
|
|
|
|
# -- MyST parser config -------------------------------------------------------
|
|
myst_enable_extensions = [
|
|
"colon_fence",
|
|
"deflist",
|
|
]
|
|
|
|
# Suppress cross-reference warnings for relative links (e.g. docs/*.md, LICENSE)
|
|
suppress_warnings = ["myst.xref_missing"]
|
|
|
|
# -- HTML output --------------------------------------------------------------
|
|
html_theme = "sphinx_rtd_theme"
|
|
html_theme_options = {
|
|
"navigation_depth": 3,
|
|
}
|
|
|
|
# -- Source suffix -------------------------------------------------------------
|
|
source_suffix = {
|
|
".rst": "restructuredtext",
|
|
".md": "markdown",
|
|
}
|