Could anyone help me with how I would warm up the universe below such that I don't need to wait 10 days before it makes its first trade?
AddUniverse( coarse =>
{
return
(
from cf in coarse
let std = _symbolsData.GetOrAdd(cf.Symbol, sym => new StandardDeviation(10))
where std.Update(cf.EndTime,cf.Price)
where cf.Price > 1.0m
orderby cf.DollarVolume descending
select cf.Symbol
).Take(10);
}
);