21 lines
292 B
Python
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()
|
|
|
|
|
|
|
|
|