Created
February 2, 2018 20:17
-
-
Save agoops/f48799cacb27f491ea43f158ae4d3c48 to your computer and use it in GitHub Desktop.
python code snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gdax_times_trades = [] | |
for msg in gdax_stream_json_msgs: | |
if msg['type'] == 'trade': | |
msg_time = pd.to_datetime(msg['time']) | |
msg_price = float(msg['price']) | |
gdax_times_trades.append( (msg_time, msg_price) ) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment