Beispiel #1
0
    def add_bittrex_coins_to_keltner_coins(self, coinmarketcap_coins):
        self.keltner_coins = {}
        self.coinmarketcap_coins = self.update_coinmarketcap_coins()
        self.bittrex_coins = self.update_bittrex_coins(
            self.coinmarketcap_coins)
        for market in self.bittrex_coins:
            if market.startswith('BTC'):
                symbol = utils.get_second_market_coin(market)
                if symbol in coinmarketcap_coins:
                    coin_rank = int(coinmarketcap_coins[symbol])
                    if coin_rank <= self.lowest_rank:
                        t = {}
                        t['market'] = market
                        t['price_data_seconds'] = []
                        t['price_data_minutes'] = []
                        t['tr_data'] = []
                        t['atr_data'] = []
                        t['ema_data'] = []
                        t['upper_band_data'] = []
                        t['middle_band_data'] = []
                        t['lower_band_data'] = []

                        self.keltner_coins[market] = t

        utils.json_to_file(self.keltner_coins, "keltner_coins.json")
    def update_reddit_coins(self):
        self.mentioned_words = {}
        reddit_coins = utils.file_to_json('reddit_coins.json')
        for submission in self.reddit_api.subreddit('CryptoCurrency').top(
                'day'):
            if submission not in reddit_coins['submissions']:
                self.add_to_words_coins(submission.title, submission.score,
                                        submission.created)

                reddit_coins = self.find_mentions(submission.title,
                                                  reddit_coins,
                                                  str(submission),
                                                  submission.created,
                                                  submission.score)
                for comment in submission.comments:

                    try:
                        reddit_coins = self.find_mentions(
                            comment.body, reddit_coins, str(comment),
                            comment.created, comment.score)
                        self.add_to_words_coins(comment.body, comment.score,
                                                comment.created)
                    except:
                        pass
            reddit_coins['submissions'].append(str(submission))
        utils.json_to_file(reddit_coins, 'reddit_coins.json')
        self.rank_by_mentions()
        self.rank_by_upvotes()
        self.rank_by_upvotes_and_sentiment()
Beispiel #3
0
    def update_keltner_coins(self):
        highest_price_history = utils.file_to_json(
            'coin_highest_price_history.json')

        for market in self.keltner_coins:
            if market in self.bittrex_coins:
                bittrex_coin = self.bittrex_coins[market]
                cur_price = bittrex_coin['Last']
                self.keltner_coins[market]['price_data_seconds'].append(
                    cur_price)

                highest_price_history = self.update_highest_price(
                    market, highest_price_history, cur_price)

                if self.ten_second_count > 5:
                    self.keltner_coins[market]['price_data_minutes'].append(
                        cur_price)
                    self.update_atr(market)
                    self.update_ema(market)
                    self.update_bands(market)
                    self.keltner_coins[market]['price_data_seconds'] =\
                        self.keltner_coins[market]['price_data_seconds'][-6:]

                    if len(self.keltner_coins[market]
                           ['price_data_minutes']) == self.keltner_period:
                        self.keltner_coins[market]['price_data_minutes'].pop(0)
        if self.ten_second_count > 5:
            self.ten_second_count = 0
        else:
            self.ten_second_count += 1

        utils.json_to_file(highest_price_history,
                           'coin_highest_price_history.json')
        utils.json_to_file(self.keltner_coins, "keltner_coins.json")
