From 2731016325c5b3cedcb759314355c18a724a3b81 Mon Sep 17 00:00:00 2001 From: Sean Date: Sun, 2 Feb 2025 16:42:29 -0500 Subject: [PATCH] Replaced --- .../Generator/Momentum/CandidateViolation.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 MarketDataLib/Generator/Momentum/CandidateViolation.cs diff --git a/MarketDataLib/Generator/Momentum/CandidateViolation.cs b/MarketDataLib/Generator/Momentum/CandidateViolation.cs new file mode 100644 index 0000000..b5537b0 --- /dev/null +++ b/MarketDataLib/Generator/Momentum/CandidateViolation.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; + +namespace MarketData.Generator.Momentum +{ + public class CandidateViolation + { + public CandidateViolation(String symbol, String reasonCategory) + { + Symbol = symbol; + ReasonCategory = reasonCategory; + } + + public String Symbol {get; set;} + public String ReasonCategory {get; set;} + } + + public class CandidateViolations : List + { + } +}