Dmitry Beresnev
commited on
Commit
·
5020755
1
Parent(s):
db46b9f
refactor help cmd for AsyncTradingGridGenerator
Browse files
src/telegram_bot/telegram_bot_service.py
CHANGED
@@ -175,6 +175,11 @@ class TelegramBotService:
|
|
175 |
response += "/predict TICKER - Stock price prediction (e.g., /predict AAPL)\n\n"
|
176 |
response += "/grid TICKER CAPITAL STRATEGY\n"
|
177 |
response += " - Generate trading grid (e.g., /grid AAPL 10000 conservative)\n"
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
elif base_command == "/status":
|
180 |
response = "✅ <b>Bot Status: Online</b>\n\n"
|
|
|
175 |
response += "/predict TICKER - Stock price prediction (e.g., /predict AAPL)\n\n"
|
176 |
response += "/grid TICKER CAPITAL STRATEGY\n"
|
177 |
response += " - Generate trading grid (e.g., /grid AAPL 10000 conservative)\n"
|
178 |
+
response += "The module offers four strategies with different levels of aggressiveness:\n"
|
179 |
+
response += "Conservative - minimal risk, five levels, drop of up to 20%\n"
|
180 |
+
response += "Medium - balanced, 8 levels, drop up to 35%\n"
|
181 |
+
response += "Aggressive - high return, 12 levels, drop up to 50%\n"
|
182 |
+
response += "Ultra aggressive - maximum aggressiveness, 15 levels, drop up to 70%\n"
|
183 |
|
184 |
elif base_command == "/status":
|
185 |
response = "✅ <b>Bot Status: Online</b>\n\n"
|