Post
Topic
Board Service Announcements (Altcoins)
Re: Just-Dice.com : Invest in 1% House Edge Dice Game
by
dooglus
on 27/06/2013, 08:35:44 UTC
Percentage change = (V2 - V1) / V1 × 100%
http://www.miniwebtool.com/percentage-change-calculator/?num1=3.35&num2=3.29

Percentage change: 1.791% decrease

Here's me putting your values into your formula:

Code:
>>> # Yesterday I invested 3.35 BTC.
>>> V1 = 3.35
>>> # Right now I have 3.32925858 BTC
>>> V2 = 3.32925858
>>> Percentage_change = (V2 - V1) / V1 * 100
>>> print Percentage_change
-0.619146865672

Now you try?