How does Monkey Profit Calculator Works?
This Monkey Profit Calculator uses a simple mathematical principal to calculate the ROI of Monkey. It fetches the historical Monkey price from the database and compares with current Monkey Price and calculate the profit or loss made on it.
It does this simple calculation get the amount Monkey you would have got by investing x$'s on that day ($x/price of Monkey). Now it calculates the current price of that amount in USD (current Monkey price * amount of Monkey purchased in past). Now the return on investment (ROI) is calculated by dividing amount in USD today by amount invested and multiplying it by 100.
Mathmetical logic behind the same:
$invested_USD = USD invested in past date;
$historical_MNY_price = Price of MNY in past date;
$quantity_MNY = Quantity of MNY in past = $amount invested / $price_on_that_day;
$price_MNY = Current price of MNY;
$USD_today = ($price_MNY * $quantity_MNY) - $invested_USD;
$ROI = ($USD_today/$invested_USD)*100;
And if you want to check future price of Monkey you can check it here: Monkey Price Prediction. This predictions are based on various algorithms applied on the historical price of the Monkey.
If you have any query regarding the above calculator you can comment it in comment box below.