fix(config): use Kraken Futures perpetual symbols (BTC/USD:USD)
This commit is contained in:
parent
d111cf1fdc
commit
344d30f440
@ -1,4 +1,4 @@
|
||||
pairs: [BTC/EUR, ETH/EUR]
|
||||
pairs: ["BTC/USD:USD", "ETH/USD:USD"] # Kraken-Futures Perpetuals (USD-margined)
|
||||
interval_minutes: 15
|
||||
timeframes: [15m, 1h, 4h]
|
||||
ohlcv_limit: 200
|
||||
|
||||
@ -13,10 +13,10 @@ log = get_logger(__name__)
|
||||
_vader = SentimentIntensityAnalyzer()
|
||||
|
||||
_SYMBOL_TO_CURRENCY = {
|
||||
"BTC/EUR": "BTC",
|
||||
"ETH/EUR": "ETH",
|
||||
"BTC/USD": "BTC",
|
||||
"ETH/USD": "ETH",
|
||||
"BTC/EUR": "BTC", "ETH/EUR": "ETH",
|
||||
"BTC/USD": "BTC", "ETH/USD": "ETH",
|
||||
"BTC/USD:USD": "BTC", "ETH/USD:USD": "ETH",
|
||||
"BTC/USD:BTC": "BTC", "ETH/USD:ETH": "ETH",
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user