All Projects → dmackenz → Binance-Asset-Manager

dmackenz / Binance-Asset-Manager

Licence: other
Extension of binance-python to automatically calculate balances and trade any trading pair.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Binance-Asset-Manager

Mida
The open-source and cross-platform trading framework
Stars: ✭ 263 (+1152.38%)
Mutual labels:  trading-bot, binance
binance-technical-algorithm
Technical trading algorithm for Binance
Stars: ✭ 44 (+109.52%)
Mutual labels:  trading-bot, binance
pancakeswap-prediction-winner
🔥 PancakeSwap is afraid of this CHROME EXTENSION (and CLI)! This bot wins almost every 5 minute BNB-USD option on PancakeSwap (and Candle Genie).
Stars: ✭ 229 (+990.48%)
Mutual labels:  trading-bot, binance
tradoge
DOGE trading bot for instantly buying and selling DOGE cryptocurrency on Binance when Elon Musk tweets about it.
Stars: ✭ 122 (+480.95%)
Mutual labels:  trading-bot, binance
Bybit-Auto-Trading-Bot-Ordes-placed-via-TradingView-Webhook
Python based Trading Bot that uses TradingView.com webhook JSON alerts to place orders(buy/sell/close/manage positions/TP/SL/TS etc.) on Bybit.com. Hire me directly here https://www.freelancer.com/u/Beannsofts for any assistance
Stars: ✭ 235 (+1019.05%)
Mutual labels:  trading-bot, binance
Blankly
🚀 💸 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.
Stars: ✭ 1,456 (+6833.33%)
Mutual labels:  trading-bot, binance
Twitter Activated Crypto Trading Bot
Buys crypto through keyword detection in new tweets. Executes buy in 1 second and holds for a given time (e.g. Elon tweets 'doge', buys Dogecoin and sells after 5 minutes). Tested on Kraken and Binance exchanges
Stars: ✭ 92 (+338.1%)
Mutual labels:  trading-bot, binance
Trading Server
A multi-asset, multi-strategy, event-driven trade execution and management platform for running many algorithms/bots at many venues simultaneously with unified risk management and reporting. Uses MongoDB for storage and Telegram for user notifications/trade consent.
Stars: ✭ 191 (+809.52%)
Mutual labels:  trading-bot, binance
PancakeSwapPredictionBot
PancakeSwap V2 Prediction Bot With Machine Learning | Automated Strategy, Auto Betting, Auto Claim
Stars: ✭ 21 (+0%)
Mutual labels:  trading-bot, binance
binance-pump-bot
Automation for Binance p&d(pump and dump) activity, ensures fastest purchase and provides auto selling functionality to lockdown profit during these events.
Stars: ✭ 112 (+433.33%)
Mutual labels:  trading-bot, binance
java-binance-api
Java Binance API Client
Stars: ✭ 72 (+242.86%)
Mutual labels:  api-wrapper, binance
ninjabot
A fast trading bot platform for cryptocurrency in Go (Binance)
Stars: ✭ 1,021 (+4761.9%)
Mutual labels:  trading-bot, binance
Cryptotrader
A cryptocurrency trader for all famous exchanges
Stars: ✭ 228 (+985.71%)
Mutual labels:  trading-bot, binance
binance-downloader
Python tool to download Binance Candlestick (k-line) data from REST API
Stars: ✭ 44 (+109.52%)
Mutual labels:  trading-bot, binance
Bbgo
The modern cryptocurrency trading bot written in Go.
Stars: ✭ 192 (+814.29%)
Mutual labels:  trading-bot, binance
tradingview-alert-binance-trader
This trading bot listens to the TradingView alert emails on your inbox and executes trades on Binance based on the parameters set on the TD alerts.
Stars: ✭ 153 (+628.57%)
Mutual labels:  trading-bot, binance
Pythonic
Graphical Python programming for trading and automation
Stars: ✭ 131 (+523.81%)
Mutual labels:  trading-bot, binance
Krypto Trading Bot
Self-hosted crypto trading bot (automated high frequency market making) written in C++
Stars: ✭ 2,589 (+12228.57%)
Mutual labels:  trading-bot, binance
LickHunterPRO
Cryptocurrency Trading Bot that looks for large pools of liquidity getting liquidated on margin trading, when it finds these it counter trades them!
Stars: ✭ 114 (+442.86%)
Mutual labels:  trading-bot, binance
Benzaiboten-spot-trading-bot
A trading bot easy to use to be linked to your favorite exchange to automatize the trading on cryptocurrencies
Stars: ✭ 20 (-4.76%)
Mutual labels:  trading-bot, binance

Binance Asset Manager

This is an extension of binance-python library to automatically calculate Binance API filter restrictions and trade any trading pair. Given an API key and API secret, this library will automatically move all of your holdings in one currency to another currency on Binance. This library does all of the complex filters required for the Binance API in the background and boils the code down to a simple buy() and sell() method.

from keys import api_key, api_secret
base_currency = 'USDT'
coin_currency = 'BTC'

bh = BinanceHelper.BinanceHelper(api_key, api_secret, base_currency, coin_currency)

# Automatically calculate step size, tick size, float precision and balance to work with API filters.

# Decide to sell.
if SELL:
  
  # transfer entire holding of coin_currency into base_currency.
  bh.sell()

# Decide to buy.
else:

  # transfer entire holding of base_currency into coin_currency.
  bh.buy()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].