|
|
|
@ -93,16 +93,24 @@ export default { |
|
|
|
|
'240', |
|
|
|
|
'720', |
|
|
|
|
'D', |
|
|
|
|
'2D', |
|
|
|
|
'W', |
|
|
|
|
'M', |
|
|
|
|
], |
|
|
|
|
has_seconds: false, // 是否有秒的历史数据 |
|
|
|
|
has_intraday: true, // 是否有分钟的历史数据 |
|
|
|
|
has_daily: true, // 是否有日的历史数据 |
|
|
|
|
has_weekly_and_monthly: true, // 是否有周和月的历史数据 |
|
|
|
|
seconds_multipliers: [], // 分辨率为秒单位的数组 |
|
|
|
|
intraday_multipliers: ['1', '5', '15', '30', '60', '240', '720'], // 分辨率为分钟单位的数组 |
|
|
|
|
intraday_multipliers: [ |
|
|
|
|
'1', |
|
|
|
|
'5', |
|
|
|
|
'15', |
|
|
|
|
'30', |
|
|
|
|
'60', |
|
|
|
|
'240', |
|
|
|
|
'720', |
|
|
|
|
'D', |
|
|
|
|
'W', |
|
|
|
|
], // 分辨率为分钟单位的数组 |
|
|
|
|
has_empty_bars: true, |
|
|
|
|
force_session_rebuild: false, |
|
|
|
|
has_no_volume: false, // 表示商品是否拥有成交量数据 |
|
|
|
@ -489,6 +497,12 @@ export default { |
|
|
|
|
res.data.length |
|
|
|
|
) { |
|
|
|
|
// from(K线左边的时间) 和 to(K线右边的时间),接口返回的数据必须在这个时间返回内 |
|
|
|
|
// console.log(from, to); |
|
|
|
|
// console.log( |
|
|
|
|
// res.data[0].timestamp, |
|
|
|
|
// res.data[res.data.length - 1].timestamp |
|
|
|
|
// ); |
|
|
|
|
|
|
|
|
|
if (from && to) { |
|
|
|
|
if ( |
|
|
|
|
res.data[0].timestamp >= from * 1000 && |
|
|
|
|