Files
lightweight-charts-python/test/util.py
2024-03-30 15:38:34 +00:00

21 lines
292 B
Python

import unittest
import pandas as pd
from lightweight_charts import Chart
BARS = pd.read_csv('../examples/1_setting_data/ohlcv.csv')
class Tester(unittest.TestCase):
def setUp(self):
self.chart: Chart = Chart();
def tearDown(self) -> None:
self.chart.exit()