Beispiel #4
0
    def store_top_10_data(self):
        most_upvoted = self.coins_ranked_by_upvotes
        # most_mentioned = self.coins_ranked_by_mentions
        reddit_coins = utils.file_to_json('reddit_coins.json')
        count = 10
        out_string = ""
        top_coins = {}
        rank = 0
        for pair in most_upvoted:
            if count <= 0:
                break
            count -= 1
            symbol = pair[0]
            coin_data = reddit_coins[symbol]
            out_string += "*********************** " + symbol + " ***********************" + "\n"

            self.add_to_top_coins("BTC-" + symbol, top_coins, rank)
            rank += 1

            upvote_list = coin_data['upvotes']
            text_list = coin_data['text']
            time_list = coin_data['mentioned_times']

            sorted_comments = self.sort_comments(upvote_list, text_list,
                                                 time_list)

            for i in range(len(upvote_list)):
                out_string += str(
                    sorted_comments[i][0]) + " : " + utils.time_stamp_to_date(
                        sorted_comments[i]
                        [2]) + " : " + sorted_comments[i][1] + "\n\n"
            out_string += "\n\n"
        utils.json_to_file(top_coins, 'reddit_top_coins.json')
        utils.clear_and_write_to_file('reddit_info.txt', out_string)
        utils.send_to_ftp_server('reddit_info.txt')
    def percent_sell_strat(self):
        ignored = utils.file_to_json("ignored_coins.json")
        held_markets = [market for market in self.held_coins]
        for coin_market in held_markets:
            current_high = self.history_coins[coin_market]
            coin_price = float(self.bittrex_coins[coin_market]['Last'])
            percent_change_24h = utils.get_percent_change_24h(
                self.bittrex_coins[coin_market])

            if coin_price < current_high * 0.80 \
                    or percent_change_24h >= 110:

                coin_to_sell = utils.get_second_market_coin(coin_market)

                balance = self.api.get_balance(coin_to_sell)

                if balance['success']:
                    amount = float(balance['result']['Available'])
                    if amount > 0:
                        utils.sell(self.api, amount, coin_market,
                                   self.bittrex_coins)
                        ignored[coin_market] = 1
                        utils.json_to_file(ignored, "ignored_coins.json")
                else:
                    utils.print_and_write_to_logfile(
                        "Could not retrieve balance: " + balance['message'])
Beispiel #6
0
def update_pending_orders(orders):
    """
    Checks bitttrex's open orders and if a coin that's in
    pending_orders is no longer in bittrex's pending orders
    it has gone through, so we add it to our held coins.
    :param orders:
    :return:
    """

    pending_orders = utils.file_to_json("pending_orders.json")

    # Move processed buy orders from pending_orders into held_coins
    processing_orders = [order['OrderUuid'] for order in orders]

    buy_uuids_markets = [(pending_orders['Buying'][market]['uuid'], market)
                         for market in pending_orders['Buying']]

    for buy_uuids_market in buy_uuids_markets:
        buy_uuid = buy_uuids_market[0]
        if buy_uuid not in processing_orders:
            buy_market = buy_uuids_market[1]

            pending_buy_order = pending_orders['Buying'][buy_market]
            amount = str(pending_buy_order['amount'])
            utils.print_and_write_to_logfile("Buy order: " + amount + " of " +
                                             buy_market +
                                             " Processed Successfully " +
                                             "UUID: " + buy_uuid + " " +
                                             utils.get_date_time())
            move_to_from_held(buy_market, 'Buying')

            # Add price to highest_price_history
            highest_price_list = utils.file_to_json(
                "coin_highest_price_history.json")
            highest_price_list[buy_market] = pending_orders['Buying'][
                buy_market]['price_bought']
            utils.json_to_file(highest_price_list,
                               'coin_highest_price_history.json')

    # Move processed sold orders from pending_orders into held_coins
    sell_uuids_markets = [(pending_orders['Selling'][market]['uuid'], market)
                          for market in pending_orders['Selling']]

    for sell_uuids_market in sell_uuids_markets:
        if sell_uuids_market[0] not in processing_orders:
            pending_sell_order = pending_orders['Selling'][
                sell_uuids_market[1]]
            amount = str(pending_sell_order['amount'])
            utils.print_and_write_to_logfile("Sell order: " + amount + " of " +
                                             " " + sell_uuids_market[1] +
                                             " Processed Successfully " +
                                             "UUID: " + sell_uuids_market[0] +
                                             " " + utils.get_date_time())
            move_to_from_held(sell_uuids_market[1], 'Selling')
