Implement new CNN Client code

This commit is contained in:
2026-03-10 21:25:14 -04:00
parent f3734184b4
commit 7beb895ceb
4 changed files with 205 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ namespace MarketData.CNNProcessing
public class TestCase
{
public enum CaseType{Training,Test,Validation};
public enum GenerateType{Price,BollingerBand};
public enum GenerateType{Price,BollingerBand,BollingerBandWithVIX};
public enum OutputType{OutputFile,OutputStream}
private readonly List<Stream> streams=new List<Stream>();
private readonly List<String> pathFileNames=new List<String>();