Hello,
I have created a strategy that imports the instruments it will operate on from a .csv.
else if (State == State.Configure)
{
int k=1;
foreach(string s in System.IO.File.ReadAllLines(StockList))
{
AddDataSeries(s,BarsPeriod,"Default 24 x 7");
Print(s);
dct.Add(k,s);
k++;
}
}
Thank you

Comment