Queries:
- In case of GTT orders, for the condition “TARGET” and “STOPLOSS”, acceptable trigger type is “IMMEDIATE” only. Does that mean other than that value it wont execute.
- If the market price skips over the stop loss or target price due to volatility
For instance, if in case of stop loss, the market price does not come to be 2.55 but it comes to be 2.50, will the condition gets triggered (please see the below payload)
{
"type": "MULTIPLE",
"quantity": 1,
"product": "D",
"instrument_token": "NSE_EQ|INE806A01020",
"transaction_type": "BUY",
"rules": [
{
"strategy": "ENTRY",
"trigger_type": "BELOW",
"trigger_price": 2.57
},
{
"strategy": "TARGET",
"trigger_type": "IMMEDIATE",
"trigger_price": 2.6
},
{
"strategy": "STOPLOSS",
"trigger_type": "IMMEDIATE",
"trigger_price": 2.55
}
]
}