Catalog/opt-iron-condor-range

Calculators

Iron condor profit range API

Compute the profit zone (short put strike - credit to short call strike + credit), max profit (net credit), max loss (widest wing minus credit), and return on risk for an iron condor. Deterministic four-leg math. Answers 'what's my iron condor profit zone','what's the max loss on this condor','what's my return on risk'.

Price$0.03per request
MethodPOST
Route/v1/calc/opt-iron-condor-range
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
optionsiron-condorcalcrangecreditneutralderivativestrading
API URLhttps://x402.hexl.dev/v1/calc/opt-iron-condor-range
Integration docs
Example request
{
  "longPut": 90,
  "shortPut": 95,
  "shortCall": 105,
  "longCall": 110,
  "netCredit": 1.5
}
Example response
{
  "longPut": 90,
  "shortPut": 95,
  "shortCall": 105,
  "longCall": 110,
  "netCredit": 1.5,
  "multiplier": 100,
  "lowerBreakeven": 93.5,
  "upperBreakeven": 106.5,
  "profitZoneWidth": 13,
  "maxProfit": 150,
  "maxLoss": 350,
  "putWidth": 5,
  "callWidth": 5,
  "returnOnRisk": 0.4286
}
Input schema
{
  "type": "object",
  "required": [
    "longPut",
    "shortPut",
    "shortCall",
    "longCall",
    "netCredit"
  ],
  "properties": {
    "longPut": {
      "type": "number",
      "examples": [
        90
      ]
    },
    "shortPut": {
      "type": "number",
      "examples": [
        95
      ]
    },
    "shortCall": {
      "type": "number",
      "examples": [
        105
      ]
    },
    "longCall": {
      "type": "number",
      "examples": [
        110
      ]
    },
    "netCredit": {
      "type": "number",
      "examples": [
        1.5
      ]
    },
    "multiplier": {
      "type": "number",
      "default": 100
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}