examples moved to archive

This commit is contained in:
David Brazda
2024-10-04 12:04:55 +02:00
parent c4356bef3a
commit 0da6839bcb
29 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,20 @@
import pandas as pd
from time import sleep
from lightweight_charts import Chart
if __name__ == '__main__':
df1 = pd.read_csv('ohlc.csv')
# Columns: time | price
df2 = pd.read_csv('ticks.csv')
chart = Chart()
chart.set(df1)
chart.show()
for i, tick in df2.iterrows():
chart.update_from_tick(tick)
sleep(0.03)