Path: blob/master/ invest-robot-contest_trading_bot-master/bot/keyboards/start_menu_keyboard.py
5935 views
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton1from config.personal_data import get_account_type2"""3Клавиатура стартового меню4"""567def get_start_menu(user_id):8if get_account_type(user_id=user_id) == "sandbox":9start_menu = ReplyKeyboardMarkup(10keyboard=[11[12KeyboardButton(text="Пополнить счёт"),13],14[15KeyboardButton(text="Баланс"),16KeyboardButton(text="Бумаги"),17],18[19KeyboardButton(text="Статистика"),20KeyboardButton(text="Операции"),21KeyboardButton(text="Поиск"),2223],24[25KeyboardButton(text="Открытые ордера"),26],27[28KeyboardButton(text="Торговые стратегии"),29],30[31KeyboardButton(text="Продать"),32KeyboardButton(text="Купить"),33],34[35KeyboardButton(text="Изменить Токен"),36KeyboardButton(text="Изменить Аккаунт"),37],38[39KeyboardButton(text="Удалить все торговые стратегии"),40],41],42resize_keyboard=True43)44else:45start_menu = ReplyKeyboardMarkup(46keyboard=[47[48KeyboardButton(text="Открыть песочницу"),49KeyboardButton(text="Закрыть песочницу"),5051],52[53KeyboardButton(text="Баланс"),54KeyboardButton(text="Бумаги"),55],56[57KeyboardButton(text="Статистика"),58KeyboardButton(text="Операции"),59KeyboardButton(text="Поиск"),60],61[62KeyboardButton(text="Открытые ордера"),63],64[65KeyboardButton(text="Торговые стратегии"),66],67[68KeyboardButton(text="Продать"),69KeyboardButton(text="Купить"),70],71[72KeyboardButton(text="Изменить Токен"),73KeyboardButton(text="Изменить Аккаунт"),74],75[76KeyboardButton(text="Удалить все торговые стратегии"),77],7879],80resize_keyboard=True81)82return start_menu838485