aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiyush Dixit <79581397+PiyushDixit96@users.noreply.github.com>2021-05-23 01:56:55 +0530
committerGitHub <noreply@github.com>2021-05-23 01:56:55 +0530
commit1f6a65ef1144db08f2ccbb4acffbd233954dfd7a (patch)
tree33034d52b230766b0f9b5331a467628f7c21f27f
parentf77d568498b5c0fd388146bc7526774ff3e34864 (diff)
Update index.js
-rw-r--r--index.js12
1 files changed, 5 insertions, 7 deletions
diff --git a/index.js b/index.js
index 55cd0a8..a06b357 100644
--- a/index.js
+++ b/index.js
@@ -79,20 +79,18 @@ function process_data(data) {
if (["BNB", "BTC", "XRP", "TRX", "ETH", "AUD", "BRL", "EUR", "GBP", "RUB", "TRY", "PAX", "DAI", "UAH", "NGN", "VAI"].includes(str3)) {
sy = str3
}
- let total
- if (orderType !== "LIMIT") {
- total = `${fixFloat(Number(price) * Number(quantity))} ${sy}`
- let {
- L: Last_price
- } = data;
+ let total=``;
+ if (orderType === "MARKET") {
price = Last_price
+ }else{
+ total = `\n<b>Total:</b> ${fixFloat(Number(price) * Number(quantity))} ${sy}`
}
if (executionType === 'NEW') {
if (orderStatus === 'NEW') {
if (orderType === "MARKET") {
txt = `✅ ✅ ✅\n<b>Spot ${orderType} ${side} Order CREATED</b>\n<b>Symbol:</b> #${symbol}\n<b>Quantity:</b> ${fixFloat(quantity)}\n<b>Order ID:</b> #ID${orderId}`
}else {
- txt = `✅ ✅ ✅\n<b>Spot ${orderType} ${side} Order CREATED</b>\n<b>Symbol:</b> #${symbol}\n<b>Price:</b> ${price}\n<b>Quantity:</b> ${fixFloat(quantity)}\n<b>Total:</b> ${total}\n<b>Order ID:</b> #ID${orderId}`
+ txt = `✅ ✅ ✅\n<b>Spot ${orderType} ${side} Order CREATED</b>\n<b>Symbol:</b> #${symbol}\n<b>Price:</b> ${price}\n<b>Quantity:</b> ${fixFloat(quantity)}${total}\n<b>Order ID:</b> #ID${orderId}`
}
} else if (orderStatus === 'REJECTED') {
if (orderType === "MARKET") {