You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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])
|