Fixed XMR percentage growth
Now it actually reflects the XMR growth if you had invested those coins into Monero instead of the ASP.
This commit is contained in:
parent
b3297c9eb3
commit
831f11096a
|
@ -440,7 +440,7 @@ def asp(bot, trigger):
|
||||||
aspsign = '+'
|
aspsign = '+'
|
||||||
else:
|
else:
|
||||||
aspsign = '-'
|
aspsign = '-'
|
||||||
xmrpercent = (((total / xmrbtc_price ) / 650)-1)*100
|
xmrpercent = ((650*(xmrbtc_price*stamp_price)/14950)-1)*100
|
||||||
if xmrpercent >= 0:
|
if xmrpercent >= 0:
|
||||||
xmrsign = '+'
|
xmrsign = '+'
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue