@page @model SalesListModel @{ Layout = null; }
Sold Time | Market | Avg. Bought Price | DCA | Sold Price | Sold Amount | Bought Cost | Sold Value | Profit @Model.Summary.MainMarket | Profit @Model.Summary.MainFiatCurrency | Profit % |
---|---|---|---|---|---|---|---|---|---|---|
@sellLogEntry.SoldDate.ToShortDateString() @sellLogEntry.SoldDate.ToLongTimeString() | @sellLogEntry.Market | @sellLogEntry.AverageBuyPrice.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @if (sellLogEntry.BoughtTimes > 0) { @sellLogEntry.BoughtTimes; } | @sellLogEntry.SoldPrice.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @sellLogEntry.SoldAmount.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @sellLogEntry.TotalCost.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @sellLogEntry.SoldValue.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @sellLogEntry.Profit.ToString("#,#0.00000000", new System.Globalization.CultureInfo("en-US")) | @profitFiat.ToString("#,#0.00", new System.Globalization.CultureInfo("en-US")) | @sellLogEntry.ProfitPercent.ToString("#,#0.00", new System.Globalization.CultureInfo("en-US"))% |