Skip to content

Commit

Permalink
added examples/py/normalize-sparse-candle-timestamp.py fix #3034
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Jun 5, 2018
1 parent 6a28acc commit c9d78f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/py/normalize-sparse-candle-timestamps.py
Expand Up @@ -25,9 +25,9 @@

pprint([[
exchange.iso8601 (int(round(candle[0] / duration)) * duration),
candle[1],
candle[2],
candle[3],
candle[4],
candle[5]
candle[1], # o
candle[2], # h
candle[3], # l
candle[4], # c
candle[5] # v
] for candle in candles])

0 comments on commit c9d78f0

Please sign in to comment.