Beispiel #7
0
 def reset_keltner_coins(self):
     self.keltner_coins = utils.file_to_json("keltner_coins.json")
     for coin in self.keltner_coins:
         self.keltner_coins[coin]['price_data_minutes'] = []
         self.keltner_coins[coin]['price_data_seconds'] = []
         self.keltner_coins[coin]['tr_data'] = []
         self.keltner_coins[coin]['atr_data'] = []
         self.keltner_coins[coin]['ema_data'] = []
         self.keltner_coins[coin]['upper_band_data'] = []
         self.keltner_coins[coin]['middle_band_data'] = []
         self.keltner_coins[coin]['lower_band_data'] = []
     utils.json_to_file(self.keltner_coins, "keltner_coins.json")
Beispiel #8
0
def clean_orders(orders):
    """
    Finds any order that has been attempting to buy
    or sell for longer than the variable
    time_until_cancel_processing_order_minutes
    and attempt to cancel them on bittrex, and
    also deletes them from pending_orders.json

    :param orders:
    :return void:
    """

    pending_orders = utils.file_to_json("pending_orders.json")

    for order in orders:
        time_opened = order['Opened']
        time_passed = utils.get_time_passed_minutes(time_opened)

        uuid = order['OrderUuid']
        market = ""

        buying_or_selling = 'Buying' if order[
            'OrderType'] == 'LIMIT_BUY' else 'Selling'

        for pending_market in pending_orders[buying_or_selling]:
            if pending_orders[buying_or_selling][pending_market][
                    'uuid'] == uuid:
                market = pending_market

        if time_passed > time_until_cancel_processing_order_minutes:
            uuid = order['OrderUuid']
            cancel_order = api.cancel(uuid)

            if cancel_order['success']:

                if market in pending_orders[buying_or_selling]:
                    del pending_orders[buying_or_selling][market]

                    utils.json_to_file(pending_orders, "pending_orders.json")
                    utils.print_and_write_to_logfile("Cancel Order of " +
                                                     str(order["Quantity"]) +
                                                     " " +
                                                     str(order['Exchange']) +
                                                     " Successful " +
                                                     utils.get_date_time())
            else:
                utils.print_and_write_to_logfile("Cancel Order of " +
                                                 str(order["Quantity"]) +
                                                 order['Exchange'] +
                                                 " Unsuccessful: " +
                                                 cancel_order['message'] +
                                                 " " + utils.get_date_time())
Beispiel #9
0
def move_to_from_held(pending_market, buying_or_selling):
    """
    Moves a coin from pending_orders.json
    to held_coins
    :param pending_market:
    :param buying_or_selling:
    :return:
    """

    held_coins = utils.file_to_json("held_coins.json")
    pending_orders = utils.file_to_json("pending_orders.json")

    global_return = utils.file_to_json('global_return.json')

    pending_order = pending_orders[buying_or_selling][pending_market]

    if buying_or_selling == 'Buying':
        held_coins[pending_order['market']] = pending_order
        utils.json_to_file(held_coins, 'held_coins.json')
        global_return['Invested'] += pending_orders['Buying'][pending_market][
            'total_paid']

    elif buying_or_selling == 'Selling':
        del held_coins[pending_market]
        utils.json_to_file(held_coins, "held_coins.json")
        global_return['Gain'] += pending_orders['Selling'][pending_market][
            'gain']

    utils.json_to_file(global_return, 'global_return.json')
    del pending_orders[buying_or_selling][pending_market]
    utils.json_to_file(pending_orders, "pending_orders.json")
