jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
174 lines (167 loc) • 8.49 kB
HTML
<html lang="en">
<head>
<title id='Description'>JavaScript Chart OHLC series example</title>
<meta name="description" content="This is an example of Javascript Chart OHLC series." />
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<script type="text/javascript" src="../../../scripts/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdraw.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxchart.core.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxchart.rangeselector.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// prepare the data
var source =
{
datatype: "tsv",
datafields: [
{ name: 'Date' },
{ name: 'SPOpen' },
{ name: 'SPHigh' },
{ name: 'SPLow' },
{ name: 'SPClose' },
{ name: 'SPVolume' },
{ name: 'SPAdjClose' },
{ name: 'NQOpen' },
{ name: 'NQHigh' },
{ name: 'NQLow' },
{ name: 'NQClose' },
{ name: 'NQVolume' },
{ name: 'NQAdjClose' }
],
url: '../../sampledata/nasdaq_vs_sp500_detailed.txt'
};
var dataAdapter = new $.jqx.dataAdapter(source, { async: false, autoBind: true, loadError: function (xhr, status, error) { alert('Error loading "' + source.url + '" : ' + error); } });
var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
var toolTipCustomFormatFn = function (value, itemIndex, serie, group, categoryValue, categoryAxis) {
var dataItem = dataAdapter.records[itemIndex];
var volume = serie == 0 ? dataItem.SPVolume : dataItem.NQVolume;
return '<DIV style="text-align:left"><b>Date: ' +
categoryValue.getDate() + '-' + months[categoryValue.getMonth()] + '-' + categoryValue.getFullYear() +
'</b><br />Open price: $' + value.open +
'</b><br />Close price: $' + value.close +
'</b><br />Low price: $' + value.low +
'</b><br />High price: $' + value.high +
'</b><br />Daily volume: ' + volume
'</DIV>';
};
// prepare jqxChart settings
var settings = {
title: "NASDAQ and S&P 500 - OHLC Example",
description: "(June 2017 - November 2018)",
enableAnimations: true,
animationDuration: 1500,
enableCrosshairs: true,
padding: { left: 5, top: 5, right: 5, bottom: 5 },
source: dataAdapter,
colorScheme: 'scheme01',
xAxis:
{
dataField: 'Date',
labels:
{
formatFunction: function (value) {
return value.getDate() + '-' + months[value.getMonth()] + '<br>' + value.getFullYear().toString();
}
},
type: 'date',
valuesOnTicks: true,
rangeSelector: {
// Uncomment the line below to render the selector in a separate container
renderTo: $('#selectorContainer'),
// size: 120,
serieType: 'area',
padding: { left: 25, right: 10, top: 10, bottom: 10 },
backgroundColor: 'white',
dataField: 'SPClose',
baseUnit: 'month',
gridLines: { visible: false },
labels:
{
formatFunction: function (value) {
return months[value.getMonth()] + '\'' + value.getFullYear().toString().substring(2);
}
}
}
},
seriesGroups:
[
{
type: 'ohlc',
//skipOverlappingPoints: false,
toolTipFormatFunction: toolTipCustomFormatFn,
valueAxis:
{
description: 'S&P 500<br>'
},
series: [
{
dataFieldClose: 'SPClose',
displayTextClose: 'S&P Close price',
dataFieldOpen: 'SPOpen',
displayTextOpen: 'S&P Open price',
dataFieldHigh: 'SPHigh',
displayTextHigh: 'S&P High price',
dataFieldLow: 'SPLow',
displayTextLow: 'S&P Low price',
displayText: 'S&P 500',
lineWidth: 1
}
]
},
{
type: 'line',
toolTipFormatFunction: toolTipCustomFormatFn,
valueAxis:
{
position: 'right',
title: { text: '<br>NASDAQ' },
gridLines: { visible: false }
},
series: [
{
dataField: 'NQClose',
dataFieldClose: 'NQClose',
displayTextClose: 'Nasdaq Close price',
dataFieldOpen: 'NQOpen',
displayTextOpen: 'Nasdaq Open price',
dataFieldHigh: 'NQHigh',
displayTextHigh: 'Nasdaq High price',
dataFieldLow: 'NQLow',
displayTextLow: 'Nasdaq Low price',
displayText: 'NASDAQ',
lineWidth: 1
}
]
}
]
};
$('#chartContainer').jqxChart(settings);
});
</script>
</head>
<body class='default'>
<div>
<div id='chartContainer' style="width:800px; height:500px;">
</div>
<br />
<!-- you can optionally render the selecor in this container -->
<div id='selectorContainer' style="width:800px; height:100px;">
</div>
</div>
<div class="example-description">
<br />
<h2>Description</h2>
<br />
This is an example of Javascript Chart OHLC series. The Open High Low Close series is a type of chart used in finance to display the movements of the price over time.
</div>
<div style="position: absolute; bottom: 5px; right: 5px;">
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
</div>
</body>
</html>