niver code
This commit is contained in:
parent
2bdc7d3ab2
commit
e06b575e46
161
data/charts.js
161
data/charts.js
@ -2,14 +2,12 @@ const urlParams = new URLSearchParams(window.location.search);
|
||||
const symbol = urlParams.get('symbol');
|
||||
const time = urlParams.get('time');
|
||||
|
||||
//window.dispatchEvent(new Event('resize'));
|
||||
|
||||
function timeToLocal(originalTime) {
|
||||
const d = new Date(originalTime * 1000);
|
||||
return Date.UTC(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours(), d.getMinutes(), d.getSeconds(), d.getMilliseconds()) / 1000;
|
||||
}
|
||||
|
||||
function parseCSV(data) {
|
||||
function parseCSV(data) {
|
||||
const rows = data.split("\n");
|
||||
const result = [];
|
||||
let start = Math.max(rows.length - 298, 0);
|
||||
@ -39,24 +37,43 @@ function timeToLocal(originalTime) {
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
// Create the Lightweight Chart within the container element
|
||||
const chart = LightweightCharts.createChart(document.getElementById('container'),
|
||||
{
|
||||
function getCrosshairDataPoint(series, param) {
|
||||
if (!param.time) {
|
||||
return null;
|
||||
}
|
||||
const dataPoint = param.seriesData.get(series);
|
||||
return dataPoint || null;
|
||||
}
|
||||
|
||||
function syncCrosshair(chart, series, dataPoint) {
|
||||
if (dataPoint) {
|
||||
chart.setCrosshairPosition(dataPoint.value, dataPoint.time, series);
|
||||
return;
|
||||
}
|
||||
chart.clearCrosshairPosition();
|
||||
}
|
||||
|
||||
// Create the Lightweight Chart within the container element
|
||||
const chart = LightweightCharts.createChart(document.getElementById('container'),
|
||||
{
|
||||
rightPriceScale: {
|
||||
minimumWidth: 100,
|
||||
borderVisible: false
|
||||
},
|
||||
|
||||
height: 500,
|
||||
|
||||
crosshair: {
|
||||
mode: 0,
|
||||
},
|
||||
|
||||
timeScale: {
|
||||
timeVisible: true,
|
||||
secondsVisible: false,
|
||||
},
|
||||
|
||||
layout: {
|
||||
background: {
|
||||
type: 'solid',
|
||||
@ -64,13 +81,15 @@ function timeToLocal(originalTime) {
|
||||
},
|
||||
textColor: '#DDD',
|
||||
},
|
||||
|
||||
grid: {
|
||||
vertLines: { color: '#444' },
|
||||
horzLines: { color: '#444' },
|
||||
},
|
||||
});
|
||||
|
||||
chart.applyOptions({
|
||||
});
|
||||
|
||||
chart.applyOptions({
|
||||
watermark: {
|
||||
visible: true,
|
||||
fontSize: 18,
|
||||
@ -78,31 +97,33 @@ function timeToLocal(originalTime) {
|
||||
vertAlign: 'left',
|
||||
color: '#DDD',
|
||||
text: symbol + " " + time,
|
||||
}});
|
||||
}
|
||||
});
|
||||
|
||||
// define chart
|
||||
const candleSeries = chart.addCandlestickSeries();
|
||||
const lineSeriesEMA12 = chart.addLineSeries({ color: 'red', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA26 = chart.addLineSeries({ color: 'pink', lineWidth: 1, lineStyle: 2, priceLineVisible: false});
|
||||
const lineSeriesEMA50 = chart.addLineSeries({ color: 'cyan', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA100 = chart.addLineSeries({ color: 'yellow', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA200 = chart.addLineSeries({ color: 'white', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA400 = chart.addLineSeries({ color: 'orange', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA800 = chart.addLineSeries({ color: 'purple', lineWidth: 1, priceLineVisible: false});
|
||||
|
||||
|
||||
// define chart
|
||||
const candleSeries = chart.addCandlestickSeries();
|
||||
const lineSeriesEMA12 = chart.addLineSeries({ color: 'red', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA26 = chart.addLineSeries({ color: 'pink', lineWidth: 1, lineStyle: 2, priceLineVisible: false});
|
||||
const lineSeriesEMA50 = chart.addLineSeries({ color: 'cyan', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA100 = chart.addLineSeries({ color: 'yellow', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA200 = chart.addLineSeries({ color: 'white', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA400 = chart.addLineSeries({ color: 'orange', lineWidth: 1, priceLineVisible: false});
|
||||
const lineSeriesEMA800 = chart.addLineSeries({ color: 'purple', lineWidth: 1, priceLineVisible: false});
|
||||
|
||||
|
||||
// RSI Chart
|
||||
const chartrsi = LightweightCharts.createChart(document.getElementById("container"),
|
||||
{
|
||||
// RSI Chart
|
||||
const chartrsi = LightweightCharts.createChart(document.getElementById("container"),
|
||||
{
|
||||
rightPriceScale: {
|
||||
minimumWidth: 100,
|
||||
borderVisible: false
|
||||
},
|
||||
height: 200,
|
||||
|
||||
timeScale: {
|
||||
visible: false,
|
||||
},
|
||||
|
||||
layout: {
|
||||
background: {
|
||||
type: 'solid',
|
||||
@ -110,13 +131,14 @@ function timeToLocal(originalTime) {
|
||||
},
|
||||
textColor: '#DDD',
|
||||
},
|
||||
|
||||
grid: {
|
||||
vertLines: { color: '#444' },
|
||||
horzLines: { color: '#444' },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
chartrsi.applyOptions({
|
||||
chartrsi.applyOptions({
|
||||
watermark: {
|
||||
visible: true,
|
||||
fontSize: 18,
|
||||
@ -124,25 +146,28 @@ function timeToLocal(originalTime) {
|
||||
vertAlign: 'left',
|
||||
color: '#DDD',
|
||||
text: 'RSI 5,14,21',
|
||||
}});
|
||||
}
|
||||
});
|
||||
|
||||
const lineSeriesRSI5 = chartrsi.addLineSeries({ color: 'orange', lineWidth: 1, lineStyle: 2, priceLineVisible: false});
|
||||
const lineSeriesRSI14 = chartrsi.addLineSeries({ color: 'yellow', lineWidth: 2, priceLineVisible: false});
|
||||
const lineSeriesRSI21 = chartrsi.addLineSeries({ color: 'lightgreen', lineWidth: 1, lineStyle: 2, priceLineVisible: false});
|
||||
const lineSeriesRSI5 = chartrsi.addLineSeries({ color: 'orange', lineWidth: 1, lineStyle: 2, priceLineVisible: false});
|
||||
const lineSeriesRSI14 = chartrsi.addLineSeries({ color: 'yellow', lineWidth: 2, priceLineVisible: false});
|
||||
const lineSeriesRSI21 = chartrsi.addLineSeries({ color: 'lightgreen', lineWidth: 1, lineStyle: 2, priceLineVisible: false});
|
||||
|
||||
// MACD Chart
|
||||
const chartmacd = LightweightCharts.createChart(document.getElementById("container"),
|
||||
{
|
||||
// MACD Chart
|
||||
const chartmacd = LightweightCharts.createChart(document.getElementById("container"),
|
||||
{
|
||||
rightPriceScale: {
|
||||
minimumWidth: 100,
|
||||
borderVisible: false
|
||||
},
|
||||
|
||||
height: 200,
|
||||
|
||||
timeScale: {
|
||||
timeVisible: true,
|
||||
secondsVisible: false,
|
||||
},
|
||||
|
||||
layout: {
|
||||
background: {
|
||||
type: 'solid',
|
||||
@ -150,13 +175,14 @@ function timeToLocal(originalTime) {
|
||||
},
|
||||
textColor: '#DDD',
|
||||
},
|
||||
|
||||
grid: {
|
||||
vertLines: { color: '#444' },
|
||||
horzLines: { color: '#444' },
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
chartmacd.applyOptions({
|
||||
chartmacd.applyOptions({
|
||||
watermark: {
|
||||
visible: true,
|
||||
fontSize: 18,
|
||||
@ -164,23 +190,22 @@ function timeToLocal(originalTime) {
|
||||
vertAlign: 'left',
|
||||
color: '#DDD',
|
||||
text: 'MACD 12 26',
|
||||
}});
|
||||
}
|
||||
});
|
||||
|
||||
const lineSeriesMACD = chartmacd.addLineSeries({ color: 'blue', lineWidth: 1, lineStyle: 0, priceLineVisible: false});
|
||||
const lineSeriesMACDSignal = chartmacd.addLineSeries({ color: 'orange', lineWidth: 1, lineStyle: 0, priceLineVisible: false});
|
||||
const histogramSeriesMACD = chartmacd.addHistogramSeries({
|
||||
const lineSeriesMACD = chartmacd.addLineSeries({ color: 'blue', lineWidth: 1, lineStyle: 0, priceLineVisible: false});
|
||||
const lineSeriesMACDSignal = chartmacd.addLineSeries({ color: 'orange', lineWidth: 1, lineStyle: 0, priceLineVisible: false});
|
||||
const histogramSeriesMACD = chartmacd.addHistogramSeries({
|
||||
priceFormat: {
|
||||
type: 'volume',
|
||||
color: 'orange',
|
||||
},
|
||||
//priceScaleId: '', // set as an overlay by setting a blank priceScaleId
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
fetch("/botdata/asset-histories/" + symbol + ".history." + time + ".csv")
|
||||
.then(response => response.text())
|
||||
.then(data => {
|
||||
fetch("/botdata/asset-histories/" + symbol + ".history." + time + ".csv")
|
||||
.then(response => response.text())
|
||||
.then(data => {
|
||||
const parsedData = parseCSV(data);
|
||||
|
||||
// OHLC Data
|
||||
@ -275,51 +300,35 @@ function timeToLocal(originalTime) {
|
||||
color: item[100]
|
||||
}));
|
||||
histogramSeriesMACD.setData(histogramSeriesMACDData);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// Lines for price levels
|
||||
fetch("/botdata/asset-histories/" + symbol + ".history.csv.levels")
|
||||
.then(response => response.text())
|
||||
.then(text => {
|
||||
// Lines for price levels
|
||||
fetch("/botdata/asset-histories/" + symbol + ".history.csv.levels")
|
||||
.then(response => response.text())
|
||||
.then(text => {
|
||||
const levels = text.split('\n');
|
||||
levels.forEach(function(level) {
|
||||
candleSeries.createPriceLine({price: level, color: "darkblue", lineWidth: 0.5, lineStyle: 0, axisLabelVisible: true, title: 'Level'});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// Sync charts timeScale
|
||||
chart.timeScale().fitContent();
|
||||
chart.timeScale().subscribeVisibleLogicalRangeChange(timeRange => {
|
||||
// Sync charts timeScale
|
||||
chart.timeScale().fitContent();
|
||||
chart.timeScale().subscribeVisibleLogicalRangeChange(timeRange => {
|
||||
chartrsi.timeScale().setVisibleLogicalRange(timeRange);
|
||||
chartmacd.timeScale().setVisibleLogicalRange(timeRange);
|
||||
});
|
||||
});
|
||||
|
||||
chartrsi.timeScale().subscribeVisibleLogicalRangeChange(timeRange => {
|
||||
chartrsi.timeScale().subscribeVisibleLogicalRangeChange(timeRange => {
|
||||
chart.timeScale().setVisibleLogicalRange(timeRange);
|
||||
});
|
||||
});
|
||||
|
||||
chartmacd.timeScale().subscribeVisibleLogicalRangeChange(timeRange => {
|
||||
chartmacd.timeScale().subscribeVisibleLogicalRangeChange(timeRange => {
|
||||
chart.timeScale().setVisibleLogicalRange(timeRange);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
function getCrosshairDataPoint(series, param) {
|
||||
if (!param.time) {
|
||||
return null;
|
||||
}
|
||||
const dataPoint = param.seriesData.get(series);
|
||||
return dataPoint || null;
|
||||
}
|
||||
|
||||
function syncCrosshair(chart, series, dataPoint) {
|
||||
if (dataPoint) {
|
||||
chart.setCrosshairPosition(dataPoint.value, dataPoint.time, series);
|
||||
return;
|
||||
}
|
||||
chart.clearCrosshairPosition();
|
||||
}
|
||||
chart.subscribeCrosshairMove(param => {
|
||||
const dataPoint = getCrosshairDataPoint(lineSeriesEMA50, param);
|
||||
syncCrosshair(chartrsi, lineSeriesRSI14, dataPoint);
|
||||
@ -331,7 +340,6 @@ chartrsi.subscribeCrosshairMove(param => {
|
||||
syncCrosshair(chart, lineSeriesEMA50, dataPoint);
|
||||
const dataPointmacd = getCrosshairDataPoint(lineSeriesRSI14, param);
|
||||
syncCrosshair(chartmacd, lineSeriesMACD, dataPointmacd);
|
||||
|
||||
});
|
||||
chartmacd.subscribeCrosshairMove(param => {
|
||||
const dataPoint = getCrosshairDataPoint(lineSeriesMACD, param);
|
||||
@ -339,4 +347,3 @@ chartmacd.subscribeCrosshairMove(param => {
|
||||
const dataPointrsi = getCrosshairDataPoint(lineSeriesMACD, param);
|
||||
syncCrosshair(chartrsi, lineSeriesRSI14, dataPointrsi);
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user