Balance Prediction & Version update
This commit is contained in:
parent
6ec178c3a2
commit
53827fd732
|
@ -122,7 +122,7 @@
|
|||
<div class="col-md-6">
|
||||
<div class="card-box">
|
||||
@{
|
||||
double currentTotalBalance = Model.PTData.GetCurrentBalance();
|
||||
double currentTotalBalance = Model.totalCurrentValue;
|
||||
double estimatedBalance1Month = Math.Round(currentTotalBalance * Math.Pow((1 + (avgDailyGain / 100)), 30.0), 8);
|
||||
double estimatedBalance3Months = Math.Round(currentTotalBalance * Math.Pow((1 + (avgDailyGain / 100)), 90.0), 8);
|
||||
double estimatedBalance6Months = Math.Round(currentTotalBalance * Math.Pow((1 + (avgDailyGain / 100)), 180.0), 8);
|
||||
|
|
|
@ -6,7 +6,7 @@ using Core.Helper;
|
|||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
|
||||
[assembly: AssemblyVersion("2.4.6")]
|
||||
[assembly: AssemblyVersion("2.5.1")]
|
||||
[assembly: AssemblyProduct("PT Magic")]
|
||||
|
||||
namespace PTMagic
|
||||
|
|
Loading…
Reference in New Issue