88 浏览
0
0条评论

# 获取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 请教工程师大大 我要如何去输出呢

chaos 已回答的问题 3天 前
0

可能和K线的生成规则有关系,不太软件K线可能都不一样,这个没法改

chaos 发表新评论 20小时 前

average 我其实就是想看看这个函数的输出值….. 我要如何调整程序,谢谢您了

这个具体是指哪一天的日内均价数据不一样呢,如果是要一分钟均价的话目前天勤上K线是没有均价数据的

您正在查看1个答案中的1个,单击此处查看所有答案。