☰
Login
Signup
Home
›
Kite Publisher
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
11.9K
All Categories
85
Node JS client
30
Go client
685
.Net API client
330
Kite Publisher
523
.Net / VBA / Excel (3rd party)
393
Algorithms and Strategies
891
Java client
902
API clients
383
PHP client
3.3K
Python client
310
Mobile and Desktop apps
1.2K
Market data (WebSockets)
2.9K
General
In this Discussion
November 2019
bondre
November 2019
rakeshr
Kite Publisher Plugin does not record the "tag"
bondre
November 2019
in
Kite Publisher
I am using the example from your documentation. I have tried it using forms as well as the publisher.js plugin.
The "tag" information is not recorded on the order. Is there something I am doing wrong here?
var your_basket = [{
"exchange" : "NSE",
"tradingsymbol" : "INFY",
"quantity" : 1,
"transaction_type": "BUY",
"product" : "CNC",
"order_type" : "MARKET",
"tag" : "ZDPubDemo",
"readonly" : true
}, {
"exchange" : "NSE",
"tradingsymbol" : "IDBI",
"quantity" : 1,
"transaction_type": "BUY",
"product" : "CNC",
"order_type" : "MARKET",
"tag" : "ZDPubDemo",
"readonly" : true
}];
//alert (JSON.stringify(your_basket));
document.getElementById("basket").value = JSON.stringify(your_basket);
document.getElementById("basket-form").submit();
Tagged:
orders
kite publisher
order status
rakeshr
November 2019
@bondre
You are sending tag param with more than 8 characters.It should be within 8 chars,
as stated here
.
bondre
November 2019
@rakeshr
Thanks for pointing that out. That fixed the issue.
Are we allowed to use only one tag or is it possible to set multiple tags?
rakeshr
November 2019
@bondre
Currently, we allow only one tag assignment in order, but in future, we are planning to allow multi tags assignment.
Sign In
or
Register
to comment.
You are sending tag param with more than 8 characters.It should be within 8 chars, as stated here.
Thanks for pointing that out. That fixed the issue.
Are we allowed to use only one tag or is it possible to set multiple tags?
Currently, we allow only one tag assignment in order, but in future, we are planning to allow multi tags assignment.