this is the history data when called in Mar 10, 2014
history_high = history(bar_count=100, frequency='1d', field='high', ffill=False)
history_low = history(bar_count=100, frequency='1d', field='low', ffill=False)
history_close = history(bar_count=100, frequency='1d', field='close_price', ffill=False)
for VMW, here is what i got,
2/26 2/27 2/28 3/3 3/4 3/5 3/6 3/7 3/10
highs =99.22, 98.32, 98.25, 96.04, 101.44, 103.44, 103.42, 104.12, 102.41
lows =96.28, 95.74, 95.34, 92.73, 97.29, 100.11, 101.89, 100.69, 100.93
closes=97.70, 97.79, 96.06, 95.65, 101.04, 102.83, 101.95, 101.50, 101.36
specially, the high of Mar 7, both google and yahoo data shows 102.51, but quantopian data shows 104.12.