|
@@ -29,7 +29,7 @@ from src.commands.info.monthly import MonthlyCommands
|
|
|
from src.commands.info.risk import RiskCommands
|
|
|
from src.commands.info.price import PriceCommands
|
|
|
from src.commands.info.balance_adjustments import BalanceAdjustmentsCommands
|
|
|
-from src.commands.info.commands import CommandsCommands
|
|
|
+from src.commands.info.commands import CommandsInfo
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
@@ -105,7 +105,7 @@ class TelegramTradingBot:
|
|
|
self.risk_cmds = RiskCommands(self.trading_engine, self.notification_manager)
|
|
|
self.price_cmds = PriceCommands(self.trading_engine, self.notification_manager)
|
|
|
self.balance_adjustments_cmds = BalanceAdjustmentsCommands(self.trading_engine, self.notification_manager)
|
|
|
- self.commands_cmds = CommandsCommands(self.trading_engine, self.notification_manager)
|
|
|
+ self.commands_cmds = CommandsInfo(self.trading_engine, self.notification_manager)
|
|
|
|
|
|
# Info commands
|
|
|
self.application.add_handler(CommandHandler("balance", self.balance_cmds.balance_command))
|
|
@@ -162,7 +162,7 @@ class TelegramTradingBot:
|
|
|
• Exit: /exit {Config.DEFAULT_TRADING_TOKEN} (closes position)
|
|
|
• Info: /balance, /positions, /orders
|
|
|
|
|
|
-📊 <b>Market Data:</b>
|
|
|
+�� <b>Market Data:</b>
|
|
|
• /market - Detailed market overview
|
|
|
• /price - Quick price check
|
|
|
|