mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Use PascalCase for e-charts components
This commit is contained in:
parent
4a83fc4559
commit
e0b7caf4f0
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<e-charts
|
||||
<ECharts
|
||||
v-if="currencies"
|
||||
ref="balanceChart"
|
||||
:option="balanceChartOptions"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div class="chart-wrapper">
|
||||
<e-charts v-if="hasData" ref="candleChart" :theme="theme" autoresize manual-update />
|
||||
<ECharts v-if="hasData" ref="candleChart" :theme="theme" autoresize manual-update />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<e-charts
|
||||
<ECharts
|
||||
v-if="trades"
|
||||
ref="chart"
|
||||
:option="cumProfitChartOptions"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<e-charts
|
||||
<ECharts
|
||||
v-if="trades.length > 0"
|
||||
:option="hourlyChartOptions"
|
||||
autoresize
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div class="d-flex flex-column h-100 position-relative">
|
||||
<div class="flex-grow-1">
|
||||
<e-charts v-if="trades" :option="chartOptions" autoresize :theme="settingsStore.chartTheme" />
|
||||
<ECharts v-if="trades" :option="chartOptions" autoresize :theme="settingsStore.chartTheme" />
|
||||
</div>
|
||||
<b-form-group
|
||||
class="z-2"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<e-charts
|
||||
<ECharts
|
||||
v-if="dailyStats.data"
|
||||
ref="dailyChart"
|
||||
:option="dailyChartOptions"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<e-charts
|
||||
<ECharts
|
||||
v-if="trades.length > 0"
|
||||
:option="chartOptions"
|
||||
autoresize
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<DateTimeTZ :date="trade.open_timestamp" :date-only="true" />
|
||||
</small>
|
||||
</div>
|
||||
<trade-profit class="col-5" :trade="trade" />
|
||||
<TradeProfit class="col-5" :trade="trade" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
>
|
||||
<i-mdi-content-save />
|
||||
</b-button>
|
||||
<edit-value
|
||||
<EditValue
|
||||
v-model="pairlistStore.config.name"
|
||||
editable-name="config"
|
||||
:allow-add="true"
|
||||
|
@ -26,7 +26,7 @@
|
|||
:options="pairlistStore.savedConfigs.map((c) => c.name)"
|
||||
@update:model-value="(config) => pairlistStore.selectOrCreateConfig(config as string)"
|
||||
/>
|
||||
</edit-value>
|
||||
</EditValue>
|
||||
<b-button
|
||||
title="Evaluate pairlist"
|
||||
:disabled="pairlistStore.evaluating || !pairlistStore.pairlistValid"
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<b-form-checkbox v-model="pairlistStore.customExchange" class="mb-2">
|
||||
Custom Exchange
|
||||
</b-form-checkbox>
|
||||
<exchange-select
|
||||
<ExchangeSelect
|
||||
v-if="pairlistStore.customExchange"
|
||||
v-model="pairlistStore.selectedExchange"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue
Block a user