Notifications - sthewissen/Mynt GitHub Wiki

You can send/receive notifications using an implementation of the INotificationManager interface. To implement your own custom notification provider such as e.g. receiving an e-mail you can implement the INotificationManager interface and pass it into the TradeManager instance you're using.

Only send notifications?

A new NotifyOnlyTradeManager was added recently. This does not keep track of any of the trades and simply notifies you of opportunities signalled by the strategy you're using. That way you can decide for yourself if you want to use one of the signals the bot is giving.

Supported notification providers

Supported notifications are:

  • Post to a Discord channel using WebHooks
  • Post to a Slack channel using WebHooks
  • Post to a Telegram chat using WebHooks

Each of these notification managers requires you to set additional parameters for them to work, such as a WebHook Token. Please refer to the appropriate documentation of the different platforms to see how to setup a WebHook.