Пример #1
0
        public async Task AddAlertAsync(string exchange, string ticker, double price, [Remainder] string comment = "")
        {
            string response = await AlertManager.AddAlertCommand(exchange, ticker, price, comment);

            await ReplyAsync(response);
        }