@page @model SalesAnalyzer @using System.Globalization @{ ViewData["Title"] = ""; } @section Styles { }
Total Current Value: |
Starting Value: |
---|
Unable to load graph, no sales data found.
}Unable to load graph, no sales data found.
}Unable to load graph, no sales data found.
}Total | AVG/Day | AVG/Month | |
---|---|---|---|
Sales | @totalSales | @avgDailySales | @avgMonthlySales |
@Model.PTData.Misc.Market | @totalProfit.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Math.Round(totalProfit / totalDays, 8).ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @avgMonthlyProfit.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) |
Funding | @Html.Raw(Math.Round(totalFundingFees,8).ToString("#0.00000000", new System.Globalization.CultureInfo("en-US"))) | @Html.Raw(Math.Round(totalFundingFees / totalDays,8).ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US"))) | @Html.Raw(Math.Round(totalFundingFees / totalMonths,8).ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US"))) |
@Model.PTData.Properties.Currency | @Html.Raw(Math.Round(totalProfitFiat,0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Html.Raw(Math.Round(totalProfitFiat / totalDays, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Html.Raw(Math.Round(totalProfitFiat / totalMonths, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) |
Gain | @totalPercentGain.ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % | @avgDailyGain.ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % | @avgMonthlyGain.ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
@Model.PTData.Misc.Market | @Model.PTData.Properties.Currency | Gain | |
---|---|---|---|
1 Week | @estimatedBalance1Week.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Html.Raw(Math.Round(estimatedBalance1Week * Model.MiscData.FiatConversionRate, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Math.Round((estimatedBalance1Week - totalCurrentValue) / totalCurrentValue * 100, 2).ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
1 Month | @estimatedBalance1Month.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Html.Raw(Math.Round(estimatedBalance1Month * Model.MiscData.FiatConversionRate, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Math.Round((estimatedBalance1Month - totalCurrentValue) / totalCurrentValue * 100, 2).ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
3 Months | @estimatedBalance3Months.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Html.Raw(Math.Round(estimatedBalance3Months * Model.MiscData.FiatConversionRate, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Math.Round((estimatedBalance3Months - totalCurrentValue) / totalCurrentValue * 100, 2).ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
6 Months | @estimatedBalance6Months.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Html.Raw(Math.Round(estimatedBalance6Months * Model.MiscData.FiatConversionRate, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Math.Round((estimatedBalance6Months - totalCurrentValue) / totalCurrentValue * 100, 2).ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
1 Year | @estimatedBalance1Year.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Html.Raw(Math.Round(estimatedBalance1Year * Model.MiscData.FiatConversionRate, 0).ToString("#,#0", new System.Globalization.CultureInfo("en-US"))) | @Math.Round((estimatedBalance1Year - totalCurrentValue) / totalCurrentValue * 100, 2).ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
Day | Buys | Sales | Profit @Model.Summary.MainMarket | Profit @Model.PTData.Properties.Currency | Gain |
---|---|---|---|---|---|
@salesDate.ToString("yyyy-MM-dd") | @buys | @sales | @profit.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @Math.Round(profitFiat,0).ToString("#,#0", new System.Globalization.CultureInfo("en-US")) | @avgProfit.ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) % |
Month | Sales | Profit @Model.Summary.MainMarket | Profit @Model.PTData.Properties.Currency | Growth |
---|---|---|---|---|
@monthName | @sales | @profit.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @profitFiat | @growth % |
Rank | Market | Profit @Model.PTData.Misc.Market | Sales | Avg/Trade |
---|---|---|---|---|
@rank | @coin | @profit | @sales | @avg |