2020-07-26 11:44:34 +00:00
|
|
|
<template>
|
2020-12-05 15:32:44 +00:00
|
|
|
<div class="container-fluid">
|
2021-01-21 06:47:51 +00:00
|
|
|
<div class="mb-2">
|
|
|
|
<h2 class="mt-3 d-inline">Backtesting</h2>
|
|
|
|
<small v-show="backtestRunning" class="bt-running-label">Backtest running</small>
|
|
|
|
</div>
|
2020-12-05 15:32:44 +00:00
|
|
|
<div class="container">
|
2021-01-06 12:13:02 +00:00
|
|
|
<div class="row mx-5 d-flex flex-wrap justify-content-center mb-4">
|
2020-12-05 15:32:44 +00:00
|
|
|
<b-form-radio
|
|
|
|
v-model="btFormMode"
|
|
|
|
name="bt-form-radios"
|
|
|
|
button
|
2021-01-06 12:13:02 +00:00
|
|
|
class="mx-1"
|
2020-12-05 15:32:44 +00:00
|
|
|
value="run"
|
|
|
|
:disabled="!canRunBacktest"
|
|
|
|
>Run backtest</b-form-radio
|
2020-09-25 04:22:34 +00:00
|
|
|
>
|
2020-12-05 15:32:44 +00:00
|
|
|
<b-form-radio
|
|
|
|
v-model="btFormMode"
|
|
|
|
name="bt-form-radios"
|
|
|
|
button
|
2021-01-06 12:13:02 +00:00
|
|
|
class="mx-1"
|
2020-12-05 15:32:44 +00:00
|
|
|
value="results"
|
|
|
|
:disabled="!hasBacktestResult"
|
|
|
|
>Analyze result</b-form-radio
|
|
|
|
>
|
|
|
|
<b-form-radio
|
|
|
|
v-model="btFormMode"
|
|
|
|
name="bt-form-radios"
|
|
|
|
button
|
2021-01-06 12:13:02 +00:00
|
|
|
class="mx-1"
|
2020-12-05 15:32:44 +00:00
|
|
|
value="visualize-summary"
|
|
|
|
:disabled="!hasBacktestResult"
|
|
|
|
>Visualize summary</b-form-radio
|
|
|
|
>
|
|
|
|
<b-form-radio
|
|
|
|
v-model="btFormMode"
|
|
|
|
name="bt-form-radios"
|
|
|
|
button
|
2021-01-06 12:13:02 +00:00
|
|
|
class="mx-1"
|
2020-12-05 15:32:44 +00:00
|
|
|
value="visualize"
|
|
|
|
:disabled="!hasBacktestResult"
|
|
|
|
>Visualize result</b-form-radio
|
|
|
|
>
|
|
|
|
</div>
|
2020-09-25 04:22:34 +00:00
|
|
|
|
2021-01-06 12:13:02 +00:00
|
|
|
<div v-if="btFormMode == 'run'" class="row d-flex flex-column">
|
2020-12-05 15:32:44 +00:00
|
|
|
<StrategyList v-model="strategy"></StrategyList>
|
2020-09-25 04:22:34 +00:00
|
|
|
|
2020-12-05 15:32:44 +00:00
|
|
|
<b-card bg-variant="light" class="w-60" :disabled="backtestRunning">
|
|
|
|
<!-- Backtesting parameters -->
|
2020-09-25 04:22:34 +00:00
|
|
|
<b-form-group
|
2020-12-05 15:32:44 +00:00
|
|
|
label-cols-lg="2"
|
|
|
|
label="Backtest params"
|
|
|
|
label-size="sm"
|
|
|
|
label-class="font-weight-bold pt-0"
|
|
|
|
class="mb-0"
|
2020-07-27 05:19:45 +00:00
|
|
|
>
|
2020-12-05 15:32:44 +00:00
|
|
|
<b-form-group
|
|
|
|
label-cols-sm="5"
|
|
|
|
label="Timeframe:"
|
|
|
|
label-align-sm="right"
|
2021-01-06 19:25:38 +00:00
|
|
|
label-for="timeframe-select"
|
2020-12-05 15:32:44 +00:00
|
|
|
>
|
|
|
|
<b-form-select
|
|
|
|
id="timeframe-select"
|
2021-01-02 14:10:10 +00:00
|
|
|
v-model="selectedTimeframe"
|
2020-12-05 15:32:44 +00:00
|
|
|
placeholder="Use strategy default"
|
|
|
|
:options="availableTimeframes"
|
|
|
|
></b-form-select>
|
|
|
|
</b-form-group>
|
|
|
|
|
|
|
|
<b-form-group
|
|
|
|
label-cols-sm="5"
|
|
|
|
label="Max open trades:"
|
|
|
|
label-align-sm="right"
|
|
|
|
label-for="max-open-trades"
|
|
|
|
>
|
|
|
|
<b-form-input
|
|
|
|
id="max-open-trades"
|
2020-12-08 18:35:06 +00:00
|
|
|
v-model="maxOpenTrades"
|
2020-12-05 15:32:44 +00:00
|
|
|
placeholder="Use strategy default"
|
|
|
|
type="number"
|
|
|
|
></b-form-input>
|
|
|
|
</b-form-group>
|
2021-02-17 19:37:30 +00:00
|
|
|
<b-form-group
|
|
|
|
label-cols-sm="5"
|
|
|
|
label="Starting capital:"
|
|
|
|
label-align-sm="right"
|
|
|
|
label-for="starting-capital"
|
|
|
|
>
|
|
|
|
<b-form-input
|
|
|
|
id="starting-capital"
|
|
|
|
v-model="startingCapital"
|
|
|
|
type="number"
|
|
|
|
step="0.001"
|
|
|
|
></b-form-input>
|
|
|
|
</b-form-group>
|
2020-12-05 15:32:44 +00:00
|
|
|
<b-form-group
|
|
|
|
label-cols-sm="5"
|
|
|
|
label="Stake amount:"
|
|
|
|
label-align-sm="right"
|
|
|
|
label-for="stake-amount"
|
|
|
|
>
|
2021-02-28 08:53:51 +00:00
|
|
|
<div class="d-flex">
|
2021-03-10 15:09:55 +00:00
|
|
|
<b-form-checkbox
|
|
|
|
id="stake-amount-bool"
|
|
|
|
v-model="stakeAmountUnlimited"
|
|
|
|
class="col-md-6"
|
2021-02-28 08:53:51 +00:00
|
|
|
>Unlimited stake</b-form-checkbox
|
|
|
|
>
|
|
|
|
|
|
|
|
<b-form-input
|
|
|
|
id="stake-amount"
|
|
|
|
v-model="stakeAmount"
|
|
|
|
type="number"
|
|
|
|
placeholder="Use strategy default"
|
|
|
|
step="0.01"
|
|
|
|
:disabled="stakeAmountUnlimited"
|
|
|
|
></b-form-input>
|
|
|
|
</div>
|
2020-12-05 15:32:44 +00:00
|
|
|
</b-form-group>
|
|
|
|
|
2021-01-06 19:25:38 +00:00
|
|
|
<b-form-group
|
|
|
|
label-cols-sm="5"
|
|
|
|
label="Enable Protections:"
|
|
|
|
label-align-sm="right"
|
|
|
|
label-for="enable-protections"
|
|
|
|
>
|
|
|
|
<b-form-checkbox
|
|
|
|
id="enable-protections"
|
|
|
|
v-model="enableProtections"
|
|
|
|
></b-form-checkbox>
|
|
|
|
</b-form-group>
|
|
|
|
|
2020-12-08 18:35:06 +00:00
|
|
|
<!-- <b-form-group label-cols-sm="5" label="Fee:" label-align-sm="right" label-for="fee">
|
2020-12-05 15:32:44 +00:00
|
|
|
<b-form-input
|
|
|
|
id="fee"
|
|
|
|
type="number"
|
|
|
|
placeholder="Use exchange default"
|
|
|
|
step="0.01"
|
|
|
|
></b-form-input>
|
2020-12-08 18:35:06 +00:00
|
|
|
</b-form-group> -->
|
2020-09-25 04:22:34 +00:00
|
|
|
</b-form-group>
|
2020-12-05 15:32:44 +00:00
|
|
|
</b-card>
|
|
|
|
|
2021-01-06 12:13:02 +00:00
|
|
|
<TimeRangeSelect v-model="timerange" class="mt-2"></TimeRangeSelect>
|
|
|
|
<h3 class="mt-3">Backtesting summary</h3>
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
<b-button
|
|
|
|
variant="primary"
|
|
|
|
:disabled="backtestRunning"
|
|
|
|
class="mx-1"
|
|
|
|
@click="clickBacktest"
|
|
|
|
>
|
2020-12-05 15:32:44 +00:00
|
|
|
Start backtest
|
|
|
|
</b-button>
|
2021-01-06 12:13:02 +00:00
|
|
|
<b-button
|
|
|
|
variant="primary"
|
|
|
|
:disabled="backtestRunning"
|
|
|
|
class="mx-1"
|
|
|
|
@click="pollBacktest"
|
|
|
|
>
|
2020-12-05 15:32:44 +00:00
|
|
|
Load backtest result
|
|
|
|
</b-button>
|
2021-01-06 12:13:02 +00:00
|
|
|
<b-button variant="primary" class="mx-1" @click="removeBacktest">Reset Backtest</b-button>
|
2020-12-05 15:32:44 +00:00
|
|
|
</div>
|
2020-09-25 04:22:34 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-10 15:34:09 +00:00
|
|
|
<div v-if="hasBacktestResult && btFormMode == 'results'" class="w-100 mt-2 row">
|
2021-01-20 06:55:56 +00:00
|
|
|
<BacktestResultSelect
|
|
|
|
:backtest-history="backtestHistory"
|
|
|
|
:selected-backtest-result-key="selectedBacktestResultKey"
|
2021-03-10 15:09:55 +00:00
|
|
|
class="col-3 align-self-start sticky-top"
|
2021-01-20 06:55:56 +00:00
|
|
|
@selectionChange="setBacktestResult"
|
|
|
|
/>
|
2021-03-10 15:34:09 +00:00
|
|
|
<BacktestResultView :backtest-result="selectedBacktestResult" class="col-9" />
|
2020-09-25 04:22:34 +00:00
|
|
|
</div>
|
2020-11-01 12:58:16 +00:00
|
|
|
<div
|
|
|
|
v-if="hasBacktestResult && btFormMode == 'visualize-summary'"
|
2021-01-06 13:51:04 +00:00
|
|
|
class="text-center w-100 mt-2 d-flex flex-column"
|
2020-11-01 12:58:16 +00:00
|
|
|
>
|
2021-01-06 13:51:04 +00:00
|
|
|
<TradesLogChart :trades="selectedBacktestResult.trades" class="trades-log" />
|
2020-11-01 12:58:16 +00:00
|
|
|
<CumProfitChart
|
|
|
|
:trades="selectedBacktestResult.trades"
|
|
|
|
profit-column="profit_abs"
|
2021-01-06 13:51:04 +00:00
|
|
|
class="cum-profit"
|
2020-11-01 12:58:16 +00:00
|
|
|
:show-title="true"
|
|
|
|
/>
|
|
|
|
</div>
|
2020-12-05 16:42:22 +00:00
|
|
|
<div
|
|
|
|
v-if="hasBacktestResult && btFormMode == 'visualize'"
|
|
|
|
class="container-fluid row text-center w-100 mt-2"
|
|
|
|
>
|
2021-01-20 06:55:56 +00:00
|
|
|
<p>
|
|
|
|
Graph will always show the latest values for the selected strategy. Strategy: {{ strategy }}
|
|
|
|
</p>
|
2021-01-15 19:41:32 +00:00
|
|
|
<div class="container-fluid row text-center">
|
|
|
|
<PairSummary
|
|
|
|
class="col-md-2"
|
|
|
|
:pairlist="selectedBacktestResult.pairlist"
|
|
|
|
:trades="selectedBacktestResult.trades"
|
|
|
|
sort-method="profit"
|
|
|
|
/>
|
|
|
|
<CandleChartContainer
|
|
|
|
:available-pairs="selectedBacktestResult.pairlist"
|
|
|
|
:historic-view="!!true"
|
|
|
|
:timeframe="timeframe"
|
|
|
|
:plot-config="selectedPlotConfig"
|
|
|
|
:timerange="timerange"
|
|
|
|
:strategy="strategy"
|
|
|
|
:trades="selectedBacktestResult.trades"
|
|
|
|
class="col-md-10 candle-chart-container"
|
|
|
|
>
|
|
|
|
</CandleChartContainer>
|
|
|
|
</div>
|
2020-07-26 17:35:56 +00:00
|
|
|
</div>
|
2020-07-26 11:44:34 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue, Watch } from 'vue-property-decorator';
|
|
|
|
import { namespace } from 'vuex-class';
|
|
|
|
import TimeRangeSelect from '@/components/ftbot/TimeRangeSelect.vue';
|
2020-07-26 17:35:56 +00:00
|
|
|
import BacktestResultView from '@/components/ftbot/BacktestResultView.vue';
|
2021-01-20 06:55:56 +00:00
|
|
|
import BacktestResultSelect from '@/components/ftbot/BacktestResultSelect.vue';
|
2020-09-12 17:21:35 +00:00
|
|
|
import CandleChartContainer from '@/components/charts/CandleChartContainer.vue';
|
2020-08-08 18:21:47 +00:00
|
|
|
import StrategyList from '@/components/ftbot/StrategyList.vue';
|
2021-03-10 15:34:09 +00:00
|
|
|
import ValuePair from '@/components/general/ValuePair.vue';
|
2020-11-01 12:58:16 +00:00
|
|
|
import CumProfitChart from '@/components/charts/CumProfitChart.vue';
|
2021-01-06 13:51:04 +00:00
|
|
|
import TradesLogChart from '@/components/charts/TradesLog.vue';
|
2020-12-05 16:42:22 +00:00
|
|
|
import PairSummary from '@/components/ftbot/PairSummary.vue';
|
2020-07-26 17:35:56 +00:00
|
|
|
|
2021-02-28 19:05:07 +00:00
|
|
|
import { BacktestPayload, PairHistoryPayload, PlotConfig, StrategyBacktestResult } from '@/types';
|
2020-07-27 05:19:45 +00:00
|
|
|
|
|
|
|
import { getCustomPlotConfig, getPlotConfigName } from '@/shared/storage';
|
2021-01-14 07:04:28 +00:00
|
|
|
import { formatPercent } from '@/shared/formatters';
|
2021-01-15 19:41:32 +00:00
|
|
|
import { BotStoreGetters } from '@/store/modules/ftbot';
|
2020-07-26 11:44:34 +00:00
|
|
|
|
|
|
|
const ftbot = namespace('ftbot');
|
|
|
|
@Component({
|
2020-11-01 12:47:57 +00:00
|
|
|
components: {
|
|
|
|
BacktestResultView,
|
2021-01-20 06:55:56 +00:00
|
|
|
BacktestResultSelect,
|
2020-11-01 12:47:57 +00:00
|
|
|
TimeRangeSelect,
|
|
|
|
CandleChartContainer,
|
2020-11-01 12:58:16 +00:00
|
|
|
CumProfitChart,
|
2021-01-06 13:51:04 +00:00
|
|
|
TradesLogChart,
|
2020-11-01 12:47:57 +00:00
|
|
|
StrategyList,
|
|
|
|
ValuePair,
|
2020-12-05 16:42:22 +00:00
|
|
|
PairSummary,
|
2020-11-01 12:47:57 +00:00
|
|
|
},
|
2020-07-26 11:44:34 +00:00
|
|
|
})
|
2020-07-26 17:35:56 +00:00
|
|
|
export default class Backtesting extends Vue {
|
|
|
|
pollInterval: number | null = null;
|
2020-07-26 11:44:34 +00:00
|
|
|
|
2020-09-25 04:22:34 +00:00
|
|
|
availableTimeframes = [
|
|
|
|
'1m',
|
|
|
|
'3m',
|
|
|
|
'5m',
|
|
|
|
'15m',
|
|
|
|
'30m',
|
|
|
|
'1h',
|
|
|
|
'2h',
|
|
|
|
'4h',
|
|
|
|
'6h',
|
|
|
|
'8h',
|
|
|
|
'12h',
|
|
|
|
'1d',
|
|
|
|
'3d',
|
|
|
|
'1w',
|
|
|
|
'2w',
|
|
|
|
'1M',
|
|
|
|
'1y',
|
|
|
|
];
|
|
|
|
|
2021-01-02 14:10:10 +00:00
|
|
|
selectedTimeframe = '';
|
|
|
|
|
2020-09-25 04:22:34 +00:00
|
|
|
strategy = '';
|
|
|
|
|
2021-01-06 19:25:38 +00:00
|
|
|
timerange = '';
|
|
|
|
|
|
|
|
enableProtections = false;
|
|
|
|
|
|
|
|
maxOpenTrades = '';
|
|
|
|
|
2021-02-28 08:53:51 +00:00
|
|
|
stakeAmountUnlimited = false;
|
|
|
|
|
2021-01-06 19:25:38 +00:00
|
|
|
stakeAmount = '';
|
|
|
|
|
2021-02-17 19:37:30 +00:00
|
|
|
startingCapital = '';
|
|
|
|
|
2020-12-05 15:32:44 +00:00
|
|
|
btFormMode = 'run';
|
2020-07-26 17:35:56 +00:00
|
|
|
|
2020-07-27 05:19:45 +00:00
|
|
|
selectedPlotConfig: PlotConfig = getCustomPlotConfig(getPlotConfigName());
|
2020-07-26 11:44:34 +00:00
|
|
|
|
|
|
|
@ftbot.State backtestRunning!: boolean;
|
|
|
|
|
2021-01-14 07:04:28 +00:00
|
|
|
@ftbot.State backtestHistory!: StrategyBacktestResult[];
|
|
|
|
|
2021-01-16 09:56:31 +00:00
|
|
|
@ftbot.State selectedBacktestResultKey!: string;
|
2021-01-15 19:41:32 +00:00
|
|
|
|
2020-07-27 05:19:45 +00:00
|
|
|
@ftbot.State history;
|
|
|
|
|
2021-01-16 09:56:31 +00:00
|
|
|
@ftbot.Getter [BotStoreGetters.selectedBacktestResult]!: StrategyBacktestResult;
|
|
|
|
|
2020-07-27 05:19:45 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
@ftbot.Action public getPairHistory!: (payload: PairHistoryPayload) => void;
|
|
|
|
|
2020-07-26 17:35:56 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
@ftbot.Action startBacktest!: (payload: BacktestPayload) => void;
|
2020-07-26 11:44:34 +00:00
|
|
|
|
|
|
|
@ftbot.Action pollBacktest!: () => void;
|
|
|
|
|
2020-09-18 18:56:20 +00:00
|
|
|
@ftbot.Action removeBacktest!: () => void;
|
|
|
|
|
2021-01-16 09:56:31 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
@ftbot.Mutation setBacktestResultKey!: (key: string) => void;
|
|
|
|
|
2021-01-14 07:04:28 +00:00
|
|
|
formatPercent = formatPercent;
|
|
|
|
|
2020-09-25 04:22:34 +00:00
|
|
|
get canRunBacktest() {
|
|
|
|
// TODO: Analyze if parameters and strategy has been selected.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-07-26 17:35:56 +00:00
|
|
|
get hasBacktestResult() {
|
2021-01-21 06:47:51 +00:00
|
|
|
return this.backtestHistory ? Object.keys(this.backtestHistory).length !== 0 : false;
|
2020-07-26 17:35:56 +00:00
|
|
|
}
|
|
|
|
|
2020-08-08 18:21:47 +00:00
|
|
|
get timeframe(): string {
|
|
|
|
try {
|
2021-01-21 06:47:51 +00:00
|
|
|
return this.selectedBacktestResult.timeframe;
|
2020-08-08 18:21:47 +00:00
|
|
|
} catch (err) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 09:56:31 +00:00
|
|
|
setBacktestResult(key: string) {
|
|
|
|
this.setBacktestResultKey(key);
|
|
|
|
}
|
|
|
|
|
2020-07-26 11:44:34 +00:00
|
|
|
clickBacktest() {
|
|
|
|
const btPayload: BacktestPayload = {
|
2020-07-26 17:35:56 +00:00
|
|
|
strategy: this.strategy,
|
2020-07-26 11:44:34 +00:00
|
|
|
timerange: this.timerange,
|
2021-01-06 19:25:38 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
|
|
|
enable_protections: this.enableProtections,
|
2020-07-26 11:44:34 +00:00
|
|
|
};
|
2021-01-06 12:13:10 +00:00
|
|
|
const openTradesInt = parseInt(this.maxOpenTrades, 10);
|
|
|
|
if (openTradesInt) {
|
2020-12-08 18:35:06 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
2021-01-06 12:13:10 +00:00
|
|
|
btPayload.max_open_trades = openTradesInt;
|
2020-12-08 18:35:06 +00:00
|
|
|
}
|
2021-02-28 08:53:51 +00:00
|
|
|
if (this.stakeAmountUnlimited) {
|
2020-12-08 18:35:06 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
2021-02-28 08:53:51 +00:00
|
|
|
btPayload.stake_amount = 'unlimited';
|
|
|
|
} else {
|
|
|
|
const stakeAmount = Number(this.stakeAmount);
|
|
|
|
if (stakeAmount) {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
|
|
|
btPayload.stake_amount = stakeAmount;
|
|
|
|
}
|
2020-12-08 18:35:06 +00:00
|
|
|
}
|
2021-02-17 19:37:30 +00:00
|
|
|
|
|
|
|
const startingCapital = Number(this.startingCapital);
|
|
|
|
if (startingCapital) {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
|
|
|
btPayload.dry_run_wallet = startingCapital;
|
|
|
|
}
|
|
|
|
|
2021-01-02 14:10:10 +00:00
|
|
|
if (this.selectedTimeframe) {
|
|
|
|
btPayload.timeframe = this.selectedTimeframe;
|
|
|
|
}
|
2020-12-08 18:35:06 +00:00
|
|
|
|
2020-07-26 11:44:34 +00:00
|
|
|
this.startBacktest(btPayload);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Watch('backtestRunning')
|
|
|
|
backtestRunningChanged() {
|
|
|
|
if (this.backtestRunning === true) {
|
2020-07-26 17:35:56 +00:00
|
|
|
this.pollInterval = window.setInterval(this.pollBacktest, 1000);
|
2020-07-26 11:44:34 +00:00
|
|
|
} else if (this.pollInterval) {
|
|
|
|
clearInterval(this.pollInterval);
|
|
|
|
this.pollInterval = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2020-09-16 18:28:48 +00:00
|
|
|
<style scoped>
|
|
|
|
.candle-chart-container {
|
|
|
|
height: 640px !important;
|
|
|
|
}
|
2021-01-06 13:51:04 +00:00
|
|
|
|
|
|
|
.cum-profit {
|
|
|
|
height: 350px;
|
|
|
|
max-height: 350px;
|
|
|
|
}
|
|
|
|
.trades-log {
|
|
|
|
height: 350px;
|
|
|
|
max-height: 350px;
|
2020-11-01 12:58:16 +00:00
|
|
|
}
|
2021-01-21 06:47:51 +00:00
|
|
|
.bt-running-label {
|
|
|
|
position: absolute;
|
|
|
|
right: 2em;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2020-09-16 18:28:48 +00:00
|
|
|
</style>
|