Jan-12-2018, 04:42 AM
Hello, Sorry for disturbing you but I need some help with my code.
I am trying to list all crypto currencies with a Base Volume > 200.
When I try to browse the volume I get an error list indices must be integers, not str
I don't understand what's the error could be because because I put a [0] so it's an integer not a str
Many thanks in advance for all your answers
Best regards
And the bittrex lib
I am trying to list all crypto currencies with a Base Volume > 200.
When I try to browse the volume I get an error list indices must be integers, not str
I don't understand what's the error could be because because I put a [0] so it's an integer not a str
Many thanks in advance for all your answers
Best regards
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import sys, signal, json, time from bittrex import bittrex import urllib import urllib2 api = bittrex(KEY, SECRET) def coin_in_list(): currencies = api.getcurrencies() coins = [] a = 0 for i in currencies: coins.append(i[ "Currency" ]) a = a + 1 return coins def volume_checker(coins): for i in coins: if i ! = 'BTC' : market = "BTC-" + i marketsummary = api.getmarketsummary(market) volume_str = marketsummary[ 0 ][ 'BaseVolume' ] volume = float (volume_str) if volume > = 200 : print i print volume_checker(coin_in_list()) |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
#!/usr/bin/env python import urllib import urllib2 import json import time import hmac import hashlib class bittrex( object ): def __init__( self , key, secret): self .key = key self .secret = secret self .public = [ 'getmarkets' , 'getcurrencies' , 'getticker' , 'getmarketsummaries' , 'getmarketsummary' , 'getorderbook' , 'getmarkethistory' , 'GetTicks' ] self .market = [ 'buylimit' , 'buymarket' , 'selllimit' , 'sellmarket' , 'cancel' , 'getopenorders' ] self .account = [ 'getbalances' , 'getbalance' , 'getdepositaddress' , 'withdraw' , 'getorder' , 'getorderhistory' , 'getwithdrawalhistory' , 'getdeposithistory' ] def query( self , method, values = {}): if method in self .public: elif method in self .market: elif method in self .account: else : return 'Something went wrong, sorry.' url + = method + '?' + urllib.urlencode(values) if method not in self .public: url + = '&apikey=' + self .key url + = '&nonce=' + str ( int (time.time())) signature = hmac.new( self .secret, url, hashlib.sha512).hexdigest() headers = { 'apisign' : signature} else : headers = {} req = urllib2.Request(url, headers = headers) response = json.loads(urllib2.urlopen(req).read()) if response[ "result" ]: return response[ "result" ] else : return response[ "message" ] def query2( self , method, values = {}): if method in self .public: else : return 'Something went wrong, sorry.' url + = method + '?' + urllib.urlencode(values) if method not in self .public: url + = '&apikey=' + self .key url + = '&nonce=' + str ( int (time.time())) signature = hmac.new( self .secret, url, hashlib.sha512).hexdigest() headers = { 'apisign' : signature} else : headers = {} req = urllib2.Request(url, headers = headers) response = json.loads(urllib2.urlopen(req).read()) if response[ "result" ]: return response[ "result" ] else : return response[ "message" ] def getmarkets( self ): return self .query( 'getmarkets' ) def getcurrencies( self ): return self .query( 'getcurrencies' ) def getticker( self , market): return self .query( 'getticker' , { 'market' : market}) def get_historical_data( self , market, unit): return self .query2( 'GetTicks' , { 'marketName' : market, 'tickInterval' : unit}) def getmarketsummaries( self ): return self .query( 'getmarketsummaries' ) def getmarketsummary( self , market): return self .query( 'getmarketsummary' , { 'market' : market}) def getorderbook( self , market, type , depth = 20 ): return self .query( 'getorderbook' , { 'market' : market, 'type' : type , 'depth' : depth}) def getmarkethistory( self , market, count = 20 ): return self .query( 'getmarkethistory' , { 'market' : market, 'count' : count}) def buylimit( self , market, quantity, rate): return self .query( 'buylimit' , { 'market' : market, 'quantity' : quantity, 'rate' : rate}) def buymarket( self , market, quantity): return self .query( 'buymarket' , { 'market' : market, 'quantity' : quantity}) def selllimit( self , market, quantity, rate): return self .query( 'selllimit' , { 'market' : market, 'quantity' : quantity, 'rate' : rate}) def sellmarket( self , market, quantity): return self .query( 'sellmarket' , { 'market' : market, 'quantity' : quantity}) def cancel( self , uuid): return self .query( 'cancel' , { 'uuid' : uuid}) def getopenorders( self , market): return self .query( 'getopenorders' , { 'market' : market}) def getopenorders_special( self ): return self .query( 'getopenorders' ) def getbalances( self ): return self .query( 'getbalances' ) def getbalance( self , currency): return self .query( 'getbalance' , { 'currency' : currency}) def getdepositaddress( self , currency): return self .query( 'getdepositaddress' , { 'currency' : currency}) def withdraw( self , currency, quantity, address): return self .query( 'withdraw' , { 'currency' : currency, 'quantity' : quantity, 'address' : address}) def getorder( self , uuid): return self .query( 'getorder' , { 'uuid' : uuid}) def getorderhistory( self , market, count): return self .query( 'getorderhistory' , { 'market' : market, 'count' : count}) def getwithdrawalhistory( self , currency, count): return self .query( 'getwithdrawalhistory' , { 'currency' : currency, 'count' : count}) def getdeposithistory( self , currency, count): return self .query( 'getdeposithistory' , { 'currency' : currency, 'count' : count}) |