TradersPost allows for precise automation of options trades using various methods for selecting contracts, including relative dates like +7 days
or specifying exact contract symbols. This guide explains how to configure options trades dynamically while adhering to TradersPost’s supported features.
If you know the specific options contract you wish to trade, you can directly provide the full ticker symbol.
For an AAPL call option expiring on January 20, 2023, with a $325 strike price:
{
"ticker": "AAPL 230120C325",
"action": "buy"
}
For flexibility, use relative dates in the "expiration"
field to dynamically select contracts.
{
"ticker": "AAPL",
"action": "buy",
"optionType": "call",
"expiration": "+7 days",
"strikePrice": 325
}
+7 days
: Selects contracts expiring 7 days from the signal date.+6 months
: Targets contracts expiring 6 months from the signal date."2024-12-15"
for precision.Combine multiple filters to dynamically select contracts that meet your criteria.
Buy a call option that is:
{
"ticker": "AAPL",
"action": "buy",
"expiration": "+6 months",
"intrinsicValue": "itm",
"optionType": "call",
"strikesAway": 3
}
intrinsicValue
: Filter for ITM, ATM, or OTM contracts.strikesAway
: Choose strikes relative to ATM.optionType
: Specify calls, puts, or both.+7 days
for recurring trades.TradersPost provides robust tools for automating options trading, whether you prefer exact contracts or dynamic filters. By using relative dates like +7 days
or combining multiple parameters, you can create adaptable strategies that adjust to market conditions seamlessly.