弘则市场情绪指标
图
微信
Loading...
日期选择
确定
弘则市场情绪指标
更新频率:daily
弘则情绪指标
从量与价两个维度刻画市场情绪,其中量是用整体换手率情况作为衡量依据,价是用整体上涨下跌趋势作为衡量依据,二者各占50%权重。
var latest_data = data0[data0.length - 1].y, text = Math.round(latest_data * 1000) / 10 + '%'; Highcharts.stockChart('container', { chart: { type:'spline', }, xAxis:{ ordinal: false, }, yAxis: [{ endOnTick: false, max: 1, min: 0, labels:{ formatter: function(){return Math.round(this.value * 100) + '%';} }, startOnTick: false, },{ endOnTick: false, startOnTick: false, visible: true, }], tooltip: { split: false, shared: true, dateTimeLabelFormats: { day: "%Y-%m-%d" }, }, plotOptions: { spline: { tooltip:{ pointFormatter: function() { var res; if(this.series.name.match(/[\u4E00-\u9FCC]*([\分位]+|[\情绪]+)/)) { res = ['
\u25CF
', this.series.name, ':
',Math.round(this.y*10000)/100,'%
' ].join(''); } else { res = ['
\u25CF
', this.series.name, ':
',Math.round(this.y*10)/10,'
' ].join(''); } return res; }, shared: true } } }, rangeSelector: { selected: 1, }, legend:{ enabled:true, itemWidth: 150, width: 300, }, series: [{ data: data0, name: '弘则情绪指标', zIndex: 1, className: 'plot-line-decimal-3' }, { data: data1, name: '万得全A', zIndex: 0, yAxis: 1, className: 'plot-line-decimal-sm-0' }], });