Conditional Formulas

This commit is contained in:
HojouFotytu 2021-08-05 13:45:24 +09:00
parent 4724f938f1
commit 393d922e50
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ namespace Core.ProfitTrailer
if (!string.IsNullOrEmpty(strategyName))
{
// buy/sell strategies beginning with PT 2.3.3 contain the letter followed by a colon and space.
if (strategyName.Contains(":"))
if (strategyName.Contains(":") && !strategyName.Contains("FORMULA"))
{
result = true;
}