☰
Login
Signup
Home
›
.Net / VBA / Excel (3rd party)
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
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
April 2020
HowUTrade
how to pace order with Validity("DAY" or "IOC")
JB5267
April 2020
in
.Net / VBA / Excel (3rd party)
Hi,
Please help me the format for placing order with Validity("DAY" or "IOC") with example format given below.
LOT: 05
Trigger Price: 78
(PlaceRegularOrder(NFO,NIFTY234239100CE,"BUY","LIMIT",05,"NRML",78)
Thanks
Sathish kumar
Tagged:
IOC
VALITITY
DAY
HowUTrade
April 2020
@JB5267
The Full Syntax is
PlaceRegularOrder(Exch,TrdSym,Trans,OrdType,Qty,ProdType,LmtPrice,TrgPrice,val,cTag,DiscQty)
Val = "DAY" or "IOC"
val, cTag, DiscQty are optional parameters with default values "DAY", "", 0 respectively.
As per your Example:
PlaceRegularOrder(NFO,NIFTY234239100CE,"BUY","LIMIT",05,"NRML",78,0,"IOC")
You can check the VBA module, for all UDF's and their syntax.
Sign In
or
Register
to comment.
The Full Syntax is PlaceRegularOrder(Exch,TrdSym,Trans,OrdType,Qty,ProdType,LmtPrice,TrgPrice,val,cTag,DiscQty)
Val = "DAY" or "IOC"
val, cTag, DiscQty are optional parameters with default values "DAY", "", 0 respectively.
As per your Example:
PlaceRegularOrder(NFO,NIFTY234239100CE,"BUY","LIMIT",05,"NRML",78,0,"IOC")
You can check the VBA module, for all UDF's and their syntax.