Bittrex Pump and Dump Bot for Free !!

in #bittrex7 years ago (edited)

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.

Screen Shot 2017-07-17 at 7.32.51 PM.png

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 :
  1. Click on Add New Key
  2. Make Read Info, Trade Limit, Trade Market - ON. Remember not to give Withdraw permission to your bot
  3. Put you 2-Factor Authentication Code
  4. 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.

Screen Shot 2017-07-17 at 1.30.21 PM.png

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 [email protected]: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:

  1. 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"

  2. 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"

  3. 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"

  4. 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"

  5. 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"

  6. 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"

  7. 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:

  1. 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:

  1. 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

  2. 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 :)

  3. 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

Sort:  

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:inrequire'
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:

ruby bot.rb "STEEM" "3"

"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.

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",

you need to install rest-client gem using : gem install rest-client command

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

You know what there's a HUUUUUUUGFGGEEE gap in the market for?

A easy to use and clear, just to be clear I'll say it again EASY TO USE AND CLEAR

EASY

CLEAR

USE

;-)

An easy and clear GUI and front end for this sort of thing.
There's so much potentiate for this sort of thing I have no idea why it's not been done. So much more potential than just ease of use by a single individual, but I'll have to write my own idea out for that soon. I'd certainly pay a good amount for something that makes using bots like this easy, even really basic bots.

PS:

If someone were to provide proof they can do it, I am sure crowd funding such work would be easy. Even right here on Steemit for a general donation pool. But could easily be some other way where people get rewarded with a free/first copy or reduced price for it using Kickstarter (I know so old school) and that's before you even look at doing an ICO (unnecessary)

Now more than ever this would be popular with all the new people coming in. Come on surely some programmer can get togetehr with a designer or maybe they can do both themselves and make their work multiply in value 20 quintillion times?

Hey, I've built a simple to to use Pump and Dump bot with a beautiful GUI, It's well tested and has made me a fair amount of profit in the past 2 months.

Contact me at https://t.me/CryptoStorm for more info or check out the site http://getcryptostorm.com

frankly Bittrex is very bad exchange platform ,i advise not trading in it ,It has a bunch of tricks to steal your bitcoin

Like what? I've literally had no problem with Bittrex so far.

At least they don't do what Binance and HitBTC do and steal the "dust" you can't sell.

GUI will make api calls slower, everyone want to buy/sell faster during pump&dump

@edb1984 There already is, if you are willing to pay for it that is: it is called Haasbot.... here is the website: https://www.haasonline.com/?ref=211

were you not in the DOS generation? learn to use a CLI!

Coin Marketplace

STEEM 0.26
TRX 0.11
JST 0.033
BTC 64006.33
ETH 3077.08
USDT 1.00
SBD 3.87