关于query里的一些参数

用户头像Oli****wists
2023-03-07 发布

def handle_data(account,data): """ df = get_fundamentals(query( valuation.symbol, valuation.pe, valuation.market_cap, income.basic_eps, growth.net_profit_growth_ratio, profit.weighted_roe ).filter(
valuation.pe < 40, valuation.pe > 35, income.basic_eps > 0.3, growth.net_profit_growth_ratio > 0.30 profit.weighted_roe > 0.20 ).order_by( profit.weighted_roe.desc() ).limit( 100)) log.info(df)

这段代码里面的像valuation.pe ,income.basic_eps,growth.net_profit_growth_ratio,profit.weighted_roe同花顺里面有说明吗?

评论