Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For convenience, an online [tool for generating configs](https://stats.kmd.io/at

| Structure | Type | Description |
| -------------------------------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| price\_url | string | Link to a price service API |
| price\_url | list | A list of URLs serving price data in JSON format. During each update loop, price data will be sourced from the first working URL in the list. |
Comment thread
shamardy marked this conversation as resolved.
Outdated
| bot\_refresh\_rate | float | Bot loop interval in seconds (optional, 30 sec default) |
| cfg.name | string | The name assigned to this configuration (e.g. the pair being configured) |
| cfg.name.base | string | Ticker of the coin you wish to sell |
Expand Down Expand Up @@ -81,7 +81,11 @@ The third config tells the bot to:
"mmrpc": "2.0",
"method": "start_simple_market_maker_bot",
"params": {
"price_url": "https://prices.komodo.earth/api/v2/tickers?expire_at=600",
"price_url": [
Comment thread
shamardy marked this conversation as resolved.
Outdated
"https://prices.komodo.live:1313/api/v2/tickers?expire_at=600",
"https://prices.komodo.earth/api/v2/tickers?expire_at=600",
"https://prices.komodian.info/api/v2/tickers?expire_at=600"
]
"bot_refresh_rate": 60,
"cfg": {
"DASH/KMD": {
Expand Down