Bittrex Pump and Dump Bot for Free !!
Hey folks,
As promised I am sharing pump and dump Bittrex bot with you guys. Hope Everyone will be on the same page then, as new traders used to loose money and traders running bot steal their hard earned money.
Steps to Setup the Bot:
- Go to Bittrex Settings Tab, You need to generate API key to Place BUY or SELL order via Bot. Under API Keys in sidebar :
- Click on Add New Key
- Make Read Info, Trade Limit, Trade Market - ON. Remember not to give Withdraw permission to your bot
- Put you 2-Factor Authentication Code
- Click Update Keys
Now, you will get KEY and SECRET, Copy them and Store it at safe place as SECRET will vanish once page refreshes.
Pre-requisites:
- Git (optional if you don't want to contribute, just download the repo from github)
- Install Ruby on your machine as script is written in ruby language.
Go To my Github Repo, Download/ Clone It: pump and dump bot
git clone git@github.com:aqfaridi/pump_and_dump_bot.git
Navigate to the folder in your local machine, Edit API_KEY and API_SECRET in bittrex_bot.rb with your KEY and SECRET as generated above.
API_KEY = "<YOUR_API_KEY>" API_SECRET = "<YOUR_API_SECRET>"
Run the bot script using following command in terminal/ command prompt:
ruby bittrex_bot.rb "COIN_CODE" "BOT_TYPE"
There are seven types of BOT as follows:
BUY BOT which purchase the coin, taking care of coin not being prepumped, BOT_TYPE=1
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "SC" "1"
SELL BOT which place sell order at given percent decrease as compared to last price of the market , BOT_TYPE=2
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "SC" "2"
BUY_AND_SELL BOT which purchase the coin at minimum price and place the sell order at increment profits, BOT_TYPE=3
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "SC" "3"
SELL_AT_ANY_COST BOT which cancel all the open orders and sell the coin at breakeven or in loss to make an exit from the pump in case of unexpected scenario, BOT_TYPE=4
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "SC" "4"
BUY_ALL BOT which purchases all the low volume ( < 50) coins on Bittrex, taking care of coin not being prepumped, BOT_TYPE=5
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "OPTIONAL" "5"
SELL_ALL BOT which place sell orders against all low volume coins purchased by BOT-5 at given profit( by default 20%) , BOT_TYPE=6
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "OPTIONAL" "6"
CANCEL_ALL BOT which cancel all open orders across all BTC cryptocurrency pairs on Bittrex, BOT_TYPE=7
e.g For Siacoin(SC), Run like this :ruby bittrex_bot.rb "OPTIONAL" "7"
Tuning of Parameters in Bot Script:
- Open bittrex_bot.rb, navigate to the end of file : Change these lines according to the instructions below =>
buy_bot(0.05, 0.006, 0.5) if BOT_TYPE == 1
sell_order = sell_bot(0.1) if BOT_TYPE == 2
buy_sell_bot(0.05, 0.012, 0.5, 0.1, 2) if BOT_TYPE == 3
sell_at_any_cost(0.3) if BOT_TYPE == 4
buy_all_bot(0.05, 0.006, 0.5) if BOT_TYPE == 5
sell_all_bot(0.2) if BOT_TYPE == 6
cancel_all_bot if BOT_TYPE == 7
BUY BOT has three parameters:
# method to place BUY order
# params:
# percent_increase(float) - BUY price will be percent_increase of last_price of the market i.e BUY_PRICE = (1.0 + percent_increase)*last_price
# chunk(float) - Amount of BTC to invest for buying altcoin i.e BUY IF [last_price < (1.0 + prepump_buffer)*low_24_hr]
# prepump_buffer(float) - Allowed buffer for prepump
def buy_bot(percent_increase = 0.05, chunk = 0.006, prepump_buffer = 0.5)
- You can pass values as per the need, for example :
buy_bot(0.05, 0.01, 0.5) if BOT_TYPE == 0
means you want to purchase coin with 5% increase of the last price of the market with 0.01 BTC having prepump_buffer of 50% meaning if coin is prepumped more than 50% of the last 24-hour low then you won't buy.
SELL BOT has one parameter:
# method to place SELL order
# params:
# percent_decrease(float) - BUY price will be percent_decrease of last_price of the market, eg. SELL_PRICE = (1.0 - percent_decrease)*last_price
def sell_bot(percent_decrease = 0.1)
- Change percent_decrease as per the need :
sell_order = sell_bot(0.1) if BOT_TYPE == 2
means you want to sell all the available coins with 10% decrease of the last price of the market.
BUY_AND_SELL BOT has five parameters:
# method to place BUY and SELL order immediately after purchase
# params :
# percent_increase(float) -> BUY_PRICE = (1.0 + percent_increase) * last_price
# chunk(float) -> Amount of BTC to invest for buying altcoin
# prepump_buffer(float) - Allowed buffer for prepump
# profit(float) -> SELL_PRICE = (1.0 + profit) * BUY_PRICE
# splits(int) -> How many splits of available quantity you want to make [profit] increment each time in next sell order
def buy_sell_bot(percent_increase = 0.05, chunk = 0.004, prepump_buffer = 0.5, profit = 0.2, splits = 2)
- You can pass values as per the need, for example :
buy_sell_bot(0.05, 0.012, 0.5, 0.1, 2) if BOT_TYPE == 3
means you want to purchase coin with 5% increase of the last price of the market with 0.012 BTC having prepump_buffer of 50% meaning if coin is prepumped more than 50% of the last 24-hour low then you won't buy. Immediately, 2(splits) Sell orders will be placed with 10% profit of the buy price in first order, next sell order will be placed with 20% profit in incremental manner based on number of splits.
You can change the number of sell order by passing splits (last parameter), but remember 0.005 BTC is the minimum amount required to place a sell order i.e if you keep splits as 10 then you need to invest 0.05 BTC as chunk.
SELL_AT_ANY_COST BOT has one parameter:
# method to place SELL order by cancelling all open orders
# params:
# percent_decrease(float) - BUY price will be percent_decrease of last_price of the market, eg. SELL_PRICE = (1.0 - percent_decrease)*last_price
def sell_at_any_cost(percent_decrease)
- Change percent_decrease as per the need :
sell_at_any_cost(0.3) if BOT_TYPE == 4
means you want to cancel all open orders and place one sell order at 30% decrease of the last traded price of the market.
BUY_ALL BOT has same parameters as that of BUY BOT.
SELL_ALL BOT has one parameter:
# method to sell all BTC pair orders on bittrex
# params- profit_rate(float)[default = 0.2] at which sell orders need to be set
def sell_all_bot(profit_rate = 0.2)
- Change profit_rate as per the need :
sell_all_bot(0.2) if BOT_TYPE == 6
means you want to place sell orders with 20% profit on the net purchased value
CANCEL_ALL BOT has no parameters as its task is only to cancel all open orders.
Must Read :
Beware Crypto Traders !! Pump & Dump Group on Telegram
Don't Panic: soft fork or hard fork is good for Bitcoin !!
Possible Strategies:
Run BUY Bot and then go to Bittrex Trading page, Watch BIDs and ASKs, once you realise that momentum is decreasing, Run SELL Bot at that moment which will book your profit. - This strategy requires manual intervention
Run BUY_AND_SELL Bot and then go to Bittex Trading page, Watch if your sell orders got executed or not, If not and momentum is decreasing then Run SELL_AT_ANY_COST Bot, If Yes then you already made your profit :)
Run BUY_ALL Bot and then Run SELL_ALL Bot at given profit, No need to monitor, once a coin being pumped or attain let say 20% gain, sell order will be executed automatically. [For changing the profit of SELL_ALL Bot, Run CANCEL_ALL Bot, and then again Run SELL_ALL Bot with different profit]
Share your thoughts or strategies in the comment section below. If you are a geek, Do contribute to the github repository
Bot Demo :
Future Scope:
- Extending it detect pump or momentum in the crypto pair.
- Take trade entry / exit on the basis of RSI/MACD/OBV indicators, Run it as Cron job on the server to automate the process.
This Bot is for Bittrex Exchange, I'll make bot for YoBit Exchange depending upon your support, Upvote/Resteem this post to show support and responsibility towards new traders
DON'T FORGET TO MAKE DONATIONS IF YOU FIND IT HELPFUL OR MAKE PROFITS OUT OF IT:
Bitcoin(BTC) Address : 1B4Q5yPHaGDRSfGqzyZj3EevQhP2yAm2Te
Ethereum(ETH) Address : 0xb2fff53651b1335f195361601a44118f7ee1f46a
Litcoin(LTC) Address : LiVuQjBwMhoaf7QLuVGBgx9g8TPYSgcrmx
UpVote if you find it helpful, Resteemit to spread the words, Follow Me for more updates and cryptocurrency technical analysis.
Join My Channel at Telegram : Crypto Trading Technical Analysis
Registered on steemit just because i want to thank you so much for sharing.. Thanks
You're welcome !!
Same here dude! Great work, pretty simple to use. We spoke on Telegram too and he has been of help thought its a free bot!
I will definitely be using this. Upvoted, folliwing, resteemed and promoted!
thanx man :)
thanks for spending time on this! gna follow your project on github closely
im getting the following when i try running it:
C:/Ruby22-x64/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
require': cannot load such file -- rest-client (LoadError) from C:/Ruby22-x64/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in
require'from bittrex_bot.rb:1:in
any advice?
thanks
install 'rest-client' gem using command :
gem install rest-client
I had the same problem, and I solved with that, thanks!!!
I'm testing your bot, all options works fine except "3", buy_sell_bot... I'm getting this:
"https://bittrex.com/api/v1.1/public/getmarketsummary?market=BTC-STEEM"
[0.00045002, 0.000461, 0.00046071]
bot.rb:149:in
buy_chunk': undefined method
[]' for nil:NilClass (NoMethodError)
from bot.rb:222:in
buy_sell_bot' from bot.rb:260:in
<'main>'Help please
This bot is definitely one of the best I have tried so far. You did a really great job.
I can confirm the bot is safe and working.
best pump site is on https://telegram.org join the group
http://t.me/cryptopumpp
and make money
https://t.me/GPPGpumpVIPgroup
Please check out our new aggregator of pumps/channels: https://pumpolymp.com
You can read more here: https://steemit.com/cryptocurrency/@pumpolymp/pumpolymp-your-trusted-guide-to-the-crypto-pump-world
it sounds very interesting. I was thinking of doing something like this manually few days ago. Will try it for sure!
I decided to open another trading account on bittrex for this usage. The script is easy to understand even thou I dont know how to code in ruby. Its much less complicated than i thought. I was just looking for some bots for the last few days and this one is way simpler to install and use than others. Use of RSI and MACD would be a nice touch. Also running cron job would be great. Im not sure thou if coin is bought and then later sold, it would it be bought again if the conditions are still met. It would perhaps be wise to delist if for some time. Like i said i don't know ruby and my programing skills are not that good but in case i manage something with it i will make commits.
sure man :) you're always welcome to create pull request of enhancements.
Thanks for this bot. This is a bit technically more advanced than I'm used to, but will try it. Does this only work for Bittrex? Is there a Poloniex bot?
Currently, It supports only Bittrex exchange, I'll do that for yobit & poloniex later. Working on its future scope of Algorithmic trading to automate this bot based on various indicators & hybrid strategies.
Sounds good. I'm having some problems updating Ruby on my Mac here.
My Ruby version is:
ruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin16]
So I guess need to update it to run your bot, but like I said, I can't get it to work right.
Your instructions said:
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
But that didn't work for me. I went to Homebrew site and got this code, and it worked:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Now I'm trying to follow your next instruction:
$ \curl -sSL https://get.rvm.io | bash -s stable
But that gets me this:
-bash: $: command not found
So I think I understand the bot and how to run it, but can you please help advise me on update Ruby.
you have ruby 2.0.0, just try running bittrex buy bot using :
ruby bittrex_bot.rb "SC" "1"
,Make sure you navigate to the same directory where you kept bittrex script before running bot command.
Hi, is this bot still working?
this is horribly confusing and ineloquent even for someone who isn't a noob. honestly tech is desperately starving for teachers lol
This post received a 2.2% upvote from @randowhale thanks to @aqfaridi! For more information, click here!
Come to Woldwide bittrex pump group
The power of the bittrex forces is strong
you can get good results
this place is real.
Earn 500% ~ 1500% weekly !!!!!
Join Telegram channels http://telegram.me/DvaPump
세계인구를 모아 비트렉스 사이트 대상으로 펌핑작업 하고있습니다.
우리의 세력힘은 정말 강합니다.
그렇기때문에 당신은 좋은 결과가 올수밖에없습니다.
발빠르게 움직이면 보다더 많이 수익 얻을수있습니다.
못믿으시나요? 참여 안하셔도되니 관망만 해보세요^^
법적 규제가 심해지기전에 참여하시어 많이벌고가세요~
텔레그램 설치하고 들어오세요. http://telegram.me/DvaPump