Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cunarist/solie
GUI trading bot designed for targeting the futures markets of Binance
https://github.com/cunarist/solie
backtesting binance binance-bot binance-futures binance-trading-bot bitcoin crypto-bot cryptocurrency cryptocurrency-trading-bot ethereum futuresmarkets gui python simulation strategy technical-analysis trading-bot
Last synced: about 18 hours ago
JSON representation
GUI trading bot designed for targeting the futures markets of Binance
- Host: GitHub
- URL: https://github.com/cunarist/solie
- Owner: cunarist
- License: gpl-3.0
- Created: 2022-02-26T22:38:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T14:14:45.000Z (18 days ago)
- Last Synced: 2025-01-14T01:09:03.798Z (8 days ago)
- Topics: backtesting, binance, binance-bot, binance-futures, binance-trading-bot, bitcoin, crypto-bot, cryptocurrency, cryptocurrency-trading-bot, ethereum, futuresmarkets, gui, python, simulation, strategy, technical-analysis, trading-bot
- Language: Python
- Homepage:
- Size: 21.7 MB
- Stars: 43
- Watchers: 3
- Forks: 8
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crypto-trading-bots - Solie - The ultimate trading bot designed for targeting the futures markets of Binance. It enables you to create and customize your own trading strategies, simulating them using real historical data from Binance with the power of Python. (Open source bots)
- awesome-crypto-trading-bots - Solie - The ultimate trading bot designed for targeting the futures markets of Binance. It enables you to create and customize your own trading strategies, simulating them using real historical data from Binance with the power of Python. (Open source bots)
README
# Solie
[![PyPI - Python Version](https://img.shields.io/pypi/v/solie)](https://pypi.org/project/solie/)
[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![Checked with pyright](https://microsoft.github.io/pyright/img/pyright_badge.svg)](https://microsoft.github.io/pyright/)![Preview](https://github.com/cunarist/solie/assets/66480156/8521df2b-a315-4e00-8963-1db287e0c8ce)
**Solie** is a GUI trading bot designed for targeting the futures markets of Binance.
It enables you to create and customize your own trading strategies, simulating them using real historical data from Binance with the power of Python.
Please note that while this solution provides tools for strategy development, profitability is not guaranteed as success depends on individual decision-making.
Solie connects to Binance, retrieves real-time market and account data, saves it on disk, and presents it as intuitive charts to assist users in strategy development.
## π Usage
### Preparation
First, install [Python](https://www.python.org/). Don't forget to add `python` command to PATH during the installation. You can check that Python is ready with the terminal command below.
```bash
python --version
```Then, install Solie.
```bash
pip install solie
```### Running With a Script File
Make a Python script file that has the extension `.py`. Just copy and paste the content below in the file.
```python
import solieif __name__ == "__main__":
solie.bring_to_life()
```Solie will be brought to life once you execute the Python script file.
Note that on Windows, giving the extension `.pyw` to the file allows you to hide the terminal window and only leave the GUI.
## π₯οΈ Available Platforms
- β Windows: Fully supported
- β Linux: Fully supported
- βΈοΈ macOS: [Currently unstable](https://github.com/cunarist/solie/issues/87)## π Documentation
Read the [documentation](https://solie-docs.cunarist.com) to understand how to turn on auto-trading, make your own strategies with the internal API, and get involved in Solie development.