mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Merge pull request #70 from danielpalstra/reorder_trade_details
Reorder trade details
This commit is contained in:
commit
b79eabd0ba
|
@ -1,34 +1,47 @@
|
|||
<template>
|
||||
<b-card header="Trade detail">
|
||||
<ValuePair description="TradeId">{{ trade.trade_id }}</ValuePair>
|
||||
<ValuePair description="Pair">{{ trade.pair }}</ValuePair>
|
||||
<ValuePair description="Stoploss">
|
||||
{{ formatPercent(trade.stop_loss_ratio) }} |
|
||||
{{ formatPrice(trade.stop_loss) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Initial Stoploss">
|
||||
{{ formatPercent(trade.initial_stop_loss_ratio) }} |
|
||||
{{ formatPrice(trade.initial_stop_loss) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Current stoploss dist">
|
||||
{{ formatPercent(trade.stoploss_current_dist_ratio) }} |
|
||||
{{ formatPrice(trade.stoploss_current_dist) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Open Rate">{{ trade.open_rate }}</ValuePair>
|
||||
<ValuePair description="Close Rate" v-if="!trade.is_open">{{ trade.close_rate }}</ValuePair>
|
||||
<ValuePair description="Min Rate">{{ trade.min_rate }}</ValuePair>
|
||||
<ValuePair description="Max Rate">{{ trade.max_rate }}</ValuePair>
|
||||
<ValuePair description="Open date">{{ timestampms(trade.open_timestamp) }}</ValuePair>
|
||||
<ValuePair description="Close date" v-if="trade.close_timestamp">
|
||||
{{ timestampms(trade.close_timestamp) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Stoploss last updated">
|
||||
{{ timestampms(trade.stoploss_last_update_timestamp) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Current profit" v-if="trade.current_profit_abs">
|
||||
{{ trade.current_profit_abs }} ({{ formatPercent(trade.current_profit) }})
|
||||
</ValuePair>
|
||||
</b-card>
|
||||
<div>
|
||||
<b-card header="Trade detail" class="mt-1">
|
||||
<b-card-text>
|
||||
<ValuePair description="TradeId">{{ trade.trade_id }}</ValuePair>
|
||||
<ValuePair description="Pair">{{ trade.pair }}</ValuePair>
|
||||
<ValuePair description="Open date">{{ timestampms(trade.open_timestamp) }}</ValuePair>
|
||||
<ValuePair description="Open Rate">{{ trade.open_rate }}</ValuePair>
|
||||
<ValuePair description="Close Rate" v-if="!trade.is_open">{{ trade.close_rate }}</ValuePair>
|
||||
<ValuePair description="Min Rate">{{ trade.min_rate }}</ValuePair>
|
||||
<ValuePair description="Max Rate">{{ trade.max_rate }}</ValuePair>
|
||||
<ValuePair description="Close date" v-if="trade.close_timestamp">{{
|
||||
timestampms(trade.close_timestamp)
|
||||
}}</ValuePair>
|
||||
</b-card-text>
|
||||
<h5 class="detail-header">Profit</h5>
|
||||
<b-card-text>
|
||||
<ValuePair description="Current % profit" v-if="trade.current_profit_pct">
|
||||
{{ trade.current_profit_pct }}%
|
||||
</ValuePair>
|
||||
<ValuePair description="Current profit" v-if="trade.current_profit_abs">
|
||||
{{ trade.current_profit_abs }}
|
||||
</ValuePair>
|
||||
</b-card-text>
|
||||
<h5 class="detail-header">Stoploss</h5>
|
||||
<b-card-text>
|
||||
<ValuePair description="Stoploss">
|
||||
{{ formatPercent(trade.stop_loss_pct / 100) }} |
|
||||
{{ formatPrice(trade.stop_loss) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Initial Stoploss">
|
||||
{{ formatPercent(trade.initial_stop_loss_pct / 100) }} |
|
||||
{{ formatPrice(trade.initial_stop_loss) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Current stoploss dist">
|
||||
{{ formatPercent(trade.stoploss_current_dist_ratio) }} |
|
||||
{{ formatPrice(trade.stoploss_current_dist) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Stoploss last updated">
|
||||
{{ timestampms(trade.stoploss_last_update_timestamp) }}
|
||||
</ValuePair>
|
||||
</b-card-text>
|
||||
</b-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
|
@ -51,4 +64,11 @@ export default {
|
|||
},
|
||||
};
|
||||
</script>
|
||||
<style scoped></style>
|
||||
<style scoped>
|
||||
.detail-header {
|
||||
border-bottom: 1px solid;
|
||||
padding-bottom: 5px;
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue
Block a user