I'm using fetcher to read a CSV of SPY closing prices as a learning exercise. I have a start condition so that there is no error for dates before the start of my data.
But what is happening after the end of my data? The last value is repeated - to see this either look at the custom chart or the logs.
2013-03-05 PRINT 154.31
2013-03-06 PRINT 154.51
2013-03-07 PRINT 154.79 (This is the last day of my CSV data)
2013-03-08 PRINT 154.79
2013-03-11 PRINT 154.79
2013-03-12 PRINT 154.79
End of logs.
is this expected behaviour? I was expecting to see 'No data for 'MyData'' for the days after my data.
P.