Usage_EN - vimpelican/upbit-bollinger-trader GitHub Wiki
Usage Guide (EN)
This section provides instructions on how to use the UPbit Cryptocurrency Trading Bot. Please follow the steps below to run the bot and customize its behavior.
Running the Bot:
Once the bot is set up, you can run it using the following command:
python trade_bot.py
Command-Line Options:
You can customize the bot's behavior by passing various options when running the bot. Examples will be added here once the command options are finalized.
Example:
python trade_bot.py --config config.json --trade-amount 100
Customizing Parameters:
You can adjust the bot's settings, such as trade amount, trading intervals, and risk management settings, by editing the configuration file (config.json
).
Example Workflow:
-
Run the bot using the default settings:
python trade_bot.py
-
Customize the settings by editing the
config.json
file:{ "trade_amount": 100, "moving_average_window": 20, "risk_level": "medium" }
Stopping or Resetting the Bot:
To stop the bot, use Ctrl+C
in the terminal where the bot is running. Reset any custom settings by re-editing the configuration file.