# 获取SC2505合约的K线数据(例如1分钟K线) klines = api.get_kline_serial(“SHFE.sc2505″, 60) # 初始化变量 total_price = 0 total_volume = 0 day_start = None while True: api.wait_update() # 检查是否有新数据 if api.is_changing(klines): current_time = klines.datetime[-1] # 当前K线的时间戳 current_date = current_time // 86400 * 86400 # 转换为当天的0点时间戳 # 如果是新的一天,重置变量 if day_start is None or current_date != day_start: day_start = current_date total_price = 0 total_volume = 0 # 累加当日的成交额和成交量 total_price += klines.close[-1] * klines.volume[-1] total_volume += klines.volume[-1] # 计算日内均价 if total_volume > 0: avg_price = total_price / total_volume print(f”当前日内均价: {avg_price}”)
就是文华里的那个settle 请教工程师大大 我要如何去输出呢
average 我其实就是想看看这个函数的输出值….. 我要如何调整程序,谢谢您了