logger.info("Fetching data for symbol " + symbol);
double yearlyMedianDailyIncrease = getMedianHighOpenSpread(symbol, 365);
GoogleQuoteFetcher fetcher = new GoogleQuoteFetcher();
TimeSeries series = fetcher.fetchAndParse(symbol, days, 60); // one minute
BigDecimal firstPrice = series.getPrices().firstEntry().getValue();
BigDecimal lastBidAskSpread = new YahooQuoteFetcher().fetchBidAskSpread(symbol);
final double minBuy = 0; // allow buying at open price