☰
Login
Signup
Home
›
Node JS client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
14.1K
All Categories
0
Incidents
158
Node JS client
43
Go client
801
.Net API client
386
Kite Publisher
538
.Net / VBA / Excel (3rd party)
466
Algorithms and Strategies
1K
Java client
1.1K
API clients
408
PHP client
4.1K
Python client
349
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
General
In this Discussion
March 28
sujith
Error in placing GTT order says invalid instrument
vivekvs
March 28
in
Node JS client
Error placing GTT OCO order: {
status: 'error',
message: 'Invalid instrument',
data: null,
error_type: 'InputException'
}.
this is my code
let obj={
trigger_type: 'two-leg', // One Cancels the Other (OCO)
trigger_values: [
slTriggerPrice,
tgtTriggerPrice], // Separate triggers for SL & Target
condition: {
exchange: exchange,
tradingsymbol: tradingSymbol,
trigger_values: [
// slTriggerPrice,
tgtTriggerPrice
],
last_price: last_price, // Approximate last price
},
orders: [
{
transaction_type: kc.TRANSACTION_TYPE_SELL, // Stop Loss Order
order_type: kc.ORDER_TYPE_LIMIT,
price: slPrice, // SL Price
quantity: quantity,
product: product,
exchange: exchange,
}
,
{
transaction_type: kc.TRANSACTION_TYPE_SELL, // Target Order
order_type: kc.ORDER_TYPE_LIMIT,
price: tgtPrice, // Target Price
quantity: quantity,
product: product,
exchange: exchange,
}
]
};
const gttOrder = await kc.placeGTT(
obj
);
my sample order object :
{
trigger_type: 'two-leg',
trigger_values: [ 379.67, 439.62 ],
condition: {
exchange: 'NSE',
tradingsymbol: 'COALINDIA',
trigger_values: [ 379.67, 439.62 ],
last_price: 399.65
},
orders: [
{
transaction_type: 'SELL',
order_type: 'LIMIT',
price: 379.67,
quantity: 1,
product: 'CNC',
exchange: 'NSE'
},
{
transaction_type: 'SELL',
order_type: 'LIMIT',
price: 439.62,
quantity: 1,
product: 'CNC',
exchange: 'NSE'
}
]
} is obj
{
trigger_type: 'two-leg',
trigger_values: [ 379.67, 439.62 ],
condition: {
exchange: 'NSE',
tradingsymbol: 'COALINDIA',
trigger_values: [ 379.67, 439.62 ],
last_price: 399.65
},
orders: [
{
transaction_type: 'SELL',
order_type: 'LIMIT',
price: 379.67,
quantity: 1,
product: 'CNC',
exchange: 'NSE'
},
{
transaction_type: 'SELL',
order_type: 'LIMIT',
price: 439.62,
quantity: 1,
product: 'CNC',
exchange: 'NSE'
}
]
}
Tagged:
nodejs
GTT
sujith
March 28
You may run with debug logs enabled and check the logs.
You can also refer to the place GTT example
here
.
Sign In
or
Register
to comment.
You can also refer to the place GTT example here.