how to pace order with Validity("DAY" or "IOC")

JB5267
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:
  • HowUTrade
    @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.