Beispiel #10
0
    def add_to_keltner_coins(self, market):

        t = {}
        t['market'] = market
        t['price_data_seconds'] = []
        t['price_data_minutes'] = []
        t['tr_data'] = []
        t['atr_data'] = []
        t['ema_data'] = []
        t['upper_band_data'] = []
        t['middle_band_data'] = []
        t['lower_band_data'] = []

        self.keltner_coins[market] = t
        utils.json_to_file(self.keltner_coins, "keltner_coins.json")
    def low_high_buy_strat(self, total_bitcoin):
        top_reddit_coins = utils.file_to_json('reddit_top_coins.json')
        markets_to_ignore = ['BTC-ETH', 'BTC-BTC']

        for rank in range(len(top_reddit_coins)):
            market = top_reddit_coins[str(rank)]['market']

            if market not in markets_to_ignore:

                slots_open = self.total_slots - len(self.held_coins) - len(
                    self.pending_orders['Buying']) - len(
                        self.pending_orders['Selling'])
                bitcoin_to_use = float(total_bitcoin / (slots_open + .25))

                coins_pending_buy = [
                    market for market in self.pending_orders['Buying']
                ]
                coins_pending_sell = [
                    market for market in self.pending_orders['Selling']
                ]

                if market not in self.held_coins and market not in coins_pending_buy and market not in \
                        coins_pending_sell:

                    percent_change_24h = utils.get_percent_change_24h(
                        self.bittrex_coins[market])
                    coin_low_bars = utils.file_to_json('coin_low_bars.json')
                    low_bar = coin_low_bars[market]

                    if percent_change_24h <= self.desired_low_point and percent_change_24h <= low_bar:
                        coin_low_bars[market] = low_bar - 10
                        utils.json_to_file(coin_low_bars, 'coin_low_bars.json')

                    elif low_bar != self.desired_low_point and percent_change_24h > low_bar + 10:
                        self.update_bittrex_coins()
                        coin_price = float(self.bittrex_coins[market]['Last'])
                        amount = bitcoin_to_use / coin_price
                        if amount > 0:
                            result = utils.buy(self.api, market, amount,
                                               coin_price, percent_change_24h,
                                               self.desired_gain, 0)
                            if not result['success']:
                                utils.print_and_write_to_logfile(
                                    "Failed to make buy order " + market)
                            else:
                                utils.print_and_write_to_logfile(
                                    "Attempting buy order of " + str(amount) +
                                    " of " + market)
Beispiel #12
0
 def update_reddit_coins(self):
     reddit_coins = utils.file_to_json('reddit_coins.json')
     for submission in self.reddit_api.subreddit('CryptoCurrency').top(
             'day'):
         if submission not in reddit_coins['submissions']:
             reddit_coins = self.find_mentions(submission.title,
                                               reddit_coins,
                                               str(submission),
                                               submission.created,
                                               submission.score)
             for comment in submission.comments:
                 reddit_coins = self.find_mentions(comment.body,
                                                   reddit_coins,
                                                   str(comment),
                                                   comment.created,
                                                   comment.score)
         reddit_coins['submissions'].append(str(submission))
     utils.json_to_file(reddit_coins, 'reddit_coins.json')
     self.rank_by_mentions()
     self.rank_by_upvotes()
