Skip to content

Commit

Permalink
feat: quote data support in data processort
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonabreul committed Apr 3, 2024
1 parent b0d3ca4 commit 8769616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataProcessing/FactSetDataProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public bool Run()
Log.Trace($"FactSetDataProcessor.Run(): Found {options.Count} options.");
Log.Trace($"FactSetDataProcessor.Run(): Start downloading/processing {symbolsStr} {_resolution} data.");

var tickTypes = new[] { TickType.Trade, TickType.OpenInterest };
var tickTypes = new[] { TickType.Trade, TickType.Quote, TickType.OpenInterest };
var source = options.Select(option => tickTypes.Select(tickType => (option, tickType))).SelectMany(x => x);

var result = Parallel.ForEach(source, new ParallelOptions() { MaxDegreeOfParallelism = 10 }, (t, loopState) =>
Expand Down

0 comments on commit 8769616

Please sign in to comment.