2022-05-16 18:07:05 +00:00
|
|
|
import React, {useEffect, useRef, useState} from 'react';
|
|
|
|
import {tsvParse} from "d3-dsv";
|
2022-05-19 04:02:42 +00:00
|
|
|
import {Button} from '@mantine/core';
|
2022-05-16 14:24:25 +00:00
|
|
|
|
|
|
|
// https://github.com/tradingview/lightweight-charts/issues/543
|
|
|
|
// const createChart = dynamic(() => import('lightweight-charts'));
|
2022-05-17 17:53:48 +00:00
|
|
|
import {createChart, CrosshairMode} from 'lightweight-charts';
|
2022-05-23 07:39:56 +00:00
|
|
|
import {ReportSummary} from "../types";
|
2022-05-16 14:24:25 +00:00
|
|
|
|
2022-05-16 18:07:05 +00:00
|
|
|
const parseKline = () => {
|
2022-05-23 07:39:56 +00:00
|
|
|
return (d : any) => {
|
2022-05-16 18:07:05 +00:00
|
|
|
d.startTime = new Date(Number(d.startTime) * 1000);
|
|
|
|
d.endTime = new Date(Number(d.endTime) * 1000);
|
2022-05-16 19:03:25 +00:00
|
|
|
d.time = d.startTime.getTime() / 1000;
|
2022-05-16 14:24:25 +00:00
|
|
|
|
|
|
|
for (const key in d) {
|
|
|
|
// convert number fields
|
2022-05-16 18:07:05 +00:00
|
|
|
if (Object.prototype.hasOwnProperty.call(d, key)) {
|
|
|
|
switch (key) {
|
|
|
|
case "open":
|
|
|
|
case "high":
|
|
|
|
case "low":
|
|
|
|
case "close":
|
|
|
|
case "volume":
|
|
|
|
d[key] = +d[key];
|
|
|
|
break
|
|
|
|
}
|
2022-05-16 14:24:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return d;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-05-16 19:03:25 +00:00
|
|
|
const parseOrder = () => {
|
2022-05-23 07:39:56 +00:00
|
|
|
return (d: any) => {
|
2022-05-16 19:03:25 +00:00
|
|
|
for (const key in d) {
|
|
|
|
// convert number fields
|
|
|
|
if (Object.prototype.hasOwnProperty.call(d, key)) {
|
|
|
|
switch (key) {
|
|
|
|
case "order_id":
|
|
|
|
case "price":
|
|
|
|
case "quantity":
|
2022-05-17 04:40:25 +00:00
|
|
|
d[key] = +d[key];
|
|
|
|
break;
|
2022-05-21 17:19:43 +00:00
|
|
|
case "update_time":
|
|
|
|
case "creation_time":
|
2022-05-17 04:40:25 +00:00
|
|
|
case "time":
|
|
|
|
d[key] = new Date(d[key]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const parsePosition = () => {
|
2022-05-23 07:39:56 +00:00
|
|
|
return (d: any) => {
|
2022-05-17 04:40:25 +00:00
|
|
|
for (const key in d) {
|
|
|
|
// convert number fields
|
|
|
|
if (Object.prototype.hasOwnProperty.call(d, key)) {
|
|
|
|
switch (key) {
|
|
|
|
case "accumulated_profit":
|
|
|
|
case "average_cost":
|
|
|
|
case "quote":
|
|
|
|
case "base":
|
2022-05-16 19:03:25 +00:00
|
|
|
d[key] = +d[key];
|
|
|
|
break
|
|
|
|
case "time":
|
|
|
|
d[key] = new Date(d[key]);
|
2022-05-17 04:40:25 +00:00
|
|
|
break
|
2022-05-16 19:03:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const fetchPositionHistory = (basePath: string, runID: string, filename: string) => {
|
2022-05-17 04:40:25 +00:00
|
|
|
return fetch(
|
2022-05-17 18:30:17 +00:00
|
|
|
`${basePath}/${runID}/${filename}`,
|
2022-05-17 04:40:25 +00:00
|
|
|
)
|
|
|
|
.then((response) => response.text())
|
2022-05-23 07:39:56 +00:00
|
|
|
.then((data) => tsvParse(data, parsePosition()) as Array<PositionHistoryEntry>)
|
2022-05-17 04:40:25 +00:00
|
|
|
.catch((e) => {
|
|
|
|
console.error("failed to fetch orders", e)
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const fetchOrders = (basePath: string, runID: string) => {
|
2022-05-16 19:03:25 +00:00
|
|
|
return fetch(
|
2022-05-17 17:53:48 +00:00
|
|
|
`${basePath}/${runID}/orders.tsv`,
|
2022-05-16 19:03:25 +00:00
|
|
|
)
|
|
|
|
.then((response) => response.text())
|
2022-05-23 07:39:56 +00:00
|
|
|
.then((data: string) => tsvParse(data, parseOrder()) as Array<Order>)
|
2022-05-16 19:03:25 +00:00
|
|
|
.catch((e) => {
|
|
|
|
console.error("failed to fetch orders", e)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const parseInterval = (s: string) => {
|
2022-05-17 07:52:24 +00:00
|
|
|
switch (s) {
|
|
|
|
case "1m":
|
|
|
|
return 60;
|
|
|
|
case "5m":
|
|
|
|
return 60 * 5;
|
|
|
|
case "15m":
|
|
|
|
return 60 * 15;
|
|
|
|
case "30m":
|
|
|
|
return 60 * 30;
|
|
|
|
case "1h":
|
|
|
|
return 60 * 60;
|
|
|
|
case "4h":
|
|
|
|
return 60 * 60 * 4;
|
|
|
|
case "6h":
|
|
|
|
return 60 * 60 * 6;
|
|
|
|
case "12h":
|
|
|
|
return 60 * 60 * 12;
|
2022-05-17 09:14:48 +00:00
|
|
|
case "1d":
|
|
|
|
return 60 * 60 * 24;
|
2022-05-17 07:52:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 60;
|
|
|
|
};
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
interface Order {
|
|
|
|
order_type: string;
|
|
|
|
side: string;
|
|
|
|
price: number;
|
|
|
|
quantity: number;
|
|
|
|
executed_quantity: number;
|
|
|
|
status: string;
|
|
|
|
update_time: Date;
|
|
|
|
creation_time: Date;
|
|
|
|
}
|
2022-05-17 07:52:24 +00:00
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
interface Marker {
|
|
|
|
time: number;
|
|
|
|
position: string;
|
|
|
|
color: string;
|
|
|
|
shape: string;
|
|
|
|
text: string;
|
2022-05-17 07:52:24 +00:00
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const ordersToMarkets = (interval: string, orders: Array<Order> | void): Array<Marker> => {
|
|
|
|
const markers: Array<Marker> = [];
|
2022-05-17 07:52:24 +00:00
|
|
|
const intervalSecs = parseInterval(interval);
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
if (!orders) {
|
|
|
|
return markers;
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:03:25 +00:00
|
|
|
// var markers = [{ time: data[data.length - 48].time, position: 'aboveBar', color: '#f68410', shape: 'circle', text: 'D' }];
|
|
|
|
for (let i = 0; i < orders.length; i++) {
|
|
|
|
let order = orders[i];
|
2022-05-24 16:48:14 +00:00
|
|
|
let t = (order.update_time || order.time).getTime() / 1000.0;
|
2022-05-17 07:52:24 +00:00
|
|
|
let lastMarker = markers.length > 0 ? markers[markers.length - 1] : null;
|
|
|
|
if (lastMarker) {
|
|
|
|
let remainder = lastMarker.time % intervalSecs;
|
|
|
|
let startTime = lastMarker.time - remainder;
|
|
|
|
let endTime = (startTime + intervalSecs);
|
|
|
|
// skip the marker in the same interval of the last marker
|
|
|
|
if (t < endTime) {
|
2022-05-21 18:40:12 +00:00
|
|
|
// continue
|
2022-05-17 07:52:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-16 19:03:25 +00:00
|
|
|
switch (order.side) {
|
|
|
|
case "BUY":
|
|
|
|
markers.push({
|
2022-05-17 07:52:24 +00:00
|
|
|
time: t,
|
2022-05-16 19:03:25 +00:00
|
|
|
position: 'belowBar',
|
|
|
|
color: '#239D10',
|
|
|
|
shape: 'arrowDown',
|
|
|
|
// text: 'Buy @ ' + order.price
|
|
|
|
text: 'B',
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "SELL":
|
|
|
|
markers.push({
|
2022-05-17 07:52:24 +00:00
|
|
|
time: t,
|
2022-05-16 19:03:25 +00:00
|
|
|
position: 'aboveBar',
|
|
|
|
color: '#e91e63',
|
|
|
|
shape: 'arrowDown',
|
|
|
|
// text: 'Sell @ ' + order.price
|
|
|
|
text: 'S',
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return markers;
|
|
|
|
};
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const removeDuplicatedKLines = (klines: Array<KLine>): Array<KLine> => {
|
2022-05-17 09:35:11 +00:00
|
|
|
const newK = [];
|
2022-05-17 17:53:48 +00:00
|
|
|
for (let i = 0; i < klines.length; i++) {
|
2022-05-17 09:35:11 +00:00
|
|
|
const k = klines[i];
|
|
|
|
|
2022-05-17 17:53:48 +00:00
|
|
|
if (i > 0 && k.time === klines[i - 1].time) {
|
2022-05-19 04:02:42 +00:00
|
|
|
console.warn(`duplicated kline at index ${i}`, k)
|
2022-05-17 09:35:11 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
newK.push(k);
|
|
|
|
}
|
|
|
|
return newK;
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
function fetchKLines(basePath: string, runID: string, symbol: string, interval: string) {
|
2022-05-16 19:03:25 +00:00
|
|
|
return fetch(
|
2022-05-17 17:53:48 +00:00
|
|
|
`${basePath}/${runID}/klines/${symbol}-${interval}.tsv`,
|
2022-05-16 19:03:25 +00:00
|
|
|
)
|
|
|
|
.then((response) => response.text())
|
|
|
|
.then((data) => tsvParse(data, parseKline()))
|
|
|
|
.catch((e) => {
|
|
|
|
console.error("failed to fetch klines", e)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
interface KLine {
|
|
|
|
time: Date;
|
|
|
|
startTime: Date;
|
|
|
|
endTime: Date;
|
|
|
|
interval: string;
|
|
|
|
open: number;
|
|
|
|
high: number;
|
|
|
|
low: number;
|
|
|
|
close: number;
|
|
|
|
volume: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
const klinesToVolumeData = (klines: Array<KLine>) => {
|
2022-05-17 06:56:41 +00:00
|
|
|
const volumes = [];
|
|
|
|
|
2022-05-17 17:53:48 +00:00
|
|
|
for (let i = 0; i < klines.length; i++) {
|
2022-05-17 06:56:41 +00:00
|
|
|
const kline = klines[i];
|
|
|
|
volumes.push({
|
|
|
|
time: (kline.startTime.getTime() / 1000),
|
|
|
|
value: kline.volume,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return volumes;
|
|
|
|
}
|
|
|
|
|
2022-05-17 09:14:48 +00:00
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
interface PositionHistoryEntry {
|
|
|
|
time: Date;
|
|
|
|
base: number;
|
|
|
|
quote: number;
|
|
|
|
average_cost: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
const positionBaseHistoryToLineData = (interval: string, hs: Array<PositionHistoryEntry>) => {
|
2022-05-17 09:14:48 +00:00
|
|
|
const bases = [];
|
|
|
|
const intervalSeconds = parseInterval(interval);
|
|
|
|
for (let i = 0; i < hs.length; i++) {
|
2022-05-17 10:10:37 +00:00
|
|
|
const pos = hs[i];
|
2022-05-19 04:02:42 +00:00
|
|
|
if (!pos.time) {
|
|
|
|
console.warn('position history record missing time field', pos)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
// ignore duplicated entry
|
2022-05-24 16:48:14 +00:00
|
|
|
if (i > 0 && hs[i].time.getTime() === hs[i - 1].time.getTime()) {
|
2022-05-23 07:39:56 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-05-17 09:14:48 +00:00
|
|
|
let t = pos.time.getTime() / 1000;
|
|
|
|
t = (t - t % intervalSeconds)
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
if (i > 0 && (pos.base === hs[i - 1].base)) {
|
2022-05-17 09:14:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bases.push({
|
|
|
|
time: t,
|
|
|
|
value: pos.base,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return bases;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const positionAverageCostHistoryToLineData = (interval: string, hs: Array<PositionHistoryEntry>) => {
|
2022-05-17 04:40:25 +00:00
|
|
|
const avgCosts = [];
|
2022-05-17 07:52:24 +00:00
|
|
|
const intervalSeconds = parseInterval(interval);
|
2022-05-17 04:40:25 +00:00
|
|
|
for (let i = 0; i < hs.length; i++) {
|
2022-05-17 10:10:37 +00:00
|
|
|
const pos = hs[i];
|
2022-05-19 04:02:42 +00:00
|
|
|
|
|
|
|
if (!pos.time) {
|
|
|
|
console.warn('position history record missing time field', pos)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
// ignore duplicated entry
|
2022-05-24 16:48:14 +00:00
|
|
|
if (i > 0 && hs[i].time.getTime() === hs[i - 1].time.getTime()) {
|
2022-05-23 07:39:56 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-05-17 07:52:24 +00:00
|
|
|
let t = pos.time.getTime() / 1000;
|
|
|
|
t = (t - t % intervalSeconds)
|
2022-05-17 04:40:25 +00:00
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
if (i > 0 && (pos.average_cost === hs[i - 1].average_cost)) {
|
2022-05-17 06:56:41 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-05-17 07:52:52 +00:00
|
|
|
if (pos.base === 0) {
|
2022-05-17 04:40:25 +00:00
|
|
|
avgCosts.push({
|
2022-05-17 07:52:24 +00:00
|
|
|
time: t,
|
2022-05-17 04:40:25 +00:00
|
|
|
value: 0,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
avgCosts.push({
|
2022-05-17 07:52:24 +00:00
|
|
|
time: t,
|
2022-05-17 04:40:25 +00:00
|
|
|
value: pos.average_cost,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
return avgCosts;
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const createBaseChart = (chartContainerRef: React.RefObject<any>) => {
|
2022-05-19 04:02:42 +00:00
|
|
|
return createChart(chartContainerRef.current, {
|
|
|
|
width: chartContainerRef.current.clientWidth,
|
|
|
|
height: chartContainerRef.current.clientHeight,
|
|
|
|
timeScale: {
|
|
|
|
timeVisible: true,
|
|
|
|
borderColor: '#D1D4DC',
|
|
|
|
},
|
|
|
|
rightPriceScale: {
|
|
|
|
borderColor: '#D1D4DC',
|
|
|
|
},
|
|
|
|
leftPriceScale: {
|
|
|
|
visible: true,
|
|
|
|
borderColor: 'rgba(197, 203, 206, 1)',
|
|
|
|
},
|
|
|
|
layout: {
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
textColor: '#000',
|
|
|
|
},
|
|
|
|
crosshair: {
|
|
|
|
mode: CrosshairMode.Normal,
|
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
horzLines: {
|
|
|
|
color: '#F0F3FA',
|
|
|
|
},
|
|
|
|
vertLines: {
|
|
|
|
color: '#F0F3FA',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
interface TradingViewChartProps {
|
|
|
|
basePath: string;
|
|
|
|
runID: string;
|
|
|
|
reportSummary: ReportSummary;
|
|
|
|
symbol: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TradingViewChart = (props: TradingViewChartProps) => {
|
|
|
|
const chartContainerRef = useRef<any>();
|
|
|
|
const chart = useRef<any>();
|
|
|
|
const resizeObserver = useRef<any>();
|
2022-05-19 16:48:15 +00:00
|
|
|
const intervals = props.reportSummary.intervals || [];
|
2022-05-21 19:07:31 +00:00
|
|
|
const [currentInterval, setCurrentInterval] = useState(intervals.length > 0 ? intervals[0] : '1m');
|
2022-05-16 14:24:25 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
2022-05-17 09:14:48 +00:00
|
|
|
if (!chartContainerRef.current || chartContainerRef.current.children.length > 0) {
|
2022-05-16 14:24:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-23 07:39:56 +00:00
|
|
|
const chartData: any = {};
|
2022-05-19 04:02:42 +00:00
|
|
|
const fetchers = [];
|
2022-05-23 07:39:56 +00:00
|
|
|
const ordersFetcher = fetchOrders(props.basePath, props.runID).then((orders) => {
|
2022-05-19 04:02:42 +00:00
|
|
|
const markers = ordersToMarkets(currentInterval, orders);
|
|
|
|
chartData.orders = orders;
|
|
|
|
chartData.markers = markers;
|
2022-05-23 07:39:56 +00:00
|
|
|
return orders;
|
2022-05-19 04:02:42 +00:00
|
|
|
});
|
|
|
|
fetchers.push(ordersFetcher);
|
|
|
|
|
|
|
|
if (props.reportSummary && props.reportSummary.manifests && props.reportSummary.manifests.length === 1) {
|
|
|
|
const manifest = props.reportSummary?.manifests[0];
|
|
|
|
if (manifest && manifest.type === "strategyProperty" && manifest.strategyProperty === "position") {
|
|
|
|
const positionHistoryFetcher = fetchPositionHistory(props.basePath, props.runID, manifest.filename).then((data) => {
|
|
|
|
chartData.positionHistory = data;
|
|
|
|
});
|
|
|
|
fetchers.push(positionHistoryFetcher);
|
2022-05-17 18:30:17 +00:00
|
|
|
}
|
2022-05-19 04:02:42 +00:00
|
|
|
}
|
2022-05-17 18:04:39 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
const kLinesFetcher = fetchKLines(props.basePath, props.runID, props.symbol, currentInterval).then((klines) => {
|
2022-05-23 07:39:56 +00:00
|
|
|
chartData.klines = removeDuplicatedKLines(klines as Array<KLine>)
|
2022-05-19 04:02:42 +00:00
|
|
|
});
|
|
|
|
fetchers.push(kLinesFetcher);
|
2022-05-16 14:24:25 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
Promise.all(fetchers).then(() => {
|
|
|
|
console.log("createChart")
|
2022-05-16 14:24:25 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
if (chart.current) {
|
|
|
|
chart.current.remove();
|
|
|
|
}
|
2022-05-17 17:53:48 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
chart.current = createBaseChart(chartContainerRef);
|
|
|
|
|
|
|
|
const series = chart.current.addCandlestickSeries({
|
|
|
|
upColor: 'rgb(38,166,154)',
|
|
|
|
downColor: 'rgb(255,82,82)',
|
|
|
|
wickUpColor: 'rgb(38,166,154)',
|
|
|
|
wickDownColor: 'rgb(255,82,82)',
|
|
|
|
borderVisible: false,
|
|
|
|
});
|
|
|
|
series.setData(chartData.klines);
|
|
|
|
series.setMarkers(chartData.markers);
|
|
|
|
|
|
|
|
const volumeData = klinesToVolumeData(chartData.klines);
|
|
|
|
const volumeSeries = chart.current.addHistogramSeries({
|
|
|
|
color: '#182233',
|
|
|
|
lineWidth: 2,
|
|
|
|
priceFormat: {
|
|
|
|
type: 'volume',
|
2022-05-16 19:03:25 +00:00
|
|
|
},
|
2022-05-19 04:02:42 +00:00
|
|
|
overlay: true,
|
|
|
|
scaleMargins: {
|
|
|
|
top: 0.8,
|
|
|
|
bottom: 0,
|
2022-05-16 19:03:25 +00:00
|
|
|
},
|
2022-05-19 04:02:42 +00:00
|
|
|
});
|
|
|
|
volumeSeries.setData(volumeData);
|
2022-05-16 19:03:25 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
if (chartData.positionHistory) {
|
|
|
|
const lineSeries = chart.current.addLineSeries();
|
|
|
|
const costLine = positionAverageCostHistoryToLineData(currentInterval, chartData.positionHistory);
|
|
|
|
lineSeries.setData(costLine);
|
2022-05-17 09:14:48 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
const baseLineSeries = chart.current.addLineSeries({
|
|
|
|
priceScaleId: 'left',
|
|
|
|
color: '#98338C',
|
|
|
|
});
|
|
|
|
const baseLine = positionBaseHistoryToLineData(currentInterval, chartData.positionHistory)
|
|
|
|
baseLineSeries.setData(baseLine);
|
|
|
|
}
|
2022-05-17 09:14:48 +00:00
|
|
|
|
2022-05-19 04:02:42 +00:00
|
|
|
chart.current.timeScale().fitContent();
|
2022-05-17 06:56:41 +00:00
|
|
|
});
|
|
|
|
|
2022-05-17 17:53:48 +00:00
|
|
|
return () => {
|
2022-05-19 04:02:42 +00:00
|
|
|
if (chart.current) {
|
|
|
|
chart.current.remove();
|
|
|
|
}
|
2022-05-17 17:53:48 +00:00
|
|
|
};
|
2022-05-19 04:02:42 +00:00
|
|
|
}, [props.runID, props.reportSummary, currentInterval])
|
2022-05-17 09:14:48 +00:00
|
|
|
|
|
|
|
// see:
|
|
|
|
// https://codesandbox.io/s/9inkb?file=/src/styles.css
|
|
|
|
useEffect(() => {
|
|
|
|
resizeObserver.current = new ResizeObserver(entries => {
|
|
|
|
if (!chart.current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-17 17:53:48 +00:00
|
|
|
const {width, height} = entries[0].contentRect;
|
|
|
|
chart.current.applyOptions({width, height});
|
2022-05-17 09:14:48 +00:00
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
chart.current.timeScale().fitContent();
|
|
|
|
}, 0);
|
|
|
|
});
|
2022-05-16 14:24:25 +00:00
|
|
|
|
2022-05-17 09:14:48 +00:00
|
|
|
resizeObserver.current.observe(chartContainerRef.current);
|
|
|
|
return () => resizeObserver.current.disconnect();
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2022-05-18 17:00:45 +00:00
|
|
|
<span>
|
2022-05-17 17:53:48 +00:00
|
|
|
{intervals.map((interval) => {
|
2022-05-23 07:39:56 +00:00
|
|
|
return <Button key={interval} compact onClick={() => {
|
2022-05-17 09:14:48 +00:00
|
|
|
setCurrentInterval(interval)
|
|
|
|
}}>
|
|
|
|
{interval}
|
|
|
|
</Button>
|
2022-05-17 17:53:48 +00:00
|
|
|
})}
|
2022-05-18 17:00:45 +00:00
|
|
|
</span>
|
2022-05-17 09:14:48 +00:00
|
|
|
<div ref={chartContainerRef} style={{'flex': 1, 'minHeight': 300}}>
|
|
|
|
</div>
|
2022-05-16 14:24:25 +00:00
|
|
|
</div>
|
2022-05-17 09:14:48 +00:00
|
|
|
);
|
2022-05-16 14:24:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default TradingViewChart;
|