Beispiel #13
0
    def low_high_sell_strat(self):
        for market in self.held_coins:
            cur_price = float(self.bittrex_coins[market]['Last'])
            bought_price = self.held_coins[market]['price_bought']
            change = utils.percent_change(bought_price, cur_price)

            desired_gain = self.held_coins[market]['desired_gain']
            high_bar = self.held_coins[market]['high_bar']

            if change >= desired_gain and change >= high_bar:
                self.held_coins[market]['high_bar'] = high_bar + 10
                utils.json_to_file(self.held_coins, 'held_coins.json')
            elif high_bar != desired_gain and change < high_bar - 10:
                coin_to_sell = utils.get_second_market_coin(market)
                balance = self.api.get_balance(coin_to_sell)
                if balance['success']:
                    amount = float(balance['result']['Available'])
                    self.update_bittrex_coins()
                    utils.sell(self.api, amount, market, self.bittrex_coins)
                else:
                    utils.print_and_write_to_logfile("Could not retrieve balance: " + balance['message'])
 def initialize_reddit_coins(self):
     market_names = utils.get_bittrex_market_names()
     market_names['submissions'] = []
     utils.json_to_file(market_names, 'reddit_coins.json')
    def percent_buy_strat(self, total_bitcoin):

        symbol_1h_change_pairs = utils.get_coinmarketcap_1hr_change(
            self.coinmarketcap_coins)
        slots_open = self.total_slots - len(self.held_coins) - len(
            self.pending_orders['Buying']) - len(
                self.pending_orders['Selling'])

        if slots_open <= 0:
            utils.print_and_write_to_logfile("0 slots open")
            return

        bitcoin_to_use = float(total_bitcoin / slots_open * 0.990)

        if bitcoin_to_use < self.satoshi_50k:
            utils.print_and_write_to_logfile(
                "Order less than 50k satoshi (~$2). Attempted to use: $" +
                str(utils.bitcoin_to_USD(bitcoin_to_use)) + ", BTC: " +
                str(bitcoin_to_use))
            return

        for hist_coin in self.history_coins:
            coin_price = float(self.bittrex_coins[hist_coin]['Last'])
            # update highest price recorded while held
            if hist_coin in self.held_coins:
                highest_recorded_price = float(self.history_coins[hist_coin])
                if coin_price > highest_recorded_price:
                    self.history_coins[hist_coin] = coin_price
                    utils.json_to_file(self.history_coins,
                                       "coin_highest_price_history.json")

        ignored = utils.file_to_json("ignored_coins.json")
        # checking all bittrex coins to find the one
        for coin in self.bittrex_coins:
            if coin in ignored:
                continue

            percent_change_24h = utils.get_percent_change_24h(
                self.bittrex_coins[coin])
            # if coin 24 increase between x and y
            if self.buy_min_percent <= percent_change_24h <= self.buy_max_percent:
                rank = utils.get_ranks(self.coinmarketcap_coins)
                coin_rank = rank[utils.get_second_market_coin(coin)]
                coin_volume = self.bittrex_coins[coin]['Volume']
                # volume must be > 200 so we can sell when want
                if float(
                        coin_rank
                ) > 40 and coin not in self.history_coins and coin_volume > 200:
                    market = self.bittrex_coins[coin]['MarketName']
                    if market.startswith('ETH'):
                        break
                    if market.startswith('BTC'):
                        coin_to_buy = utils.get_second_market_coin(market)
                        coin_1h_change = float(
                            symbol_1h_change_pairs[coin_to_buy])

                        coins_pending_buy = [
                            market for market in self.pending_orders['Buying']
                        ]
                        coins_pending_sell = [
                            market for market in self.pending_orders['Selling']
                        ]

                        if market not in self.held_coins and market not in coins_pending_buy and market not in \
                                coins_pending_sell and coin_1h_change > self.buy_desired_1h_change:

                            coin_price = float(
                                self.bittrex_coins[coin]['Last'])
                            amount = bitcoin_to_use / coin_price
                            if amount > 0:
                                utils.buy(self.api, market, amount, coin_price,
                                          percent_change_24h, 0,
                                          coin_1h_change)
