frequi_origin/src/components/ftbot/ForceEntryForm.vue

195 lines
5.8 KiB
Vue
Raw Normal View History

2020-05-14 16:10:57 +00:00
<template>
<div>
<b-modal
2022-05-25 17:20:18 +00:00
id="forceentry-modal"
2020-05-14 16:10:57 +00:00
ref="modal"
title="Force entering a trade"
2020-05-14 16:10:57 +00:00
@show="resetForm"
@hidden="resetForm"
2022-05-25 17:20:18 +00:00
@ok="handleEntry"
2020-05-14 16:10:57 +00:00
>
<form ref="form" @submit.stop.prevent="handleSubmit">
<b-form-group
2022-04-19 04:53:35 +00:00
v-if="botStore.activeBot.botApiVersion >= 2.13 && botStore.activeBot.shortAllowed"
label="Order direction (Long or Short)"
label-for="order-direction"
2022-09-22 05:20:13 +00:00
invalid-feedback="Order direction must be empty or a positive number"
>
2022-09-22 05:20:13 +00:00
<b-form-radio-group
id="order-direction"
v-model="orderSide"
:options="['long', 'short']"
2022-09-22 05:20:13 +00:00
name="radios-btn-default"
size="sm"
buttons
style="min-width: 10em"
button-variant="outline-primary"
></b-form-radio-group>
</b-form-group>
2020-05-14 16:10:57 +00:00
<b-form-group label="Pair" label-for="pair-input" invalid-feedback="Pair is required">
<b-form-input
id="pair-input"
v-model="pair"
required
2022-11-21 17:44:06 +00:00
:placeholder="botStore.activeBot.selectedPair"
2022-05-25 17:20:18 +00:00
@keydown.enter.native="handleEntry"
2020-05-14 16:10:57 +00:00
></b-form-input>
</b-form-group>
<b-form-group
label="*Price [optional]"
label-for="price-input"
invalid-feedback="Price must be empty or a positive number"
>
<b-form-input
id="price-input"
v-model="price"
type="number"
step="0.00000001"
2022-05-25 17:20:18 +00:00
@keydown.enter.native="handleEntry"
2020-05-14 16:10:57 +00:00
></b-form-input>
</b-form-group>
2022-01-22 14:00:12 +00:00
<b-form-group
2022-04-19 04:53:35 +00:00
v-if="botStore.activeBot.botApiVersion > 1.12"
:label="`*Stake-amount in ${botStore.activeBot.stakeCurrency} [optional]`"
2022-01-22 14:00:12 +00:00
label-for="stake-input"
invalid-feedback="Stake-amount must be empty or a positive number"
>
<b-form-input
id="stake-input"
v-model="stakeAmount"
type="number"
step="0.000001"
2022-05-25 17:20:18 +00:00
@keydown.enter.native="handleEntry"
2022-01-22 14:00:12 +00:00
></b-form-input>
</b-form-group>
2022-08-02 18:09:43 +00:00
<b-form-group
v-if="botStore.activeBot.botApiVersion > 2.16 && botStore.activeBot.shortAllowed"
:label="`*Leverage to apply [optional]`"
label-for="leverage-input"
invalid-feedback="Leverage must be empty or a positive number"
>
<b-form-input
id="leverage-input"
v-model="leverage"
type="number"
2022-09-22 05:20:13 +00:00
step="0.01"
2022-08-02 18:09:43 +00:00
@keydown.enter.native="handleEntry"
></b-form-input>
</b-form-group>
2021-11-24 19:19:34 +00:00
<b-form-group
2022-04-19 04:53:35 +00:00
v-if="botStore.activeBot.botApiVersion > 1.1"
2021-11-24 19:19:34 +00:00
label="*OrderType"
label-for="ordertype-input"
invalid-feedback="OrderType"
>
2022-09-22 05:20:13 +00:00
<b-form-radio-group
id="ordertype-input"
2021-11-24 19:19:34 +00:00
v-model="ordertype"
:options="['market', 'limit']"
2022-09-22 05:20:13 +00:00
name="radios-btn-default"
buttons
button-variant="outline-primary"
style="min-width: 10em"
2021-11-24 19:19:34 +00:00
size="sm"
2022-09-22 05:20:13 +00:00
></b-form-radio-group>
2021-11-24 19:19:34 +00:00
</b-form-group>
2020-05-14 16:10:57 +00:00
</form>
</b-modal>
</div>
</template>
2020-08-09 13:11:47 +00:00
<script lang="ts">
2022-04-19 04:53:35 +00:00
import { useBotStore } from '@/stores/ftbotwrapper';
2022-04-16 18:02:30 +00:00
import { ForceEnterPayload, OrderSides } from '@/types';
2022-07-07 18:44:19 +00:00
import { defineComponent, ref, nextTick, getCurrentInstance } from 'vue';
2022-04-16 18:02:30 +00:00
export default defineComponent({
2022-05-25 17:20:18 +00:00
name: 'ForceEntryForm',
2022-07-07 18:44:19 +00:00
setup() {
const root = getCurrentInstance();
2022-04-19 04:53:35 +00:00
const botStore = useBotStore();
2022-04-16 18:02:30 +00:00
const form = ref<HTMLFormElement>();
const pair = ref('');
const price = ref<number | null>(null);
const stakeAmount = ref<number | null>(null);
2022-08-02 18:09:43 +00:00
const leverage = ref<number | null>(null);
2022-04-16 18:02:30 +00:00
const ordertype = ref('');
const orderSide = ref<OrderSides>(OrderSides.long);
const checkFormValidity = () => {
const valid = form.value?.checkValidity();
return valid;
};
2022-11-21 17:44:06 +00:00
const handleSubmit = async () => {
pair.value = pair.value !== '' ? pair.value : botStore.activeBot.selectedPair;
await nextTick();
2022-04-16 18:02:30 +00:00
// Exit when the form isn't valid
if (!checkFormValidity()) {
return;
}
2022-11-21 17:44:06 +00:00
2022-05-25 17:20:18 +00:00
// call forceentry
2022-04-16 18:02:30 +00:00
const payload: ForceEnterPayload = { pair: pair.value };
if (price.value) {
payload.price = Number(price.value);
}
if (ordertype.value) {
payload.ordertype = ordertype.value;
}
if (stakeAmount.value) {
payload.stakeamount = stakeAmount.value;
}
2022-05-25 17:16:55 +00:00
if (botStore.activeBot.botApiVersion >= 2.13 && botStore.activeBot.shortAllowed) {
2022-04-16 18:02:30 +00:00
payload.side = orderSide.value;
}
2022-08-02 18:09:43 +00:00
if (leverage.value) {
payload.leverage = leverage.value;
}
2022-05-25 17:20:18 +00:00
botStore.activeBot.forceentry(payload);
2022-11-21 17:44:06 +00:00
await nextTick();
root?.proxy.$bvModal.hide('forceentry-modal');
2022-04-16 18:02:30 +00:00
};
const resetForm = () => {
console.log('resetForm');
pair.value = '';
price.value = null;
stakeAmount.value = null;
2022-04-19 04:53:35 +00:00
if (botStore.activeBot.botApiVersion > 1.1) {
2022-04-16 18:02:30 +00:00
ordertype.value =
2022-04-19 04:53:35 +00:00
botStore.activeBot.botState?.order_types?.forcebuy ||
botStore.activeBot.botState?.order_types?.force_entry ||
botStore.activeBot.botState?.order_types?.buy ||
botStore.activeBot.botState?.order_types?.entry ||
'limit';
2022-04-16 18:02:30 +00:00
}
};
2022-05-25 17:20:18 +00:00
const handleEntry = (bvModalEvt) => {
2022-04-16 18:02:30 +00:00
// Prevent modal from closing
bvModalEvt.preventDefault();
// Trigger submit handler
handleSubmit();
};
return {
handleSubmit,
2022-04-19 04:53:35 +00:00
botStore,
2022-04-16 18:02:30 +00:00
form,
2022-05-25 17:20:18 +00:00
handleEntry,
2022-04-16 18:02:30 +00:00
resetForm,
pair,
price,
stakeAmount,
ordertype,
orderSide,
2022-08-02 18:09:43 +00:00
leverage,
2022-04-16 18:02:30 +00:00
};
},
});
2020-05-14 16:10:57 +00:00
</script>