Various data in the candles
I make a request through the API - Tick History Request
EURUSD
time - 5 minut
And I got different data candles.
INFO [dd.py:358] [2016-06-15 13:05:01,880] candle close/open: 1.1235/1.12365 - (12:45:00)
INFO [dd.py:358] [2016-06-15 13:05:01,880] candle close/open: 1.12366/1.12353 - (12:40:00)
Request for 5 minutes
INFO [dd.py:358] [2016-06-15 13:10:01,125] candle close/open: 1.1235/1.12365 - (12:45:00)
INFO [dd.py:358] [2016-06-15 13:10:01,125] candle close/open: 1.12366/1.12352 - (12:40:00)
1.12352 != 1.12353
I'm not rounded values.
Binary Developers - returns (1.12353)
{
"open": "1.12353",
"high": "1.12369",
"epoch": 1465994400,
"close": "1.12366",
"low": "1.12329"
}
The graph - 1.12353
It does not bother me. But I noticed that.
This can be? Why?
Comments
Can you post the request objects of
and
And if possible, please format the code before posting. Remember, you want someone to look at your code. Its always better to format it so that others get some interest to read it.