Trading profit / loss evaluation on Binance spot market

I have been in Binance Automated Trading for some time and have generated a lot of transaction records, so I want to see my historical profit and loss records (for each cryptocurrency). But Binance does not provide this information. After searching for a period of time, various useful code sections were integrated, and then presented graphically with Poltly. The usage is very simple, just follow the following operations to get the total profit and loss in historical. python-binance pip install […]

Read more

A framework for creating and running trading strategies without worrying about integration

Kinetick Trade Bot Kinetick is a framework for creating and running trading strategies without worrying about integration with broker and data streams (currently integrates with zerodha [*]). Kinetick is aimed to make systematic trading available for everyone. Leave the heavy lifting to kinetick so that you can focus on building strategies. Changelog » 📱Screenshots Features A continuously-running Blotter that lets you capture market data even when your algos aren’t running. Tick, Bar and Trade data is stored in MongoDB for […]

Read more

IG Trading Algos and Scripts in Python

IG Trading Algos and Scripts in Python This project is a collection of my work over 2 years building IG Trading Algorithms + Scripts, and Donations would be much appreciated. The Data Folder holds instrument data, raw and cleaned: .csv files are intended to be used for pandas dataframes The algorithms follow a mvc format each controller calls a algorithm to run (some have been commented out) Create a file holding your API keys and state its path in predefined_functions […]

Read more

Leveraged grid-trading bot using CCXT/CCXT Pro library in FTX exchange

The code is designed to perform infinity grid trading strategy in FTX exchange. The basic trader named Gridtrader.py control the number of grids dynamically using the setting in JSON file. asyncGridtrader.py will do the same job asynchronously. Trader with database support, Gridtrader_with_db.py and asyncGridtrader_with_db.py, will store the transaction info in database via mysql. If the trader termineated accidentally, the next execution of trader will follow the history stored in the database. It is recommended to execeute the code in Linux […]

Read more