Reset Call/Put
Predict if the market price will be higher (Call) or lower (Put) than the entry price or the reset price at the end of the contract. A 'reset' is triggered if the market moves against your prediction around the midpoint of the contract, setting the reset price to the market’s current level.
If you select "Reset-Call", you win the Payout if the Exit spot is strictly higher than either the Entry spot or the spot at Reset time.
If you select "Reset-Put", you win the Payout if the Exit spot is strictly lower than either the Entry spot or the spot at Reset time.
If the Exit spot is equal to the Barrier or the new Barrier (if a reset occurs), you don't win the Payout.
Trading Flow
-
Authorize using your token: Call authorize API using your token. Ensure that the token has the trading scope enabled.
-
Fetch Available Instruments: Use the active_symbols API to retrieve a list of all trading instruments offered on Deriv.
-
Get Contract Details: Using the contracts_for API, obtain a list of contracts available for a specific instrument.
-
Request a Price: Use the proposal API to get a quote. This will return an ID for the proposed trade.
For the Reset Call/Put options:- Use the the
contract_type
:- For Reset Call, use: "
RESETCALL
" - For Reset Put, use: "
RESETPUT
"
- For Reset Call, use: "
- Use the the
-
Buy the Contract: Execute the trade by using the buy API with the ID from the proposal response. This action returns a unique
contract_id
. -
Monitor the Contract Status: Check the contract’s progress or outcome using the proposal_open_contract API with the
contract_id
. -
Close the Contract Early (if Needed): If you want to exit before the contract’s expiration, use the sell API with the
contract_id
.
Updated 15 days ago