frequi_origin/src/components/ftbot/ProfitSymbol.vue

38 lines
871 B
Vue
Raw Normal View History

<template>
2020-09-03 04:49:10 +00:00
<div class="h-100 d-inline-block">
<div :class="isProfitable ? 'triangle-up' : 'triangle-down'"></div>
</div>
</template>
<script lang="ts">
import { Component, Vue, Prop } from 'vue-property-decorator';
import { Trade } from '@/types';
@Component({})
export default class ProfitSymbol extends Vue {
@Prop({ required: true }) trade!: Trade;
get isProfitable() {
2020-12-05 14:55:26 +00:00
const res = (this.trade.profit_ratio ?? 0) > 0 || (this.trade.profit_abs ?? 0) > 0;
return res;
}
}
</script>
2020-09-03 04:49:10 +00:00
<style scoped>
.triangle-up {
width: 0;
height: 0;
border-style: solid;
border-width: 0 0.45rem 0.7rem 0.45rem;
2020-09-03 04:49:10 +00:00
border-color: transparent transparent #00db58 transparent;
}
.triangle-down {
width: 0;
height: 0;
border-style: solid;
border-width: 0.7rem 0.45rem 0 0.45rem;
2020-09-03 04:49:10 +00:00
border-color: #ff0000 transparent transparent transparent;
}
</style>