Update telegram-usage.md

This commit is contained in:
Kamontat Chantrachirathumrong 2021-05-27 01:06:51 +07:00 committed by GitHub
parent 51794f68ca
commit fafdf04bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,31 +72,31 @@ Example configuration showing the different settings:
``` json ``` json
"telegram": { "telegram": {
"enabled": true, "enabled": true,
"token": "your_telegram_token", "token": "your_telegram_token",
"chat_id": "your_telegram_chat_id", "chat_id": "your_telegram_chat_id",
"notification_settings": { "notification_settings": {
"status": "silent", "status": "silent",
"warning": "on", "warning": "on",
"startup": "off", "startup": "off",
"buy": "silent", "buy": "silent",
"sell": { "sell": {
"roi": "off", "roi": "off",
"emergency_sell": "off", "emergency_sell": "off",
"force_sell": "off", "force_sell": "off",
"sell_signal": "off", "sell_signal": "off",
"trailing_stop_loss": "off", "trailing_stop_loss": "off",
"stop_loss": "off", "stop_loss": "off",
"stoploss_on_exchange": "off", "stoploss_on_exchange": "off",
"custom_sell": "off" "custom_sell": "off"
}, },
"buy_cancel": "silent", "buy_cancel": "silent",
"sell_cancel": "on", "sell_cancel": "on",
"buy_fill": "off", "buy_fill": "off",
"sell_fill": "off" "sell_fill": "off"
}, },
"balance_dust_level": 0.01 "balance_dust_level": 0.01
}, },
``` ```
`buy` notifications are sent when the order is placed, while `buy_fill` notifications are sent when the order is filled on the exchange. `buy` notifications are sent when the order is placed, while `buy_fill` notifications are sent when the order is filled on the exchange.