All Projects → BinaryDevil → binance-pump-bot

BinaryDevil / binance-pump-bot

Licence: other
Automation for Binance p&d(pump and dump) activity, ensures fastest purchase and provides auto selling functionality to lockdown profit during these events.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to binance-pump-bot

Cryptotrader
A cryptocurrency trader for all famous exchanges
Stars: ✭ 228 (+103.57%)
Mutual labels:  trading, trading-bot, exchange, binance
Crypto Trading Bot
Cryptocurrency trading bot in javascript for Bitfinex, Bitmex, Binance, FTX, Bybit ... (public edition)
Stars: ✭ 1,089 (+872.32%)
Mutual labels:  trading, trading-bot, exchange, binance
Krypto Trading Bot
Self-hosted crypto trading bot (automated high frequency market making) written in C++
Stars: ✭ 2,589 (+2211.61%)
Mutual labels:  trading, trading-bot, exchange, binance
Mida
The open-source and cross-platform trading framework
Stars: ✭ 263 (+134.82%)
Mutual labels:  trading, trading-bot, exchange, binance
Roq Api
API for algorithmic and high-frequency trading
Stars: ✭ 132 (+17.86%)
Mutual labels:  trading, trading-bot, exchange
Tardis Node
Convenient access to tick-level real-time and historical cryptocurrency market data via Node.js
Stars: ✭ 126 (+12.5%)
Mutual labels:  trading, exchange, 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 (-17.86%)
Mutual labels:  trading, 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 (+70.54%)
Mutual labels:  trading, trading-bot, binance
Socktrader
🚀 Websocket based trading bot for 💰cryptocurrencies 📈
Stars: ✭ 152 (+35.71%)
Mutual labels:  trading, trading-bot, exchange
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 (+1.79%)
Mutual labels:  trading, 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 (+1200%)
Mutual labels:  trading, trading-bot, binance
adamant-tradebot
Free market-making software for cryptocurrency projects and exchanges. Makes trade volume, maintains spread and liquidity/depth, set price range, and builds live-like dynamic order book.
Stars: ✭ 113 (+0.89%)
Mutual labels:  trading, trading-bot, exchange
Cassandre Trading Bot
Cassandre makes it easy to create your Java crypto trading bot. Our Spring boot starter takes care of exchange connections, accounts, orders, trades, and positions.
Stars: ✭ 120 (+7.14%)
Mutual labels:  trading, trading-bot, binance
Kupi Terminal
Ccxt based, open source, customized, extendable trading platform that supports 130+ crypto exchanges.
Stars: ✭ 104 (-7.14%)
Mutual labels:  trading, exchange, 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 (+36.61%)
Mutual labels:  trading, 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: ✭ 100 (-10.71%)
Mutual labels:  trading, trading-bot, binance
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-59.82%)
Mutual labels:  trading, trading-bot, binance
Eazebot
Free python/telegram bot for easy execution and surveillance of crypto trading plans on multiple exchanges.
Stars: ✭ 51 (-54.46%)
Mutual labels:  trading, trading-bot, exchange
Bbgo
The modern cryptocurrency trading bot written in Go.
Stars: ✭ 192 (+71.43%)
Mutual labels:  trading, trading-bot, binance
binance-downloader
Python tool to download Binance Candlestick (k-line) data from REST API
Stars: ✭ 44 (-60.71%)
Mutual labels:  trading, 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.

Important notes

Read these before you proceed.

  • Pump and dumps are SCAM.
  • You are very likely to lose money.
  • Invest only what you can afford to lose.

But, if you think there is a profit window in pump & dumps, like I did, here's a little tool for you.

Further development

This repository is no longer actively maintained, pull requests are welcome.

Prerequisites

Node.js

You must have (Node.js)[https://nodejs.org/en/] installed!

Installation

Run these in terminal or other command line tool:

git clone [email protected]:BinaryDevil/binance-pump-bot.git
cd binance-pump-bot
npm install

Then, You need to put your own Binance.com API Key and API Secret in your local config.js for the script to run.

You can request for one after logging into their official site.

This gives the script access to your account.

And then you're all set.

Configuration

See pump-config.js, the TRADE_IN is important, it's the coin to trade for the pumped coin, usually it's BTC.

default configurations are as follow, you can tweak these settings as you like:

let config = {};

// Config HERE
// !!! The coin to trade in, make sure you have some in your balance
config.TRADE_IN = "BTC";
// Should market price BUY ALL upon symbol
config.BUY_UPON_SYMBOL = true;
// How many X before take profit happens (will sell 100%)
config.HARD_TAKE_PROFIT = 3.3;
// Where to stop loss
config.HARD_STOP_LOSS = 0.75;
// Soft stop loss (Array, please put in ascending order, orders will be put in quantity of divide of the array length, e.g length = 3 then sell 1/3 every time)
// Not used anymore, bugs exist
// config.SOFT_TAKE_PROFIT = [5, 6, 7, 8]
// config.SOFT_TAKE_PROFIT_PERCENT = 0.7 // How many * available are selling
// Peak take profit
config.PEAK_TAKE_PROFIT_THRESHOLD = 2;
// After Peak threshold, if TIMEOUT ms later the profit times is not greater than right now, SELL ALL
config.PEAK_TAKE_PROFIT_TIMEOUT = 700;
// Max drawback starting point
config.MAX_DRAWBACK_START = 2;
// Max drawback to trigger take profit
config.MAX_DRAWBACK = 0.7;

module.exports = config;

Usage

Running

First make sure you have available balance for the trading pair.

For example, you know the trading pair is XXXX/BTC, then you need to have BTC in your available balance. (Command output will show this).

Then, just run the following command 1~2 minutes before the pump starts:

$ npm start

For Windows, compatibility is better with Windows PowerShell or Git Bash. Using these two command line tools is recommended.

I personally don't use Windows that much, if you find trouble running the script, try Windows PowerShell or Git Bash.

The Process

Have the discord or Telegram or any communication tool that your group uses on the side,

and follow the command output instructions.

(Inserting the coin name will trigger a 93% market buy immediately, divided into 4 market price orders, e.g. 60% + 11% + 11% + 11%, to ensure max volume possible)

The coin name is case ignored, you can input lower case.

Sell orders are triggered automatically by configuration in pump-config.js, or manually with hotkeys(check command line output).

All orders placed by this script will show up in your Binance app or Binance.com as well. You can review these for next-time-better-strategies.

Hotkeys

When the initial purchase is made, hotkeys are enabled:

1 - SELL ALL
2 - SELL HALF
3 - SELL QUARTER
4 - SELL 10%
5 - BUY ALL(based on your balance)
6 - BUY HALF
7 - BUY QUARTER
o - Open browser with the Trading Pair
0 - Toggle Manual(no take profits or stop losses)
(Enter key not needed)

Note: the script is not ready for second-entry during pumps, operate only with your first purchase.

Proxy/VPN Usage(For CN Users especially)

Search for Proxy in pump.js, change them to your local VPN port.

Contribution

Any feature add/improvements are welcome, just send a PR.

This is a very sideways project for me, I might have little time to maintain this (and that I don't participate p&ds any more).

Buy me coffee

If this script helped you make profits or you simply want to support, feel free to donate to these addresses:

  • Ethereum ERC20:0xa4AaDceA7c1b0B23978fbea24faA097beF9335B1
  • BSC BEP20:0xa4AaDceA7c1b0B23978fbea24faA097beF9335B1
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].