Strategy: {strategyName}
{reportSummary.sessions.map((session) => Exchange: {session})}
{reportSummary.symbols.map((symbol) => Symbol: {symbol})}
{reportSummary.startTime.toString()} — {reportSummary.endTime.toString()} ~ {
moment.duration((new Date(reportSummary.endTime)).getTime() - (new Date(reportSummary.startTime)).getTime()).humanize()
}
Run ID: {runID}
= 0 ? "up" : "down"},
{
title: "Unr. Profit",
value: totalUnrealizedProfit.toString() + "$",
dir: totalUnrealizedProfit > 0 ? "up" : "down"
},
{title: "Trades", value: totalTrades.toString()},
{title: "Buy Vol", value: totalBuyVolume.toString() + ` ${volumeUnit}`},
{title: "Sell Vol", value: totalSellVolume.toString() + ` ${volumeUnit}`},
]}/>
Initial Total Balances
Final Total Balances
{
/*
{skeleton}
*/
}
{
reportSummary.symbols.map((symbol: string, i: number) => {
return
})
}
;
};
export default ReportDetails;