☰
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
14.1K
All Categories
0
Incidents
157
Node JS client
41
Go client
795
.Net API client
385
Kite Publisher
537
.Net / VBA / Excel (3rd party)
463
Algorithms and Strategies
1K
Java client
1.1K
API clients
407
PHP client
4.1K
Python client
349
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
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.