mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
show initial balances and final balances
This commit is contained in:
parent
d10f69c680
commit
10de042939
|
@ -4,16 +4,18 @@ import moment from 'moment';
|
||||||
|
|
||||||
import TradingViewChart from './TradingViewChart';
|
import TradingViewChart from './TradingViewChart';
|
||||||
|
|
||||||
import {ReportSummary} from "../types";
|
import {BalanceMap, ReportSummary} from "../types";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Badge,
|
Badge,
|
||||||
Container,
|
Container,
|
||||||
createStyles,
|
createStyles,
|
||||||
|
Grid,
|
||||||
Group,
|
Group,
|
||||||
Paper,
|
Paper,
|
||||||
SimpleGrid,
|
SimpleGrid,
|
||||||
Skeleton,
|
Skeleton,
|
||||||
|
Table,
|
||||||
Text,
|
Text,
|
||||||
ThemeIcon,
|
ThemeIcon,
|
||||||
Title
|
Title
|
||||||
|
@ -136,6 +138,30 @@ const fetchReportSummary = (basePath: string, runID: string) => {
|
||||||
|
|
||||||
const skeleton = <Skeleton height={140} radius="md" animate={false}/>;
|
const skeleton = <Skeleton height={140} radius="md" animate={false}/>;
|
||||||
|
|
||||||
|
|
||||||
|
interface BalanceDetailsProps {
|
||||||
|
balances: BalanceMap;
|
||||||
|
}
|
||||||
|
|
||||||
|
const BalanceDetails = (props: BalanceDetailsProps) => {
|
||||||
|
const rows = Object.entries(props.balances).map(([k, v]) => {
|
||||||
|
return <tr key={k}>
|
||||||
|
<td>{k}</td>
|
||||||
|
<td>{v.available}</td>
|
||||||
|
</tr>;
|
||||||
|
});
|
||||||
|
|
||||||
|
return <Table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Currency</th>
|
||||||
|
<th>Balance</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>{rows}</tbody>
|
||||||
|
</Table>;
|
||||||
|
};
|
||||||
|
|
||||||
const ReportDetails = (props: ReportDetailsProps) => {
|
const ReportDetails = (props: ReportDetailsProps) => {
|
||||||
const [reportSummary, setReportSummary] = useState<ReportSummary>()
|
const [reportSummary, setReportSummary] = useState<ReportSummary>()
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -186,6 +212,17 @@ const ReportDetails = (props: ReportDetailsProps) => {
|
||||||
{title: "Sell Volume", value: totalSellVolume.toString() + ` ${volumeUnit}`},
|
{title: "Sell Volume", value: totalSellVolume.toString() + ` ${volumeUnit}`},
|
||||||
]}/>
|
]}/>
|
||||||
|
|
||||||
|
<Grid p={"xs"} mb={"lg"}>
|
||||||
|
<Grid.Col xs={6}>
|
||||||
|
<Title order={5}>Initial Total Balances</Title>
|
||||||
|
<BalanceDetails balances={reportSummary.initialTotalBalances}/>
|
||||||
|
</Grid.Col>
|
||||||
|
<Grid.Col xs={6}>
|
||||||
|
<Title order={5}>Final Total Balances</Title>
|
||||||
|
<BalanceDetails balances={reportSummary.finalTotalBalances}/>
|
||||||
|
</Grid.Col>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user