mtcli-risco 2.2.0__py3-none-any.whl → 2.2.1__py3-none-any.whl
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_risco/commands/checar.py +1 -0
- mtcli_risco/commands/monitorar.py +1 -0
- mtcli_risco/commands/trades.py +1 -0
- mtcli_risco/models/checar_model.py +102 -102
- mtcli_risco/models/trades_model.py +77 -77
- mtcli_risco/plugin.py +11 -11
- {mtcli_risco-2.2.0.dist-info → mtcli_risco-2.2.1.dist-info}/METADATA +1 -1
- mtcli_risco-2.2.1.dist-info/RECORD +16 -0
- mtcli_risco-2.2.0.dist-info/RECORD +0 -16
- {mtcli_risco-2.2.0.dist-info → mtcli_risco-2.2.1.dist-info}/LICENSE +0 -0
- {mtcli_risco-2.2.0.dist-info → mtcli_risco-2.2.1.dist-info}/WHEEL +0 -0
- {mtcli_risco-2.2.0.dist-info → mtcli_risco-2.2.1.dist-info}/entry_points.txt +0 -0
mtcli_risco/commands/checar.py
CHANGED
mtcli_risco/commands/trades.py
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
"""Verifica dados de risco."""
|
|
2
|
-
|
|
3
|
-
import MetaTrader5 as mt5
|
|
4
|
-
import json
|
|
5
|
-
import os
|
|
6
|
-
from datetime import date, datetime, time
|
|
7
|
-
from mtcli.logger import setup_logger
|
|
8
|
-
from .trades_model import calcular_lucro_total_dia
|
|
9
|
-
from mtcli_risco.mt5_context import mt5_conexao
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
log = setup_logger()
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
def carregar_estado(STATUS_FILE):
|
|
16
|
-
"""Carrega o estado do controle de risco."""
|
|
17
|
-
if os.path.exists(STATUS_FILE):
|
|
18
|
-
with open(STATUS_FILE, "r") as f:
|
|
19
|
-
log.info(f"Carregando dados do arquivo {STATUS_FILE}")
|
|
20
|
-
return json.load(f)
|
|
21
|
-
return {"data": None, "bloqueado": False}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
def salvar_estado(STATUS_FILE, data, bloqueado):
|
|
25
|
-
"""Salva o estado do controle de risco."""
|
|
26
|
-
with open(STATUS_FILE, "w") as f:
|
|
27
|
-
json.dump({"data": data.isoformat(), "bloqueado": bloqueado}, f)
|
|
28
|
-
log.info(f"Salvando o estado: data {data} bloqueado {bloqueado}")
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
def encerrar_todas_posicoes():
|
|
32
|
-
"""Encerra todas as posições abertas."""
|
|
33
|
-
with mt5_conexao():
|
|
34
|
-
positions = mt5.positions_get()
|
|
35
|
-
if not positions:
|
|
36
|
-
log.info("Nenhuma posição aberta para fechar.")
|
|
37
|
-
return
|
|
38
|
-
|
|
39
|
-
with mt5_conexao():
|
|
40
|
-
for pos in positions:
|
|
41
|
-
tipo_oposto = (
|
|
42
|
-
mt5.ORDER_TYPE_SELL
|
|
43
|
-
if pos.type == mt5.ORDER_TYPE_BUY
|
|
44
|
-
else mt5.ORDER_TYPE_BUY
|
|
45
|
-
)
|
|
46
|
-
ordem_fechar = {
|
|
47
|
-
"action": mt5.TRADE_ACTION_DEAL,
|
|
48
|
-
"symbol": pos.symbol,
|
|
49
|
-
"volume": pos.volume,
|
|
50
|
-
"type": tipo_oposto,
|
|
51
|
-
"position": pos.ticket,
|
|
52
|
-
"deviation": 10,
|
|
53
|
-
"magic": 1000,
|
|
54
|
-
"comment": "Fechando posição por limite de risco",
|
|
55
|
-
}
|
|
56
|
-
log.info(
|
|
57
|
-
f"Requizição para encerramento de posições pelo risco: {ordem_fechar}"
|
|
58
|
-
)
|
|
59
|
-
resultado = mt5.order_send(ordem_fechar)
|
|
60
|
-
|
|
61
|
-
if resultado is None:
|
|
62
|
-
log.error("Erro ao enviar ordem: resultado é None.")
|
|
63
|
-
continue
|
|
64
|
-
|
|
65
|
-
if resultado.retcode != mt5.TRADE_RETCODE_DONE:
|
|
66
|
-
log.error(f"Falha ao fechar posição {pos.ticket}: {resultado.retcode}")
|
|
67
|
-
else:
|
|
68
|
-
log.info(f"Posição {pos.ticket} fechada com sucesso.")
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def cancelar_todas_ordens():
|
|
72
|
-
"""Cancela todas órdens pendentes."""
|
|
73
|
-
with mt5_conexao():
|
|
74
|
-
ordens = mt5.orders_get()
|
|
75
|
-
if not ordens:
|
|
76
|
-
log.info("Nenhuma ordem pendente para cancelar.")
|
|
77
|
-
return
|
|
78
|
-
|
|
79
|
-
with mt5_conexao():
|
|
80
|
-
for ordem in ordens:
|
|
81
|
-
resultado = mt5.order_delete(ordem.ticket)
|
|
82
|
-
if resultado.retcode != mt5.TRADE_RETCODE_DONE:
|
|
83
|
-
log.error(
|
|
84
|
-
f"Falha ao cancelar ordem {ordem.ticket}: {resultado.retcode}"
|
|
85
|
-
)
|
|
86
|
-
else:
|
|
87
|
-
log.info(f"Ordem {ordem.ticket} cancelada com sucesso.")
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
def risco_excedido(limite):
|
|
91
|
-
"""Verifica se o loss limit do dia foi atingido."""
|
|
92
|
-
try:
|
|
93
|
-
total_lucro = calcular_lucro_total_dia()
|
|
94
|
-
if total_lucro <= limite:
|
|
95
|
-
log.info(
|
|
96
|
-
f"Limite de prejuízo excedido! prejuízo: {total_lucro:.2f}, limite: {limite:.2f}"
|
|
97
|
-
)
|
|
98
|
-
return True
|
|
99
|
-
return False
|
|
100
|
-
except Exception as e:
|
|
101
|
-
log.error(f"Erro ao verificar risco: {e}")
|
|
102
|
-
return False
|
|
1
|
+
"""Verifica dados de risco."""
|
|
2
|
+
|
|
3
|
+
import MetaTrader5 as mt5
|
|
4
|
+
import json
|
|
5
|
+
import os
|
|
6
|
+
from datetime import date, datetime, time
|
|
7
|
+
from mtcli.logger import setup_logger
|
|
8
|
+
from .trades_model import calcular_lucro_total_dia
|
|
9
|
+
from mtcli_risco.mt5_context import mt5_conexao
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
log = setup_logger()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def carregar_estado(STATUS_FILE):
|
|
16
|
+
"""Carrega o estado do controle de risco."""
|
|
17
|
+
if os.path.exists(STATUS_FILE):
|
|
18
|
+
with open(STATUS_FILE, "r") as f:
|
|
19
|
+
log.info(f"Carregando dados do arquivo {STATUS_FILE}")
|
|
20
|
+
return json.load(f)
|
|
21
|
+
return {"data": None, "bloqueado": False}
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def salvar_estado(STATUS_FILE, data, bloqueado):
|
|
25
|
+
"""Salva o estado do controle de risco."""
|
|
26
|
+
with open(STATUS_FILE, "w") as f:
|
|
27
|
+
json.dump({"data": data.isoformat(), "bloqueado": bloqueado}, f)
|
|
28
|
+
log.info(f"Salvando o estado: data {data} bloqueado {bloqueado}")
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def encerrar_todas_posicoes():
|
|
32
|
+
"""Encerra todas as posições abertas."""
|
|
33
|
+
with mt5_conexao():
|
|
34
|
+
positions = mt5.positions_get()
|
|
35
|
+
if not positions:
|
|
36
|
+
log.info("Nenhuma posição aberta para fechar.")
|
|
37
|
+
return
|
|
38
|
+
|
|
39
|
+
with mt5_conexao():
|
|
40
|
+
for pos in positions:
|
|
41
|
+
tipo_oposto = (
|
|
42
|
+
mt5.ORDER_TYPE_SELL
|
|
43
|
+
if pos.type == mt5.ORDER_TYPE_BUY
|
|
44
|
+
else mt5.ORDER_TYPE_BUY
|
|
45
|
+
)
|
|
46
|
+
ordem_fechar = {
|
|
47
|
+
"action": mt5.TRADE_ACTION_DEAL,
|
|
48
|
+
"symbol": pos.symbol,
|
|
49
|
+
"volume": pos.volume,
|
|
50
|
+
"type": tipo_oposto,
|
|
51
|
+
"position": pos.ticket,
|
|
52
|
+
"deviation": 10,
|
|
53
|
+
"magic": 1000,
|
|
54
|
+
"comment": "Fechando posição por limite de risco",
|
|
55
|
+
}
|
|
56
|
+
log.info(
|
|
57
|
+
f"Requizição para encerramento de posições pelo risco: {ordem_fechar}"
|
|
58
|
+
)
|
|
59
|
+
resultado = mt5.order_send(ordem_fechar)
|
|
60
|
+
|
|
61
|
+
if resultado is None:
|
|
62
|
+
log.error("Erro ao enviar ordem: resultado é None.")
|
|
63
|
+
continue
|
|
64
|
+
|
|
65
|
+
if resultado.retcode != mt5.TRADE_RETCODE_DONE:
|
|
66
|
+
log.error(f"Falha ao fechar posição {pos.ticket}: {resultado.retcode}")
|
|
67
|
+
else:
|
|
68
|
+
log.info(f"Posição {pos.ticket} fechada com sucesso.")
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
def cancelar_todas_ordens():
|
|
72
|
+
"""Cancela todas órdens pendentes."""
|
|
73
|
+
with mt5_conexao():
|
|
74
|
+
ordens = mt5.orders_get()
|
|
75
|
+
if not ordens:
|
|
76
|
+
log.info("Nenhuma ordem pendente para cancelar.")
|
|
77
|
+
return
|
|
78
|
+
|
|
79
|
+
with mt5_conexao():
|
|
80
|
+
for ordem in ordens:
|
|
81
|
+
resultado = mt5.order_delete(ordem.ticket)
|
|
82
|
+
if resultado.retcode != mt5.TRADE_RETCODE_DONE:
|
|
83
|
+
log.error(
|
|
84
|
+
f"Falha ao cancelar ordem {ordem.ticket}: {resultado.retcode}"
|
|
85
|
+
)
|
|
86
|
+
else:
|
|
87
|
+
log.info(f"Ordem {ordem.ticket} cancelada com sucesso.")
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
def risco_excedido(limite):
|
|
91
|
+
"""Verifica se o loss limit do dia foi atingido."""
|
|
92
|
+
try:
|
|
93
|
+
total_lucro = calcular_lucro_total_dia()
|
|
94
|
+
if total_lucro <= limite:
|
|
95
|
+
log.info(
|
|
96
|
+
f"Limite de prejuízo excedido! prejuízo: {total_lucro:.2f}, limite: {limite:.2f}"
|
|
97
|
+
)
|
|
98
|
+
return True
|
|
99
|
+
return False
|
|
100
|
+
except Exception as e:
|
|
101
|
+
log.error(f"Erro ao verificar risco: {e}")
|
|
102
|
+
return False
|
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
"""Cálculos do lucro do dia."""
|
|
2
|
-
|
|
3
|
-
import MetaTrader5 as mt5
|
|
4
|
-
from datetime import date, datetime, time
|
|
5
|
-
from mtcli.conecta import conectar, shutdown
|
|
6
|
-
from mtcli.logger import setup_logger
|
|
7
|
-
from mtcli_risco.mt5_context import mt5_conexao
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
log = setup_logger()
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
def contar_transacoes_realizadas() -> int:
|
|
14
|
-
"""Conta a quantidade de posições encerradas no dia (transações de fechamento)."""
|
|
15
|
-
hoje = datetime.now().date()
|
|
16
|
-
inicio = datetime.combine(hoje, time(0, 0))
|
|
17
|
-
fim = datetime.combine(hoje, time(23, 59))
|
|
18
|
-
|
|
19
|
-
with mt5_conexao():
|
|
20
|
-
deals = mt5.history_deals_get(inicio, fim)
|
|
21
|
-
|
|
22
|
-
if deals is None:
|
|
23
|
-
log.warning("Nenhum deal retornado.")
|
|
24
|
-
return 0
|
|
25
|
-
|
|
26
|
-
if not isinstance(deals, (list, tuple)):
|
|
27
|
-
deals = [deals]
|
|
28
|
-
|
|
29
|
-
# Types 1 = buy, 2 = sell → usados para fechar posições
|
|
30
|
-
transacoes = [d for d in deals if d.type in (1, 2)]
|
|
31
|
-
|
|
32
|
-
log.info(f"Transações realizadas hoje: {len(transacoes)}")
|
|
33
|
-
return len(transacoes)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
def calcular_lucro_realizado() -> float:
|
|
37
|
-
"""Calcula o lucro realizado do dia."""
|
|
38
|
-
hoje = datetime.now().date()
|
|
39
|
-
inicio = datetime.combine(hoje, time(0, 0))
|
|
40
|
-
fim = datetime.combine(hoje, time(23, 59))
|
|
41
|
-
|
|
42
|
-
with mt5_conexao():
|
|
43
|
-
deals = mt5.history_deals_get(inicio, fim)
|
|
44
|
-
log.info(f"Deals recebidos: {len(deals) if deals else 0}")
|
|
45
|
-
|
|
46
|
-
if deals is None or len(deals) == 0:
|
|
47
|
-
log.warning("Nenhum deal retornado.")
|
|
48
|
-
return 0.0
|
|
49
|
-
|
|
50
|
-
lucro_realizado = sum(
|
|
51
|
-
deal.profit for deal in deals if deal.entry == mt5.DEAL_ENTRY_OUT
|
|
52
|
-
)
|
|
53
|
-
|
|
54
|
-
log.info(f"Lucro realizado do dia: {lucro_realizado:.2f}")
|
|
55
|
-
return lucro_realizado
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
def obter_lucro_aberto() -> float:
|
|
59
|
-
"""Obtem o lucro em aberto."""
|
|
60
|
-
with mt5_conexao():
|
|
61
|
-
info = mt5.account_info()
|
|
62
|
-
|
|
63
|
-
lucro_aberto = info.profit if info else 0.0
|
|
64
|
-
log.info(f"lucro aberto: {lucro_aberto:.2f}")
|
|
65
|
-
|
|
66
|
-
return lucro_aberto
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
def calcular_lucro_total_dia() -> float:
|
|
70
|
-
"""Calcula o lucro total do dia."""
|
|
71
|
-
realizado = calcular_lucro_realizado()
|
|
72
|
-
aberto = obter_lucro_aberto()
|
|
73
|
-
total = realizado + aberto
|
|
74
|
-
log.info(
|
|
75
|
-
f"Lucro realizado: {realizado:.2f}, lucro aberto: {aberto:.2f}, total: {total:.2f}"
|
|
76
|
-
)
|
|
77
|
-
return total
|
|
1
|
+
"""Cálculos do lucro do dia."""
|
|
2
|
+
|
|
3
|
+
import MetaTrader5 as mt5
|
|
4
|
+
from datetime import date, datetime, time
|
|
5
|
+
from mtcli.conecta import conectar, shutdown
|
|
6
|
+
from mtcli.logger import setup_logger
|
|
7
|
+
from mtcli_risco.mt5_context import mt5_conexao
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
log = setup_logger()
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def contar_transacoes_realizadas() -> int:
|
|
14
|
+
"""Conta a quantidade de posições encerradas no dia (transações de fechamento)."""
|
|
15
|
+
hoje = datetime.now().date()
|
|
16
|
+
inicio = datetime.combine(hoje, time(0, 0))
|
|
17
|
+
fim = datetime.combine(hoje, time(23, 59))
|
|
18
|
+
|
|
19
|
+
with mt5_conexao():
|
|
20
|
+
deals = mt5.history_deals_get(inicio, fim)
|
|
21
|
+
|
|
22
|
+
if deals is None:
|
|
23
|
+
log.warning("Nenhum deal retornado.")
|
|
24
|
+
return 0
|
|
25
|
+
|
|
26
|
+
if not isinstance(deals, (list, tuple)):
|
|
27
|
+
deals = [deals]
|
|
28
|
+
|
|
29
|
+
# Types 1 = buy, 2 = sell → usados para fechar posições
|
|
30
|
+
transacoes = [d for d in deals if d.type in (1, 2)]
|
|
31
|
+
|
|
32
|
+
log.info(f"Transações realizadas hoje: {len(transacoes)}")
|
|
33
|
+
return len(transacoes)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def calcular_lucro_realizado() -> float:
|
|
37
|
+
"""Calcula o lucro realizado do dia."""
|
|
38
|
+
hoje = datetime.now().date()
|
|
39
|
+
inicio = datetime.combine(hoje, time(0, 0))
|
|
40
|
+
fim = datetime.combine(hoje, time(23, 59))
|
|
41
|
+
|
|
42
|
+
with mt5_conexao():
|
|
43
|
+
deals = mt5.history_deals_get(inicio, fim)
|
|
44
|
+
log.info(f"Deals recebidos: {len(deals) if deals else 0}")
|
|
45
|
+
|
|
46
|
+
if deals is None or len(deals) == 0:
|
|
47
|
+
log.warning("Nenhum deal retornado.")
|
|
48
|
+
return 0.0
|
|
49
|
+
|
|
50
|
+
lucro_realizado = sum(
|
|
51
|
+
deal.profit for deal in deals if deal.entry == mt5.DEAL_ENTRY_OUT
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
log.info(f"Lucro realizado do dia: {lucro_realizado:.2f}")
|
|
55
|
+
return lucro_realizado
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
def obter_lucro_aberto() -> float:
|
|
59
|
+
"""Obtem o lucro em aberto."""
|
|
60
|
+
with mt5_conexao():
|
|
61
|
+
info = mt5.account_info()
|
|
62
|
+
|
|
63
|
+
lucro_aberto = info.profit if info else 0.0
|
|
64
|
+
log.info(f"lucro aberto: {lucro_aberto:.2f}")
|
|
65
|
+
|
|
66
|
+
return lucro_aberto
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
def calcular_lucro_total_dia() -> float:
|
|
70
|
+
"""Calcula o lucro total do dia."""
|
|
71
|
+
realizado = calcular_lucro_realizado()
|
|
72
|
+
aberto = obter_lucro_aberto()
|
|
73
|
+
total = realizado + aberto
|
|
74
|
+
log.info(
|
|
75
|
+
f"Lucro realizado: {realizado:.2f}, lucro aberto: {aberto:.2f}, total: {total:.2f}"
|
|
76
|
+
)
|
|
77
|
+
return total
|
mtcli_risco/plugin.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
"""Registra os comandos do plugin."""
|
|
2
|
-
|
|
3
|
-
from .commands.checar import checar
|
|
4
|
-
from .commands.monitorar import monitorar
|
|
5
|
-
from .commands.trades import trades
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
def register(cli):
|
|
9
|
-
cli.add_command(checar, name="checar")
|
|
10
|
-
cli.add_command(monitorar, name="monitorar")
|
|
11
|
-
cli.add_command(trades, name="trades")
|
|
1
|
+
"""Registra os comandos do plugin."""
|
|
2
|
+
|
|
3
|
+
from .commands.checar import checar
|
|
4
|
+
from .commands.monitorar import monitorar
|
|
5
|
+
from .commands.trades import trades
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def register(cli):
|
|
9
|
+
cli.add_command(checar, name="checar")
|
|
10
|
+
cli.add_command(monitorar, name="monitorar")
|
|
11
|
+
cli.add_command(trades, name="trades")
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
mtcli_risco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
mtcli_risco/commands/__init__.py,sha256=0AvTSqwccXKX8r9CXkEaPWQ4bj87Bo8y1BFGpMhR9hk,60
|
|
3
|
+
mtcli_risco/commands/checar.py,sha256=nf7oo6DSU19SasWOLgkL0yKsQ6u-BCqob414URWMvDo,1949
|
|
4
|
+
mtcli_risco/commands/monitorar.py,sha256=0eiCaO4TtGmDz6EShnyR6SvIf9l6RJVQIXVXN0S5XeQ,1918
|
|
5
|
+
mtcli_risco/commands/trades.py,sha256=cxiGnWvZ_PNWSvE5ftSDJWBgHwLjeB5yAowRD9LV6bs,1380
|
|
6
|
+
mtcli_risco/conf.py,sha256=5T82aUS9k9zB1I94RGL5xud-0B4iYI6CwXJoUNDotAQ,365
|
|
7
|
+
mtcli_risco/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
mtcli_risco/models/checar_model.py,sha256=tv7r-lQdrXhtJo-4vlDUeMNN-FAQ2maUHR-IvccWAWg,3335
|
|
9
|
+
mtcli_risco/models/trades_model.py,sha256=4_kG0jCclKyb4HqLWLvEndvRp4kHexzJwk_0YKIGEog,2204
|
|
10
|
+
mtcli_risco/mt5_context.py,sha256=lA5ZppfRsCvzrxf0Jce1ewZtt2xFln5xnZ1sArk1P4k,190
|
|
11
|
+
mtcli_risco/plugin.py,sha256=gl7JzOyzcO3vHzoJuaZ9z-LBkq20Q5ICMviEuXW-yAk,309
|
|
12
|
+
mtcli_risco-2.2.1.dist-info/entry_points.txt,sha256=LV78AP1S7_X3zuy0HZjdRHh1kp8VM-RvpBCNf0dOiNY,57
|
|
13
|
+
mtcli_risco-2.2.1.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
14
|
+
mtcli_risco-2.2.1.dist-info/METADATA,sha256=QDUUul9lT4N6oXrK4uuuYZv2RbiSvywttC06eQBVM4E,2482
|
|
15
|
+
mtcli_risco-2.2.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
16
|
+
mtcli_risco-2.2.1.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
mtcli_risco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
mtcli_risco/commands/__init__.py,sha256=0AvTSqwccXKX8r9CXkEaPWQ4bj87Bo8y1BFGpMhR9hk,60
|
|
3
|
-
mtcli_risco/commands/checar.py,sha256=u-zh10On8RafiYLh0gbp1xQC4-bONemM8BUVXZ_Vkdg,1898
|
|
4
|
-
mtcli_risco/commands/monitorar.py,sha256=HNJ4OoHjPmPQfzwO2qiUu3bk0HhPlIlUmhdWxVFPqz8,1867
|
|
5
|
-
mtcli_risco/commands/trades.py,sha256=cSn_UhGDHl-qtJqsQFrVL3sTa2SpnWznhm5gDqYQz3o,1329
|
|
6
|
-
mtcli_risco/conf.py,sha256=5T82aUS9k9zB1I94RGL5xud-0B4iYI6CwXJoUNDotAQ,365
|
|
7
|
-
mtcli_risco/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
mtcli_risco/models/checar_model.py,sha256=0ycGV-Z73IKfccpWJR19bkGb17bGC4e9W9O8soJPX9k,3437
|
|
9
|
-
mtcli_risco/models/trades_model.py,sha256=cKm_lWb5NMgPe3JN4GWZrmvTNjvG5B08RSg2bixyTz8,2281
|
|
10
|
-
mtcli_risco/mt5_context.py,sha256=lA5ZppfRsCvzrxf0Jce1ewZtt2xFln5xnZ1sArk1P4k,190
|
|
11
|
-
mtcli_risco/plugin.py,sha256=avkHoaTeJTUM95iwTuDJ2IjYvHG_PAEzOAVJqEEguss,320
|
|
12
|
-
mtcli_risco-2.2.0.dist-info/entry_points.txt,sha256=LV78AP1S7_X3zuy0HZjdRHh1kp8VM-RvpBCNf0dOiNY,57
|
|
13
|
-
mtcli_risco-2.2.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
14
|
-
mtcli_risco-2.2.0.dist-info/METADATA,sha256=2Z-v3KoL7tofOxLQVBnhHusdNcjueHSdsnSzEemNE6E,2482
|
|
15
|
-
mtcli_risco-2.2.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
16
|
-
mtcli_risco-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|