mtcli-volume 2.0.0.dev2__tar.gz → 2.0.0.dev3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/PKG-INFO +1 -1
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/commands/volume_cli.py +7 -6
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/pyproject.toml +1 -1
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/LICENSE +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/README.md +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/__init__.py +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/conf.py +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/controllers/volume_controller.py +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/models/volume_model.py +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/plugin.py +0 -0
- {mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/views/volume_view.py +0 -0
|
@@ -11,22 +11,23 @@ from mtcli_volume.views.volume_view import exibir_volume_profile
|
|
|
11
11
|
)
|
|
12
12
|
@click.version_option(package_name="mtcli-volume")
|
|
13
13
|
@click.option(
|
|
14
|
-
"--symbol", "-s", default=SYMBOL, help="
|
|
14
|
+
"--symbol", "-s", default=SYMBOL, show_default=True, help="Simbolo do ativo."
|
|
15
15
|
)
|
|
16
|
-
@click.option("--period", "-p", default=PERIOD, help="Timeframe (ex: M1, M5, H1).")
|
|
17
|
-
@click.option("--bars", "-b", default=BARS, help="
|
|
16
|
+
@click.option("--period", "-p", default=PERIOD, show_default=True, help="Timeframe (ex: M1, M5, H1).")
|
|
17
|
+
@click.option("--bars", "-b", default=BARS, show_default=True, help="Numero de barras.")
|
|
18
18
|
@click.option(
|
|
19
19
|
"--step",
|
|
20
20
|
"-e",
|
|
21
21
|
type=float,
|
|
22
|
-
default=STEP,
|
|
23
|
-
help="Tamanho do agrupamento de
|
|
22
|
+
default=STEP, show_default=True,
|
|
23
|
+
help="Tamanho do agrupamento de precos.",
|
|
24
24
|
)
|
|
25
25
|
@click.option(
|
|
26
26
|
"--volume",
|
|
27
27
|
"-v",
|
|
28
28
|
default=VOLUME,
|
|
29
|
-
|
|
29
|
+
show_default=True,
|
|
30
|
+
help="Tipo de volume (tick ou real).",
|
|
30
31
|
)
|
|
31
32
|
def volume(symbol, period, bars, step, volume):
|
|
32
33
|
"""Exibe o Volume Profile agrupando volumes por faixa de preço."""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mtcli_volume-2.0.0.dev2 → mtcli_volume-2.0.0.dev3}/mtcli_volume/controllers/volume_controller.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|