All right now. Let's go grab some data. Again, I use a lot of what is in Luca Bolognese's WebLog.
First, I create a function span that turns simple entries for the year, month and day, for both the start and the end dates, to a type Span:
let span sy sm sd ey em ed = {Start = new DateTime(sy, sm, sd); End = new DateTime(ey, em, ed)}
So, let's say I want to get data for AT&T from the May 1, 2009 to May 15, 2009. I create my Span and create a variable ticker equal to AT&T's stock ticker:
let aSpan...