-
Notifications
You must be signed in to change notification settings - Fork 279
/
markets.yaml
41 lines (32 loc) · 1.66 KB
/
markets.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
############################################################################################
# Market YAML config.
#
# - All fields are mandatory unless stated otherwise.
# - Multiple market blocks can be listed.
# - The indentation levels are significant in YAML: https://en.wikipedia.org/wiki/YAML
############################################################################################
---
markets:
# The id value is the market id as defined on the exchange, e.g. 'btcusd'.
- id: btcusd
# A friendly name for the market. Value must be an alphanumeric string. Spaces are allowed. E.g. BTC/USD
name: BTC/USD
# The baseCurrency value is the currency short code for the base currency in the currency pair. When you buy or
# sell a currency pair, you are performing that action on the base currency. The base currency is the commodity you
# are buying or selling. E.g. in a BTC/USD market, the first currency (BTC) is the base currency and the second
# currency (USD) is the counter currency.
baseCurrency: BTC
# The counterCurrency value is the currency short code for the counter currency in the currency pair. This is also
# known as the quote currency.
counterCurrency: USD
# The enabled value allows you toggle trading on the market - config changes are only applied on startup.
enabled: true
# The tradingStrategyId value must match a strategy id defined in your strategies.yaml config.
# Currently, BX-bot only supports 1 strategy per market.
tradingStrategyId: scalping-strategy
- id: ltcusd
name: LTC/BTC
baseCurrency: LTC
counterCurrency: BTC
enabled: false
tradingStrategyId: scalping-strategy