Skip to content

Commit 80550da

Browse files
authored
Extend SecurityPriceZeroOrderResponseErrorAnalysis solution to mention guards (#9641)
1 parent cd52034 commit 80550da

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Engine/Results/Analysis/Analyses/OrderResponseErrorsAnalyses/SecurityPriceZeroOrderResponseErrorAnalysis.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ protected override List<string> Solutions(Language language) =>
5353
? "```\nself.settings.seed_initial_prices = True\n```"
5454
: "```\nSettings.SeedInitialPrices = true;\n```"),
5555

56-
"This error also occurs if the data is missing. Investigate if it's a data issue.",
56+
"This error also occurs if the data is missing. Investigate if it's a data issue. " +
57+
"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.",
5758
];
5859
}
5960
}

0 commit comments

Comments
 (0)