Replaced
This commit is contained in:
21
MarketDataLib/Generator/Momentum/CandidateViolation.cs
Normal file
21
MarketDataLib/Generator/Momentum/CandidateViolation.cs
Normal file
@@ -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<CandidateViolation>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user