दबाएँऊँचाईअधिकारी ने एक परीक्षा लिखी। अब कोई सीधा ग्राफ नहीं है।परिदृश्य
var ObjChart = null
var preBarTime = 0
var chart = {
__isStock: true,
extension: {
layout: 'single', // 不参于分组,单独显示, 默认为分组 'group'
height: 600, // 指定高度 // 指定宽度占的单元值, 总值 为12
},
plotOptions: {
candlestick: {
color: '#d75442',
upColor: '#6ba583'
}
},
rangeSelector: {
buttons: [{
type: 'hour',
count: 1,
text: '1h'
}, {
type: 'hour',
count: 3,
text: '3h'
}, {
type: 'hour',
count: 8,
text: '8h'
}, {
type: 'all',
text: 'All'
}],
selected: 2,
inputEnabled: true
},
legend: {
enabled: true,
},
tooltip: {xDateFormat: '%Y-%m-%d %H:%M:%S, %A'}, // 缩放工具
title : { text : '双坐标折线'}, // 标题
rangeSelector: { // 选择范围
buttons: [{type: 'hour',count: 1, text: '1h'}, {type: 'hour',count: 3, text: '3h'}, {type: 'hour', count: 8, text: '8h'}, {type: 'all',text: 'All'}],
selected: 3,
inputEnabled: true
},
xAxis: { type: 'datetime'}, // 坐标轴横轴 即:x轴, 当前设置的类型是 :时间
yAxis : [{ // Primary yAxis // 坐标轴纵轴 即:y轴, 默认数值随数据大小调整。
labels: {
format: '{value}',
},
title: {
text: 'BTC/USDT',
},
showInLegend: true,
opposite: false
}],
series: [{
type: 'candlestick',
name: 'BTC',
id: 'btc',
zIndex: 2,
data: []
}, {
type: 'column',
name: 'Volume',
id: 'volume',
data: [],
yAxis: 1
}, {
type: 'vbp',
linkedTo: 'btc',
params: {
volumeSeriesID: 'volume'
},
dataLabels: {
enabled: false
},
zoneLines: {
enabled: false
}
}
]
};
function main() {
ObjChart = Chart(chart)
ObjChart.reset();
LogReset()
LogVacuum()
while(1){
var records = exchange.GetRecords()
if(records == null || typeof(records) === 'undefined' || records.length == 0) {
} else {
for(var index = 0; index < records.length; index++) {
if(records[i].Time > preBarTime){
ObjChart.add(0, [records[i].Time, records[i].Open, records[i].High, records[i].Low, records[i].Close])
ObjChart.add(1, [records[i].Time, records[i].Volume])
}
}
if(typeof(records[records.length - 1].Time) !== 'undefined') {
preBarTime = records[records.length - 1].Time
}
}
Sleep(1000 * 60)
}
}
आविष्कारक मात्रा - छोटे सपनेपरीक्षण किया। सीरीज़ से हटाएँ `` { type: 'column', name: 'Volume', id: 'volume', data: [], y-अक्ष: 1 } `` यह दिखाता है कि highstock में कोई माप स्तंभ नहीं है.
fmzeroसपने का सारांश, क्या कोई निष्कर्ष है?
आविष्कारक मात्रा - छोटे सपनेअच्छा, हाईस्टॉक्स के दस्तावेज़ों पर एक नज़र डालें।
fmzeroमूल्य के अनुसार मात्रा
आविष्कारक मात्रा - छोटे सपनेO__O "... VbP क्या है?
fmzeroधन्यवाद. दुर्भाग्य से, मैं केवल वीबीपी के लिए प्यार करता हूँः))) या फिर शुक्रिया सपना, इसे ध्यान से पढ़ें।
आविष्कारक मात्रा - छोटे सपनेएक उदाहरण के रूप में, अगर आप मदद करते हैं तो देखेंः `` var chart = { __isStock: सच, plotOptions: { क्या आप इसे देख सकते हैं? श्रृंखलाः { // सभी श्रृंखलाओं के लिए सामान्य विकल्प }, ईमा: { // सभी ईएमए श्रृंखला के लिए साझा विकल्प } }, xAxis: { type: 'datetime'}, सीरीज़ः [ {type: 'ema', data : [1,2,3,4,5,6,7,8,8]}, ] }; function main (() { var obj = चार्ट obj.reset ((() var i = 10000 var j = 1 while(1) { obj.add ((0, [i++, j++]); Sleep ((1000) } } `` /upload/asset/169db73891980a34c22a.png
fmzeroएक बार फिर, मेरा उद्देश्य हाईस्टॉक में संकेतकों का परीक्षण करना है, [vbp] ((https://api.highcharts.com/highstock/series.vbp) highstock अब केवल k लाइन नहीं है, लेकिन अन्य संकेतक भी हैं, जैसे SMA, EMA
आविष्कारक मात्रा - छोटे सपनेseries केवल पहला छोड़ देता है, बाकी सभी को हटा दिया जाना चाहिए, पहले वापस परीक्षण में देखें।
fmzeroक्या मेरे पास यह नहीं है? [मात्रा स्तंभ] (https://api.highcharts.com/highstock/series.column) एपीआई