mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-22 19:15:15 +00:00
Unplugin more component imports
This commit is contained in:
parent
22066f0fa3
commit
9178ef3d13
|
@ -50,7 +50,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { StrategyBacktestResult } from '@/types';
|
||||
import BacktestResultPeriodBreakdown from './BacktestResultPeriodBreakdown.vue';
|
||||
import { formatObjectForTable } from '@/shared/objectToTableItems';
|
||||
|
||||
import { computed } from 'vue';
|
||||
|
|
|
@ -72,10 +72,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import TradeList from '@/components/ftbot/TradeList.vue';
|
||||
import TradeListNav from '@/components/ftbot/TradeListNav.vue';
|
||||
import PairSummary from '@/components/ftbot/PairSummary.vue';
|
||||
import CandleChartContainer from '@/components/charts/CandleChartContainer.vue';
|
||||
import { ref } from 'vue';
|
||||
import { ChartSliderPosition, Trade } from '@/types';
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@ import { formatObjectForTable } from '@/shared/objectToTableItems';
|
|||
import { computed } from 'vue';
|
||||
import { generateBacktestMetricRows } from '@/shared/backtestMetrics';
|
||||
import { TableField } from 'bootstrap-vue-next';
|
||||
import BacktestResultSelectEntry from '@/components/ftbot/BacktestResultSelectEntry.vue';
|
||||
|
||||
const props = defineProps({
|
||||
backtestResults: { required: true, type: Object as () => Record<string, BacktestResultInMemory> },
|
||||
|
|
|
@ -47,7 +47,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { BacktestResultInMemory, BacktestResultUpdate } from '@/types';
|
||||
import BacktestResultSelectEntry from '@/components/ftbot/BacktestResultSelectEntry.vue';
|
||||
|
||||
defineProps({
|
||||
backtestHistory: {
|
||||
|
|
|
@ -199,14 +199,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import TimeRangeSelect from '@/components/ftbot/TimeRangeSelect.vue';
|
||||
|
||||
import FreqaiModelSelect from '@/components/ftbot/FreqaiModelSelect.vue';
|
||||
import StrategySelect from '@/components/ftbot/StrategySelect.vue';
|
||||
import TimeframeSelect from '@/components/ftbot/TimeframeSelect.vue';
|
||||
|
||||
import InfoBox from '@/components/general/InfoBox.vue';
|
||||
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import { BacktestPayload } from '@/types';
|
||||
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import BalanceChart from '@/components/charts/BalanceChart.vue';
|
||||
import { formatPercent, formatPrice } from '@/shared/formatters';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import { BalanceValues } from '@/types';
|
||||
|
|
|
@ -69,7 +69,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import ProfitPill from '@/components/general/ProfitPill.vue';
|
||||
import { formatPrice } from '@/shared/formatters';
|
||||
import { computed } from 'vue';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { formatPercent, formatPriceCurrency, timestampms } from '@/shared/formatters';
|
||||
import DateTimeTZ from '@/components/general/DateTimeTZ.vue';
|
||||
|
||||
import { ProfitInterface } from '@/types';
|
||||
import { TableField, TableItem } from 'bootstrap-vue-next';
|
||||
|
|
|
@ -86,10 +86,8 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import DateTimeTZ from '@/components/general/DateTimeTZ.vue';
|
||||
import { formatPercent, formatPriceCurrency } from '@/shared/formatters';
|
||||
|
||||
import BotProfit from '@/components/ftbot/BotProfit.vue';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
|
||||
const botStore = useBotStore();
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { Trade } from '@/types';
|
||||
import CustomTradeListEntry from '@/components/ftbot/CustomTradeListEntry.vue';
|
||||
import { computed, ref } from 'vue';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { Trade } from '@/types';
|
||||
import DateTimeTZ from '@/components/general/DateTimeTZ.vue';
|
||||
import TradeProfit from './TradeProfit.vue';
|
||||
|
||||
defineProps({
|
||||
|
|
|
@ -32,8 +32,6 @@
|
|||
<script setup lang="ts">
|
||||
import { formatPercent, timestampms } from '@/shared/formatters';
|
||||
import { Lock, Trade } from '@/types';
|
||||
import TradeProfit from '@/components/ftbot/TradeProfit.vue';
|
||||
import ProfitPill from '@/components/general/ProfitPill.vue';
|
||||
import { computed, ref } from 'vue';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import PairlistConfigParameter from '@/components/ftbot/PairlistConfigParameter.vue';
|
||||
import { usePairlistConfigStore } from '@/stores/pairlistConfig';
|
||||
import { Pairlist } from '@/types';
|
||||
import { computed } from 'vue';
|
||||
|
|
|
@ -44,7 +44,6 @@ import { ref, watch } from 'vue';
|
|||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import { usePairlistConfigStore } from '@/stores/pairlistConfig';
|
||||
import ChartView from '@/views/ChartsView.vue';
|
||||
import CopyableTextfield from '@/components/general/CopyableTextfield.vue';
|
||||
|
||||
const botStore = useBotStore();
|
||||
const pairlistStore = usePairlistConfigStore();
|
||||
|
|
|
@ -99,7 +99,6 @@ import PairlistConfigBlacklist from './PairlistConfigBlacklist.vue';
|
|||
import PairlistConfigActions from './PairlistConfigActions.vue';
|
||||
import { Pairlist } from '@/types';
|
||||
import { useSortable, moveArrayElement } from '@vueuse/integrations/useSortable';
|
||||
import CopyableTextfield from '@/components/general/CopyableTextfield.vue';
|
||||
import ExchangeSelect from './ExchangeSelect.vue';
|
||||
|
||||
const botStore = useBotStore();
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import TimePeriodChart from '@/components/charts/TimePeriodChart.vue';
|
||||
import { formatPercent, formatPrice } from '@/shared/formatters';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import { TableField } from 'bootstrap-vue-next';
|
||||
|
|
|
@ -130,9 +130,6 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
import { formatPercent, formatPriceCurrency, formatPrice, timestampms } from '@/shared/formatters';
|
||||
import ValuePair from '@/components/general/ValuePair.vue';
|
||||
import TradeProfit from '@/components/ftbot/TradeProfit.vue';
|
||||
import DateTimeTZ from '@/components/general/DateTimeTZ.vue';
|
||||
import { Trade } from '@/types';
|
||||
|
||||
defineProps({
|
||||
|
|
Loading…
Reference in New Issue
Block a user