Beispiel #16
0
    def percent_buy_strat(self, total_bitcoin):
        """
        Searches all coins on bittrex and buys up to the
        variable "total_slots" different coins. Splits the
        amount of bitcoin use on each evenly.

        :param total_bitcoin:
        :return:
        """
        symbol_1h_change_pairs = utils.get_coinmarketcap_1hr_change(
            self.coinmarketcap_coins)
        slots_open = self.total_slots - len(self.held_coins) - len(
            self.pending_orders['Buying']) - len(
                self.pending_orders['Selling'])

        if slots_open <= 0:
            utils.print_and_write_to_logfile("0 slots open")
            return

        bitcoin_to_use = float(total_bitcoin / slots_open * 0.990)

        if bitcoin_to_use < self.satoshi_50k:
            utils.print_and_write_to_logfile(
                "Order less than 50k satoshi (~$2). Attempted to use: $" +
                str(utils.bitcoin_to_USD(bitcoin_to_use)) + ", BTC: " +
                str(bitcoin_to_use))
            return

        for hist_coin in self.history_coins:
            bitcoin_to_use = float(total_bitcoin / slots_open * 0.990)
            coin_price = float(self.bittrex_coins[hist_coin]['Last'])
            # update highest price recorded while held
            if hist_coin in self.held_coins:
                highest_recorded_price = float(self.history_coins[hist_coin])
                if coin_price > highest_recorded_price:
                    self.history_coins[hist_coin] = coin_price
                    utils.json_to_file(self.history_coins,
                                       "coin_highest_price_history.json")

            # checking if the price of the sold coin is now greater then previously recorded high
            elif float(self.history_coins[hist_coin]) * 1.1 < coin_price:

                coins_pending_buy = [
                    market for market in self.pending_orders['Buying']
                ]
                coins_pending_sell = [
                    market for market in self.pending_orders['Selling']
                ]

                if hist_coin not in coins_pending_buy and hist_coin not in coins_pending_sell:
                    amount = bitcoin_to_use / coin_price
                    if amount > 0:
                        coin_to_buy = utils.get_second_market_coin(hist_coin)
                        coin_1h_change = float(
                            symbol_1h_change_pairs[coin_to_buy])
                        percent_change_24h = utils.get_percent_change_24h(
                            self.bittrex_coins[hist_coin])
                        utils.buy(self.api, hist_coin, amount, coin_price,
                                  percent_change_24h, 0, coin_1h_change)

                        slots_open = self.total_slots - len(
                            self.held_coins) - len(
                                self.pending_orders['Buying']) - len(
                                    self.pending_orders['Selling'])
                        bitcoin_to_use = float(total_bitcoin / slots_open *
                                               0.990)

        # checking all bittrex coins to find the one
        for coin in self.bittrex_coins:
            percent_change_24h = utils.get_percent_change_24h(
                self.bittrex_coins[coin])
            # if coin 24 increase between x and y
            if self.buy_min_percent <= percent_change_24h <= self.buy_max_percent:
                rank = utils.get_ranks(self.coinmarketcap_coins)
                coin_rank = rank[utils.get_second_market_coin(coin)]
                coin_volume = self.bittrex_coins[coin]['Volume']
                # volume must be > 200 so we can sell when want
                if float(
                        coin_rank
                ) > 50 and coin not in self.history_coins and coin_volume > 200:
                    market = self.bittrex_coins[coin]['MarketName']
                    if market.startswith('ETH'):
                        break
                    if market.startswith('BTC'):
                        coin_to_buy = utils.get_second_market_coin(market)
                        coin_1h_change = float(
                            symbol_1h_change_pairs[coin_to_buy])

                        coins_pending_buy = [
                            market for market in self.pending_orders['Buying']
                        ]
                        coins_pending_sell = [
                            market for market in self.pending_orders['Selling']
                        ]

                        if market not in self.held_coins and market not in coins_pending_buy and market not in \
                                coins_pending_sell and coin_1h_change > self.buy_desired_1h_change:

                            coin_price = float(
                                self.bittrex_coins[coin]['Last'])
                            amount = bitcoin_to_use / coin_price
                            if amount > 0:
                                buy_request = utils.buy(
                                    self.api, market, amount, coin_price,
                                    percent_change_24h, 0, coin_1h_change)
                                if buy_request['success']:
                                    utils.print_and_write_to_logfile(
                                        "Buy order of " + str(amount) + " " +
                                        market + " requested")
                                    self.refresh_held_pending()
                                else:
                                    utils.print_and_write_to_logfile(
                                        buy_request['message'])
Beispiel #17
0
 def fill_low_bars(self):
     coin_low_bars = {}
     for market in self.bittrex_coins:
         coin_low_bars[market] = self.desired_low_point
     utils.json_to_file(coin_low_bars, 'coin_low_bars.json')