Skip to content

Commit 141c100

Browse files
committed
incremental update
1 parent 58b3248 commit 141c100

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ isbtchot [--periods_back P] [--time T] [--dashboard D]
3333
| Argument | Short Form | Description | Default |
3434
|----------------|------------|---------------------------------------------------------------------------------|-----------|
3535
| `--periods_back` | `-p` | Number of periods to be processed for the data visualization. | 85 |
36-
| `--time` | `-t` | Candlestick time to use (e.g., ME for Monthly, W for Weekly). | W |
36+
| `--time` | `-t` | Candlestick time to use (e.g., M for Monthly, W for Weekly). | W |
3737
| `--dashboard` | `-d` | Dashboard type to display: `isbtchot` or `power_law`. | isbtchot |
3838

3939
## Demo

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "isbtchot"
7-
version = "v1.1.0"
7+
version = "v1.1.1"
88
description = "TBD"
99
readme = "README.md"
1010
authors = [{ name = "Daniel", email = "[email protected]" }]
11-
dependencies = ["pandas","plotext","requests"]
11+
dependencies = ["pandas","plotext","requests","scikit-learn"]
1212

1313
[tool.setuptools.packages.find]
1414
where = ["src"]

src/isbtchot/schemas/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from enum import Enum
22

33
class TypeTime(Enum):
4-
MONTH = "ME"
4+
MONTH = "M"
55
WEEK = "W"

0 commit comments

Comments
 (0)