Hi guys,
I trade stocks intra day using 15 minutes bars and fibo extensions. In trying to build an algo for this, I noticed some weirdness in my data.
For example here are my log files:
Here are log values for July 24 on AAPL
2015-07-24handle_data:27INFOtime 09:31:00 open 125.33 high 125.43 low 125.01
2015-07-24handle_data:27INFOtime 09:32:00 open 125.02 high 125.32 low 124.6
2015-07-24handle_data:27INFOtime 09:33:00 open 124.86 high 124.86 low 124.6
2015-07-24handle_data:27INFOtime 09:34:00 open 124.73 high 124.91 low 124.67
2015-07-24handle_data:27INFOtime 09:35:00 open 124.77 high 124.94 low 124.68
When I look at other data bases (stockcharts/ tradingview) I get the first two bars as:
open high low close
aapl 9:30. 125.32 125.43 125.01 125.02 stockcharts
aapl 9:31. 125.02 125.09 124.60 124.85 stockcharts
aapl 9:32 124.85 124.86 124.61 124.62 stockcharts
aapl 9:30 125.33 125.40 125.02 125.04 tradingview
aapl 9:31 125.01 125.07 124.62 124.83 tradingview
aapl 9:32 124.85 124.85 124.62 124.73 tradingview
So what this tells me is that there's is no such thing as a given price at a give time, it's in the eye of the beholder. Check out how tradingview has the close
10 cents above stockcharts. Which is right?
But my real question is . Can I even get the price at 9:30 as opposed to 9:31?
Also, how does Q compute their minute data. I have one algo that uses increasingly tight stops as the wave runs out of steam, and when I try to use the
minute bar high or low plus 10 basis points as my close I get some really funky readings.
Thanks
Serge