Skip to content

Instantly share code, notes, and snippets.

View 0xF7A4C6's full-sized avatar

Armv₇L 0xF7A4C6

View GitHub Profile
# https://youtu.be/59QqH0LKEWE
# Gather CSV at https://www.binance.com/en/landing/data
import pandas as pd
import matplotlib.pyplot as plt
data = pd.read_csv('BTCFDUSD-trades-2024-09-06.csv')
plt.style.use('ggplot')
data['time'] = pd.to_datetime(data['time'], unit='ms')