|
ivanf
2017-04-05 19:58:33
|
|
Hi All,
newbie question
I am importing Metastock data using the published QS process, however my data provider includes non trading days ( like public holidays) in the data , which is a pain.
I'm not a coder, but could somebody help with a method of removing these entries, ideally as a pre or post script during importation.
I'm already running a pre-script to append a letter to the symbol ( see below) , so I don't want this to somehow break if I was to add a script to remove the non trading days
for(int i=0;i<Content.Rows.Length;i++)
{
Content.Rows[i].Data[0] = Content.Rows[i].Data[0] + ".AX";
}
thanks in advance
Ivan
|
|