Skip to main content

聚宽常用函数

每月的第几天执行
# 第二个参数就是第几天 如 1是第一天 2是第二天
run_monthly(before_market_open,1)
    # 获取股票的收盘价
close_data = get_bars(security, count=5, unit='1d', fields=['close'])
# 取得过去五天的平均价格
MA5 = close_data['close'].mean()
# 取得上一时间点价格
current_price = close_data['close'][-1]
# 取得当前的现金
cash = context.portfolio.available_cash