Fix format for pricing.

This commit is contained in:
2025-01-02 12:56:16 -05:00
parent b8282f54fd
commit d57d6ad623
5 changed files with 12 additions and 9 deletions

View File

@@ -224,7 +224,7 @@ namespace TradeBlotter.ViewModels
{
get
{
return Utility.FormatCurrency(trade.Price,3);
return Utility.FormatPrice(trade.Price);
}
set
{
@@ -261,7 +261,7 @@ namespace TradeBlotter.ViewModels
{
get
{
return Utility.FormatCurrency(trade.SellPrice);
return Utility.FormatPrice(trade.SellPrice);
}
set
{