fa1 = FactorAnalyzer(
base_df=df1,
trade_date_col='datetime',
symbol_col='symbol',
price_col='close',
factor_name='factor',
)
fa1.run()
fa2 = FactorAnalyzer(
base_df=df2,
trade_date_col='datetime',
symbol_col='symbol',
price_col='close',
factor_name='factor',
)
fa2.run()
the results are always the same. my os is windows
when i try to use df1 and df2, it seems not work
the results are always the same. my os is windows