Skip to content

This Python script will place a sell limit order for a target price at the right time.

Notifications You must be signed in to change notification settings

itsvikvm/SUI-Seller-KuCoin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SUI KuCoin Seller Script by nftscripts, ReadMe by VikVM

This Python script will place a sell limit order for a target price as soon the best buy bid is reached the target price against USDT.

Supports proxy

Readme By Https://Github.Com/Vikvm, more alpha at Russian here: Https://T.Me/Degenovosti, script is safe for use, verified by me

Script Launch:

1) Download the repo and unpack it

1.1) Install requirements. txt or write in the terminal

pip install loguru pip install kucoin-python pip install python-kucoin

or

pip3 install loguru pip3 install kucoin-python pip3 install python-kucoin

2) Configure accounts.json

Fill in the accounts.json file with your creditentials

Name

Up to you for your understanding

API Key

Get it here https://www.kucoin.com/account/api

API Secret

Generated when the API Key is created

API Passphrase

Refers to the one you used to create the KuCoin API.

Proxy

Use it if you want

Multiaccount Feature

If you have more than 1 account, then add the following for each account

{
      "name": "",
      "api_key": "",
      "api_secret": "",
      "api_passphrase": "",
      "proxy": null
    }

Example code for 2 accounts:

{
  "accounts": [
    {
      "name": "",
      "api_key": "",
      "api_secret": "",
      "api_passphrase": "",
      "proxy": null
    },
    {
      "name": "",
      "api_key": "",
      "api_secret": "",
      "api_passphrase": "",
      "proxy": null
    }
  ]
}

3) Configure config.py

Edit config.py to set the order placement time and a minimal price. Script will check what is the best bid to buy and if the best bid is higher than a setted minimal price then script will place a sell order

MIN PRICE

Treshold price to place an order, price per base currency e.g. 0.01 (USDT)

COEFFICIENT

Edit if you want to place an order in advance or after the best bid is higher than a MIN PRICE

CorrectionCorrection

Use it if the time is lagging


4) Run The Script In Advance Before A Sale


5) Good luck KINGS

About

This Python script will place a sell limit order for a target price at the right time.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%