fix(config): use Kraken Futures perpetual symbols (BTC/USD:USD)

This commit is contained in:
sylyx 2026-05-07 14:28:20 +02:00
parent d111cf1fdc
commit 344d30f440
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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",
}