compare the indexes on time
Created at 01 Sep 2015, 09:34
compare the indexes on time
01 Sep 2015, 09:34
How do you compare the two indices over time?
I take
MarketSeries MSeries1 = MarketData.GetSeries(sym1, tf); MarketSeries MSeries2 = MarketData.GetSeries(sym2, tf);
To them it is necessary to compare
MSeries1 > MSeries2
or
MSeries1 < MSeries2
But,
how do you know whether these indices to each other?
i.e., may be
closing time MSeries1.Close[1] = 10:30 01.09.2015
closing time MSeries2.Close[1] = 11:00 01.09.2015
mfedora
01 Sep 2015, 10:31
I decided
@mfedora