All Projects → DimensionSoftware → Mcafee Bot

DimensionSoftware / Mcafee Bot

buy coins based on @officialmcafee tweets

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mcafee Bot

coinaly
🚀 Fast and easy to use mobile trade interface for cryptocurrencies. Track your trades to the moon and beyond. Currently only for Bittrex.
Stars: ✭ 32 (-47.54%)
Mutual labels:  cryptocurrencies, trade, bittrex
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (+3368.85%)
Mutual labels:  cryptocurrency, cryptocurrencies, coin
Stocklook
crypto currency library for trading & market making bots, account management, and data analysis
Stars: ✭ 119 (+95.08%)
Mutual labels:  cryptocurrency, bittrex, twitter
Wolfbot
Crypto currency trading bot written in TypeScript for NodeJS
Stars: ✭ 335 (+449.18%)
Mutual labels:  cryptocurrency, cryptocurrencies, trade
Jekyll Paspagon
Sell your Jekyll blog posts in various formats for cryptocurrencies.
Stars: ✭ 8 (-86.89%)
Mutual labels:  cryptocurrency, cryptocurrencies
Cryptoroulette
CryptoRoulette
Stars: ✭ 56 (-8.2%)
Mutual labels:  cryptocurrency, cryptocurrencies
Crypto Whale Watcher
An app to keep a watch on big volume trades of cryptocurrecies on different exchanges by sending alerts via a Telegram Bot.
Stars: ✭ 60 (-1.64%)
Mutual labels:  cryptocurrency, cryptocurrencies
Tsukibot
Discord CryptoBot for Spot Prices
Stars: ✭ 38 (-37.7%)
Mutual labels:  cryptocurrency, trade
Python Bittrex
Python bindings for bittrex
Stars: ✭ 601 (+885.25%)
Mutual labels:  cryptocurrency, bittrex
Cryptoinscriber
📈 A live cryptocurrency historical trade data blotter. Download live historical trade data from any cryptoexchange, be it for machine learning, backtesting/visualizing trading strategies or for Quantopian/Zipline.
Stars: ✭ 27 (-55.74%)
Mutual labels:  cryptocurrency, trade
Halocoin
Experimental cryptocurrency (blockchain) written in python.
Stars: ✭ 44 (-27.87%)
Mutual labels:  cryptocurrency, coin
Crypto Supplies
Cryptocurrency circulating, maximum and total supplies
Stars: ✭ 26 (-57.38%)
Mutual labels:  cryptocurrency, coin
Hth Legacy Old Chain
Old Binaries and source code for HTH. Deprecated.
Stars: ✭ 22 (-63.93%)
Mutual labels:  cryptocurrency, coin
Vue Coin Hive
Start mining coins in your Vue projects in 1 second.
Stars: ✭ 14 (-77.05%)
Mutual labels:  cryptocurrency, coin
Cryptofeed
Cryptocurrency Exchange Websocket Data Feed Handler
Stars: ✭ 643 (+954.1%)
Mutual labels:  cryptocurrency, bittrex
Bittrex Signalr Client
Node.js implementation of SignalR protocol tailored for Bittrex exchange
Stars: ✭ 37 (-39.34%)
Mutual labels:  cryptocurrency, bittrex
Jesse
An advanced crypto trading bot written in Python
Stars: ✭ 1,038 (+1601.64%)
Mutual labels:  cryptocurrency, trade
Cryptex
Gemini, GDAX, Bitfinex, Poloniex, Binance, Kraken, Cryptopia, Koinex, BitGrail and CoinMarketCap cryptocurrency exchange API clients in Swift / iOS SDK. Check prices and account balances using Sample iOS app.
Stars: ✭ 51 (-16.39%)
Mutual labels:  cryptocurrency, cryptocurrencies
Contract
Source code: https://etherscan.io/address/0x2b591e99afe9f32eaa6214f7b7629768c40eeb39#contracts | All rights are reserved. IT IS NOT LICENSED FOR COPYING. We don't use github for dev.
Stars: ✭ 52 (-14.75%)
Mutual labels:  cryptocurrency, coin
Blockchain Cli
⛓️ A minimal blockchain command-line interface.
Stars: ✭ 1,075 (+1662.3%)
Mutual labels:  cryptocurrency, cryptocurrencies

mcafee-bot

When @officialmcafee posts his coin of the day, buy it ASAP.

How it works

  • Read @officialmcafee's tweets in real time.
  • Determine whether the tweet is a coin of the day announcement.
  • If so, determine what coin it is.
  • If it's on bittrex, buy it.

IT DOES NOT SELL!

That is left as an exercise for you.

Installation

Prerequisites

Before you even try to install this, you need to have the following things installed:

# OSX
brew install tesseract --with-all-languages

# Linux (Ubuntu)
apt-get install libtesseract-dev tesseract-ocr

I don't know what to tell you Windows people. Perhaps consider running Ubuntu under VirtualBox.

Cloning

git clone [email protected]:DimensionSoftware/mcafee-bot.git
cd mcafee-bot
yarn

API Keys

You have to go to both twitter and bittrex to get your own API keys. Once acquired, I recommend putting them in secrets.env.

Usage

source secrets.env  # You have to get your own API keys from twitter and bittrex!
bin/repl

This will drop you into a node.js repl with an instantiated bot you can command interactively.

// The bot.
bot

// How much BTC are you willing to spend per purchase?
bot.btcSpend = 0.25

// To get ahead of the pump, 
// what multiplier do you want to add to the current price when putting in the buy order?
// bid == price + (price * bot.adjustment)
bot.adjustment = 0.20

// If you want to see it read tweets:
bot.verbose = true

// If you want it to shut up (which is the default):
bot.verbose = false

// Make the bot connect to twitter and monitor tweets.  VERY IMPORTANT!
bot.init()

It is now waiting for @officialmcafee to tweet his coin of the day.

Tweets

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