Fix to XMR growth percent.

This commit is contained in:
ferretinjapan 2017-05-05 22:22:37 +09:30 committed by GitHub
parent c7e3378448
commit b3297c9eb3
1 changed files with 3 additions and 3 deletions

View File

@ -372,7 +372,7 @@ def asp(bot, trigger):
try: try:
r=requests.get(cmcurl) r=requests.get(cmcurl)
j=r.json() j=r.json()
xmrusd_price=float(j[0]['price_usd']) xmrbtc_price=float(j[0]['price_btc'])
except: except:
bot.say("Error connecting to CoinMarketCap") bot.say("Error connecting to CoinMarketCap")
@ -434,13 +434,13 @@ def asp(bot, trigger):
value_ripple = float(last_ripple*27962.37965895) value_ripple = float(last_ripple*27962.37965895)
value_zcash = float(last_zcash*16.47649534) value_zcash = float(last_zcash*16.47649534)
total = value_dash + value_decred + value_factom + value_golem + value_maidsafecoin + value_augur + value_stellar + value_nem + value_ripple + value_zcash total = value_dash + value_decred + value_factom + value_golem + value_maidsafecoin + value_augur + value_stellar + value_nem + value_ripple + value_zcash
xmr_totalvalue = float(stamp_price*total) / xmrusd_price xmr_totalvalue = float(total / xmrbtc_price)
asppercent = (((stamp_price * total) / 14950)-1)*100 asppercent = (((stamp_price * total) / 14950)-1)*100
if asppercent >= 0: if asppercent >= 0:
aspsign = '+' aspsign = '+'
else: else:
aspsign = '-' aspsign = '-'
xmrpercent = ((((stamp_price * total) / xmrusd_price ) / 650)-1)*100 xmrpercent = (((total / xmrbtc_price ) / 650)-1)*100
if xmrpercent >= 0: if xmrpercent >= 0:
xmrsign = '+' xmrsign = '+'
else: else: