Fix FormatCurrency, Cleanup Code, Daily Run.

This commit is contained in:
2025-06-04 21:53:27 -04:00
parent a284e8c0c5
commit 4f9571cd32
4 changed files with 20 additions and 30 deletions

View File

@@ -544,6 +544,7 @@ namespace MarketData.Utils
if (String.IsNullOrEmpty(str)) return str;
if (number < 0.00 && !str.StartsWith("("))
{
str = str.Replace("-", null);
return "(" + str + ")";
}
return str;