Fix ETF Holdings feed

This commit is contained in:
2025-04-12 20:46:09 -04:00
parent d12b23cad6
commit 761d90a8f5
3 changed files with 26 additions and 16 deletions

View File

@@ -304,14 +304,6 @@ namespace MarketData.Utils
}
}
public static bool IsNumeric(String strText)
{
strText=strText.Replace("%", "");
strText = strText.Replace("$", "");
double value = 0.00;
return double.TryParse(strText, out value);
}
public static long ParseValueLong(String strText)
{
long value;