import os import pandas as pd import numpy as np import sys sys.path.append('Scripts') from preprocess_daily import DailyPreprocessor from generate_signals import SignalGenerator self = DailyPreprocessor() self.load_data() # 1 self.make_match1() # 2-1 self.make_match2() # 2-2 self.make_match3() # 2-3 self.make_match4() # 2-4 self.make_match5() # 2-5 self.make_match6() # 2-6 print(self.match6[:30])