From 72b4396691a836562cbc1e1a37504edf45388424 Mon Sep 17 00:00:00 2001 From: Derek Melchin Date: Mon, 27 Jul 2026 16:58:35 -0600 Subject: [PATCH] Extend SecurityPriceZeroOrderResponseErrorAnalysis solution to mention guards --- .../SecurityPriceZeroOrderResponseErrorAnalysis.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Engine/Results/Analysis/Analyses/OrderResponseErrorsAnalyses/SecurityPriceZeroOrderResponseErrorAnalysis.cs b/Engine/Results/Analysis/Analyses/OrderResponseErrorsAnalyses/SecurityPriceZeroOrderResponseErrorAnalysis.cs index 00413b747be6..53e5f713857d 100644 --- a/Engine/Results/Analysis/Analyses/OrderResponseErrorsAnalyses/SecurityPriceZeroOrderResponseErrorAnalysis.cs +++ b/Engine/Results/Analysis/Analyses/OrderResponseErrorsAnalyses/SecurityPriceZeroOrderResponseErrorAnalysis.cs @@ -53,7 +53,8 @@ protected override List Solutions(Language language) => ? "```\nself.settings.seed_initial_prices = True\n```" : "```\nSettings.SeedInitialPrices = true;\n```"), - "This error also occurs if the data is missing. Investigate if it's a data issue.", + "This error also occurs if the data is missing. Investigate if it's a data issue. " + + "If the security legitimately has no data to trade on (for example, it's delisted or halted), add a guard that skips orders for securities whose price is still $0.", ]; } }