John McAfee hacked, BHW Trolled

No serious crypto investor listens to that whack job. No proof his account got hacked either. He's taken a lot of heat for his pump and dump bs lately. Then all of sudden 'oh hey yah i got hacked and those weren't my suggestions'. Do you own research always, and Ignore, block, and forget him.
 
Nahhh
He just want to cover his sh** :/
Wonder why xvg drop? I hope not because he dump his larger amount of xvg for profits
 
BHW it's wasn't Trolled.
When a lot of people see a mistake others see an opportunity, I don't advice to buy what he said but I make money with his pump.
 
I still made a lot of money from his tweets. Using an auto-buy Python script that filters out the top 15 coins & makes sure the word is alone & not part of another word. Works fine, makes money. Take profit at 15-30%.
That's pretty interesting. I had an idea for a trading bot which monitors everything and has set parameters, so for example if you bought a crypto/stock at £100 & the value raised to £150, you could set the bot to auto sell if the value drops below let's say £145 in order to maintain a set profit goal & auto buy when the value drops below £90.. it could monitor multiple cryptos at once.. this way you are never in loss.. is this what yours does?
 
And somehow this is proof. Lol.

He announced he was stopping "Coin of the day" (So I shut the bot off) & then started posting loads of shitty coins of the day.

Pretty sure if he wasn't hacked Twitter would come out and say so. Having someone as security conscious as him being hacked and the story being talked about on the UK's biggest news website isn't a good look for them. Don't you think they would dispute it?

That's pretty interesting. I had an idea for a trading bot which monitors everything and has set parameters, so for example if you bought a crypto/stock at £100 & the value raised to £150, you could set the bot to auto sell if the value drops below let's say £145 in order to maintain a set profit goal & auto buy when the value drops below £90.. it could monitor multiple cryptos at once.. this way you are never in loss.. is this what yours does?

Here's the script my friend sent me. I believe they got it from another forum, but I obviously can't share that here.

Code:
i = """
Install instructions:
run "pip install requests python-bittrex tweepy"
edit config below
run script
"""
 
# config - change this
 
twitter_access_token = ""  # from https://apps.twitter.com/app/new
twitter_secret = ""  # from https://apps.twitter.com/app/new
twitter_consumer_key = ""  # twitter -> Keys and Access Tokens -> Your Access Token
twitter_consumer_secret = ""  # twitter -> Keys and Access Tokens -> Your Access Token
bittrex_key = ""  # from bittres
bittrex_secret = ""  # from bittrex
target_user = 961445378  # mcafee. probably shouldn't change.
 
# end config - don't change below this
 
import json
import time
 
import sys
from bittrex.bittrex import Bittrex
from tweepy import OAuthHandler
from tweepy import Stream
from tweepy.streaming import StreamListener
 
 
if True in [not x for x in [twitter_access_token, twitter_secret, twitter_consumer_key, twitter_consumer_secret, bittrex_key, bittrex_secret, target_user]]:
    print "Please edit config"
    print i
    sys.exit(1)
 
bapi = Bittrex(bittrex_key, bittrex_secret)
markets = dict([(m['MarketCurrency'], m['MarketCurrencyLong']) for m in bapi.get_markets()['result'] if
                m['BaseCurrency'] == u'BTC'])
print markets
 
balance = 0
 
 
def updateBalance():
    global balance
    balance = bapi.get_balance("BTC")['result']['Available']
    print balance, "BTC"
 
 
updateBalance()
 
 
def doOrder(abbr):
    print "DoOrder", abbr
    global balance
    buffer = balance * 0.01
    balance -= buffer
    market = "BTC-%s" % (abbr)
    print "Market", market
    time.sleep(1)  # Avoid cloudflare caching responses
    ask = float(bapi.get_ticker(market)['result']['Ask'])
    limit = ask * 1.1
    print "BUY", float(balance) / float(limit), abbr, "@", limit
    time.sleep(1) # Avoid cloudflare caching responses
    o = bapi.buy_limit(market, float(balance) / float(limit), limit)
    print o
    orderuuid = o['result']['uuid']
    print "created order", orderuuid
 
 
class CryptocurrencyListener(StreamListener):
    def on_data(self, data):
        data = json.loads(data)
        if int(data['user']['id']) == int(target_user):
            text = data['text']
            for abbr, name in markets.iteritems():
                if abbr in text:
                    print "Found coin mention", abbr
                    doOrder(abbr)
        return True
 
    def on_error(self, status):
        print status
 
 
if __name__ == '__main__':
    # This handles Twitter authentication and connection to Twitter Streaming API
    l = CryptocurrencyListener()
    auth = OAuthHandler(twitter_consumer_key, twitter_consumer_secret)
    auth.set_access_token(twitter_access_token, twitter_secret)
    stream = Stream(auth, l)
    print "Waiting for tweets from", target_user
    stream.filter(follow=[unicode(target_user)])
 
he is more than 3 times my age and mega multi millianaire, i dont know wth he wants to achieve still in his life


Irony of his excuse you will never see someone as popular as him, he is the fucking founder of McAffee
 
he his suspicious, he ask for money to tell news about coins, 25 bitcoins+ some %, at that age is probably is semi retired hooker wife that is manipulating the account
 
Was advised to try to get into his coin of the day but decided to just hodl onto what i got and keep my positions.
 
Back
Top