☰
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.9K
All Categories
0
Incidents
156
Node JS client
40
Go client
793
.Net API client
380
Kite Publisher
537
.Net / VBA / Excel (3rd party)
458
Algorithms and Strategies
998
Java client
1.1K
API clients
404
PHP client
4K
Python client
347
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
January 2020
HowUTrade
SL-M order
JB5267
January 2020
in
.Net / VBA / Excel (3rd party)
Can you please check and confirm below order request format is correct for SL-M order
LOT: 05
Trigger Price: 78
(PlaceRegularOrder(NFO,NIFTY2010912350CE,"SELL","SL-M",05,"NRML",78)
Tagged:
SL-M order
SL-M order IN EXCEL
HowUTrade
January 2020
@JB5267
Below is the syntax of PlaceRegularOrder function
PlaceRegularOrder(Exch,TrdSym,Trans,OrdType,Qty,ProdType,LmtPrice,TrgPrice)
You are passing the TrgPrice to LmtPrice Parameter
As per your example
PlaceRegularOrder(NFO,NIFTY2010912350CE,"SELL","SL-M",5,"NRML"
,0
,78)
For full list of functions and their syntax, refer the below link
https://howutrade.in/docs/kitenet/html/Methods_T_KiteNet_Kite.htm
Alternatively, you can also check the VBA modules for list of functions and their parameters
Sign In
or
Register
to comment.
Below is the syntax of PlaceRegularOrder function
PlaceRegularOrder(Exch,TrdSym,Trans,OrdType,Qty,ProdType,LmtPrice,TrgPrice)
You are passing the TrgPrice to LmtPrice Parameter
As per your example
PlaceRegularOrder(NFO,NIFTY2010912350CE,"SELL","SL-M",5,"NRML",0,78)
For full list of functions and their syntax, refer the below link
https://howutrade.in/docs/kitenet/html/Methods_T_KiteNet_Kite.htm
Alternatively, you can also check the VBA modules for list of functions and their parameters