diff --git a/src/views/Backtesting.vue b/src/views/Backtesting.vue index 607297dc..bbecd85a 100644 --- a/src/views/Backtesting.vue +++ b/src/views/Backtesting.vue @@ -135,11 +135,13 @@
+
@@ -177,6 +179,7 @@ import CandleChartContainer from '@/components/charts/CandleChartContainer.vue'; import StrategyList from '@/components/ftbot/StrategyList.vue'; import ValuePair from '@/components/ftbot/ValuePair.vue'; import CumProfitChart from '@/components/charts/CumProfitChart.vue'; +import TradesLogChart from '@/components/charts/TradesLog.vue'; import PairSummary from '@/components/ftbot/PairSummary.vue'; import { @@ -196,6 +199,7 @@ const ftbot = namespace('ftbot'); TimeRangeSelect, CandleChartContainer, CumProfitChart, + TradesLogChart, StrategyList, ValuePair, PairSummary, @@ -313,7 +317,13 @@ export default class Backtesting extends Vue { .candle-chart-container { height: 640px !important; } -.cum-profit-container { - height: 640px !important; + +.cum-profit { + height: 350px; + max-height: 350px; +} +.trades-log { + height: 350px; + max-height: 350px; }