A rebalance trading bot for the Kraken cryptocurrency exchange.
Project description
Welcome to the Spot rebalance bot for the Kraken Cryptocurrency Exchange 🐙
⚠️ This is an unofficial trading bot that performs buys and sells on the Kraken cryptocurrency exchange using Python.
Backend to access the Kraken API: python-kraken-sdk
📌 Disclaimer
There is no guarantee that this software will work flawlessly at this or later times. Of course, no responsibility is taken for possible profits or losses. This software probably has some errors in it, so use it at your own risk. Also no one should be motivated or tempted to invest assets in speculative forms of investment. By using this software you release the author(s) from any liability regarding the use of this software.
It is not certain that this software will ever lead to profits.
📝 The Strategy
This algorithm can buy and sell one or more Spot assets without leverage.
The goal is to hold a certain amount of each base currency so that, for example, there is always about $1000 worth of BTC in the portfolio. If the price of Bitcoin increases so that there is now $1050 worth of Bitcoin in the portfolio, the excess $50 is sold. If the price of Bitcoin falls, so that the Bitcoin in the portfolio are only worth $950, the algorithm buys Bitcoin, to hold a value of about $1000 in Bitcoin in the portfolio again.
The algorithm checks the price range every 6 hours by default. The margin, from how many percent price difference the algorithm becomes active, can also be adjusted.
Actions can be logged on the command-line using the logging module with active INFO-level and can also be sent to a telegram bot.
⚙️ Quick start and configuration
0. Check the source code of this algorithm on GitHub and read the README.md carefully
1. Install the Python module:
python3 -m pip install kraken-rebalance-bot
2. Register at Kraken and generate API keys with trading access:
3. (optional) Create a Telegram Bot to get notified when the algorithm takes action
- Create a bot using @BotFather
- Write down/remember the token
- Start @RawDataBot
and write down your personal
chat_id
4. Setup the configuration and start the algorithm
An example configuration can be found in example_config.json
and looks like
this:
{
"base_currency": ["ETH", "XBT"], # base asset(s) to maintain
"quote_currency": ["USD", "USD"], # quote asset(s) to trade with
"target_quantity": [500, 500], # how many of the base to hold (value in quote)
"quote_to_maintain": [200, 200], # freezed quote
"margin": [0.035, 0.035], # buy/sell threshold
"lowest_buy_price": [1000, 15000], # don't buy below this price
"times": ["06:00", "18:00"], # has no effect if use_build_in_scheduler is true
"use_build_in_scheduler": false, # if set to false, the script will only run once
"demo": true, # set to false to enable trading
"telegram": { # optional to get notified via telegram
"token": "telegram-bot-token",
"chat_id": "your-telegram-chat-id"
}
}
In the following a minimal working example is shown that uses this strategy
to hold a target_quantity
of $500 of ETH and $500 worth of XBT (as in the
example config above). Both are traded against USD. The demo
key must be
set to False
to enable the trading functionality. Of course, this also works
with only one asset, too.
rebalance \
--api-key "your-kraken-api-key-here" \
--secret-key "secret-key-here" \
--config config.json
Note: If use_build_in_scheduler
is enabled, there will be no output until
the time is one of times
.
📖 Configuration
Key | Type | Description |
---|---|---|
base_currency |
list[str] |
List of base currencies to trade and hold. |
quote_currency |
list[str] |
List of quote currencies to trade the base currency with. |
target_quantity |
list[float] | list[int] |
Defines how much of a base currency should be held. This value is the worth of the base currency in quote currency. |
quote_to_maintain |
list[float] | list[int] |
How much of quote currency should not be touched in the portfolio. |
margin |
list[float] |
Rebalance levels e.g. 0.035 = 3.5%: at a change of 3.5% the algorithm will buy or sell the missing/surplus quantity |
lowest_buy_price |
list[float] |
(optional) The bot will not buy if the price falls below this price to avoid catching a falling knife. Acts Kind of stop loss, but without selling. |
times |
list[str] |
(optional, default: ['00:00', '06:00', '12:00', '18:00'] ) At which time the bot should check the balances. |
use_build_in_scheduler |
bool |
(optional, default: False ) Checks the balances once and exits if set to False. Otherwise the program will run forever and check the balances at the specified times |
demo |
bool |
Trade or not sample trade output. Set to True if you know what this algorithm does. |
telegram |
{'chat_id': str, 'token': str} |
(optional) Specify token and chat id to get notified when the bot does something. |
If use_build_in_scheduler
is set to false
, the program is executed once
and ends after the iteration over all assets. This offers the possibility to
create own scripts, which execute this algorithm at individual times
(e.g. using cron).
📍 Notes
- Make sure to always have enough quote currency in your Kraken portfolio. Too
low
target_quantity
values can cause the bot not to trade or even crash. Therefore, pay attention to the minimum order sizes.
Example situation:
-
minimal order size of ETH is 0.01
-
price of ETH: $1300
-
margin
is set to 0.04 -
target_quantity
is 200 -
what will happen:
- If your actual holdings of ETH is $192 the bot tries to buy Ethereum with a volume of $8 because $200 - $200 * 0.04 will trigger the buy order. But the minimum order size of Ethereum is 0.01 ETH (see here), and with a price of $1300 => 0.01 ETH equals $13 so: $13 < $8 will raise an error.
- So make sure that the minimum order sizes of the respective assets
are consistent with the
margin
value and thetarget_quantity
. The example would work if thetarge_quantity
is set to 500, because $500 _ 0.04 = $20 which is larger than $1300 _ 0.01 = $13. - Also make sure that there is enough quote currency, otherwise the bot cannot buy anything.
-
This strategy is one of the simplest and most basic approaches for trading cryptocurrencies. For this reason, it should be noted here that this does not necessarily lead to profits. Before running such an algorithm, everyone should be clear about what products are being traded, what these products are for in the first place, and what makes them valuable. Even the best companies, stocks, materials, and also cryptocurrencies can become worthless from one day to the next, so everyone should do their own research and make their decisions based on these results.
-
It has been decided here not to present any material regarding the profitability of this algorithm, as this could lead you to make your decisions based on my successes and failures. What works once or over a long period of time does not necessarily work in the future. But please let me know what you think about this basic algorithm and what could be improved.
-
For any problems or suggestions - please open an issue.
🆕 Contributions
… are welcome!
🔭 References
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file kraken-rebalance-bot-1.0.0.tar.gz
.
File metadata
- Download URL: kraken-rebalance-bot-1.0.0.tar.gz
- Upload date:
- Size: 223.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5ec843c5311ccd4c28c779293806815d5e408ba0e7081889f2f2defcf6eb3c8 |
|
MD5 | d3bd53b93eb5bd5cd260bab59dfbb3b3 |
|
BLAKE2b-256 | 0648117e953338f664458ab9ac4f93fa10721818e7bcbbe6ff27d3a47dcaeaa8 |
File details
Details for the file kraken_rebalance_bot-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: kraken_rebalance_bot-1.0.0-py3-none-any.whl
- Upload date:
- Size: 33.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50bbf56df0bc6121586069491785fe286c5c9ad1d76219674d73d6c2e6294384 |
|
MD5 | eda58fc765b440cfe28569f65e854729 |
|
BLAKE2b-256 | 5b17653e20415194c7322e2d659d91abf6705294c9a3459a3ec8369df689babc |