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)
order_by什么意思