We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
通过getIndicator获取指标拿到的数据是没有时间戳唯一键的,导致读取到数据后还要自己中转才能确认指标数据所属哪根蜡烛条
当前读取到的指标数据: { result:[ { "指标项1":值1, "指标项2":值2 } ] }
通过getIndicator获取指标拿到的数据含有时间戳唯一键!!!
期望读取到的指标数据: { result:[ { "timestamp":所属蜡烛条时间戳, "指标项1":值1, "指标项2":值2 } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
需求描述
通过getIndicator获取指标拿到的数据是没有时间戳唯一键的,导致读取到数据后还要自己中转才能确认指标数据所属哪根蜡烛条
当前读取到的指标数据:
{
result:[
{
"指标项1":值1,
"指标项2":值2
}
]
}
具体实现
通过getIndicator获取指标拿到的数据含有时间戳唯一键!!!
期望读取到的指标数据:
{
result:[
{
"timestamp":所属蜡烛条时间戳,
"指标项1":值1,
"指标项2":值2
}
]
}
The text was updated successfully, but these errors were encountered: