1
0
Automatic one-way trades.
Go to file
takunomi-build-bot 752ab05de1
All checks were successful
Package Python / Package (push) Successful in 25s
Test Python / Test (push) Successful in 27s
🤖 Bumped version to 0.1.11
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-09-04 20:06:53 +02:00
.gitea/workflows 🤖 Repository layout updated to latest version 2024-08-25 19:16:13 +02:00
config Parse configuration from json 2024-07-22 23:02:25 +02:00
crypto_seller 🤖 Bumped version to 0.1.11 2024-09-04 20:06:53 +02:00
test Output and secrets are now configurable 2024-09-04 20:04:37 +02:00
.gitignore 🤖 Repository layout updated to latest version 2024-07-17 21:51:13 +02:00
LICENSE 🤖 Repository layout updated to latest version 2024-07-17 21:51:13 +02:00
logo.png Test2 2024-07-23 01:02:13 +02:00
pytest.ini Estimates will now be logged during startup 2024-09-04 15:36:00 +02:00
README.md 🤖 Repository layout updated to latest version 2024-08-02 17:17:30 +02:00
requirements_test.txt Output and secrets are now configurable 2024-09-04 20:04:37 +02:00
requirements.txt SecretLoader 2024-08-26 10:05:35 +02:00
ruff.toml 🤖 Repository layout updated to latest version 2024-09-01 18:59:29 +02:00
setup.py 🤖 Repository layout updated to latest version 2024-09-01 18:59:29 +02:00

Crypto Seller, I am going into finance, and I want only your strongest tokens.

Automatic Crypto Seller.

Crypto Seller, I am going into finance, and I want only your strongest tokens.

This program is a wrapper around fin_depo for automatically trading one-way trades, by using repeated trades over a period. Can be used to slowly enter or exit positions, for example low-volume crypto currencies, or as an automated investment savings system.

Supported sites:

  • KuCoin: Online crypto-currency exchange.

Installation

Install dependencies:

pip install -r requirements.txt

Usage

  1. Create configuration file. See below and in examples/ folder for inspiration.
  2. Create KuCoin API key with General and Spot Trading permissions.
  3. Add KuCoin API key secrets (KUCOIN_KEY, KUCOIN_SECRET, KUCOIN_PASS) to an secret_loader accessible location .
  4. Run script using python -m crypto_seller --config CONFIG_FILE.

The script will now automatically sell assets over time. The interval between sell-offs are randomized to avoid front-running, and the amounts are also randomized to avoid certain attacks (only relevant for smallish intervals of less than a week).

The log will both be displayed in the shell, and be placed in a log file output/log.txt. Every sell-off will be logged to the output/trades.csv file, with as much information as possible. Keep both of these for tax purposes, if relevant.

Configuration

Example configurations can be found in the examples/ folder.

Configurations are .json files, with the following fields:

{
    "input_asset": str,
    "output_asset": str,
    "input_amount_low": float,
    "input_amount_high": float,
    "interval_minutes_low": int,
    "interval_minutes_high": int
}

While input_amount_low and input_amount_high can be identical (and the same for interval_minutes_XX) it is discouraged, to avoid frontrunning attacks.

Auditing information

As mentioned before, this program is mostly glue code and wrappering around library functionality. The glue application code allows for running the main loop of checking balance, selling amount and sleeping until the next iteration, with some argument and configuration parsing thrown in.

The most relevant libraries for auditing are:

  • fin_depo: Library for programmatic fetching of depository assets and in some cases allows for order placement. This is the library that reads balances and places market orders.
  • fin_defs: Definitions of financial assets and instruments. Used by fin_depo.
  • secret_loader: Library for loading of secrets (passwords, API keys, secret keys, configuration files, etc.) from standardized locations.
  • python-kucoin: Used by fin_depo to provide KuCoin backend.

Taxation

Some parts of the world suffers from weird and draconian taxation rules on cryptocurrencies, so it helps to keep track of the relevant trading information.

As mentioned above, keep (and backup) both the log file (output/log.txt) and the trades file (output/trades.csv).

To help with tax reporting, it might be useful to sign up to tax oriented websites. For example, CryptoSkat seems to be the most mature on the danish market, and does support KuCoin.

TODO

  • Present an overview of what the script will be doing * Sell what for what? How much, how often? * Give an estimate of how long it will take. * Wait 20 seconds before starting, to allow the user to review.
  • Ensure that a failure during selling results in a safe winding down of the system. * Catch runtime errors when selling * Show errors to log. * Stop loop and exit with results, and error indicator.
  • Document configuration
  • Document code auditing
  • Parse configuration from json.
  • Ensure sell time is included in order details
  • Log all trades to CSV file.
  • Collect information during the run and output after run

License

MIT License

Copyright (c) 2024 Jon Michael Aanes

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.