Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
furechan committed Dec 6, 2024
1 parent 929428a commit 11e90c4
Show file tree
Hide file tree
Showing 4 changed files with 1,813 additions and 6 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.9
4 changes: 2 additions & 2 deletions misc/indicator-protos.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
},
{
"cell_type": "code",
"execution_count": 40,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -363,7 +363,7 @@
"\n",
"def RSI(period: int = 14):\n",
" \"\"\" Relative Strength Indicator\"\"\"\n",
" parameters = locals()\n",
" parameters = dict(locals())\n",
" info = dict(\n",
" overbought = 70,\n",
" oversold = 30,\n",
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ name = "mplchart"
version = "0.0.15"
requires-python = ">=3.9"
readme = "output/README.md"
license = { text = "MIT License" }
description = "Classic Stock Charts in Python"
urls = { homepage = "https://github.com/furechan/mplchart" }
urls.homepage = "https://github.com/furechan/mplchart"
authors = [{ name = "Furechan", email = "[email protected]" }]
keywords = ["finance", "charting", "matplotlib", "candlesticks"]
dependencies = ["matplotlib", "numpy", "pandas"]
Expand All @@ -19,8 +18,9 @@ classifiers = [
"Operating System :: OS Independent",
]

[project.optional-dependencies]
dev = ["yfinance", "pytest", "nbmake", "ipykernel", "ta-lib", "ruff", "jinja2"]
[dependency-groups]
dev = ["numpy<2.0.0", "yfinance", "pytest", "nbmake", "ipykernel", "ta-lib", "ruff"]


[tool.hatch.build]
targets.wheel.sources = ["src"]
Expand Down
Loading

0 comments on commit 11e90c4

Please sign in to comment.