# Option Seller Screener

get_option_seller_screener(market, seller_type, sort_type=None, is_asc=None, filter_list=None)

  • Description

    Get the option seller screener list, returning option contracts suitable for seller strategies (Cash Secured Put / Covered Call), including return rates, exercise probabilities, and other data.

  • Parameters

    Parameter Type Description
    market OptionMarket Option market type
    seller_type SellerType Seller strategy type
    sort_type SellerSortType Sort type
    is_asc bool Ascending order
    filter_list list[SellerFilter] Filter conditions list
  • Returns

    Parameter Type Description
    ret RET_CODE Interface call result
    data pandas.DataFrame When ret == RET_OK, returns screener results
    str When ret != RET_OK, returns error description
    • Return DataFrame fields:

      Field Type Description
      option str Option contract code
      name str Option name
      option_type str Option direction
      strike_price float Strike price
      strike_time str Expiration date time string
      strike_timestamp float Expiration date timestamp (Unix seconds)
      left_days int Days to expiry
      option_price float Option price
      stock_price float Underlying stock price
      premium float Premium
      otm_degree float Out-of-the-money degree (%)
      iv float Implied volatility (%)
      interval_return float Interval return (%)
      annualized_return float Annualized return (%)
      itm_probability float Exercise probability (%)
      striked_interval_return float Assigned interval return (%)
      striked_annualized_return float Assigned annualized return (%)
      owner str Underlying stock code
  • Example

from futu import *

quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_option_seller_screener(
    market=OptionMarket.US_SECURITY,
    seller_type=SellerType.COVERED_CALL,
    sort_type=SellerSortType.ANNUALIZED_RETURN,
    is_asc=False
)
if ret == RET_OK:
    print(data)
else:
    print('error:', data)

quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  • Output
                 option                 name option_type  strike_price strike_time  strike_timestamp  left_days  option_price  stock_price  premium  otm_degree       iv  interval_return  annualized_return  itm_probability  striked_interval_return  striked_annualized_return    owner
0  US.SOXL260618C235000  SOXL 260618 235.00C        CALL         235.0  2026-06-18      1.781755e+09          3        21.850       234.68   2185.0       0.136  234.988           10.266           1074.855           45.724                   10.416                   1090.597  US.SOXL
1  US.SOXL260618C237500  SOXL 260618 237.50C        CALL         237.5  2026-06-18      1.781755e+09          3        20.675       234.68   2067.5       1.201  234.423            9.660           1011.470           43.682                   10.978                   1149.431  US.SOXL
2  US.SOXL260618C240000  SOXL 260618 240.00C        CALL         240.0  2026-06-18      1.781755e+09          3        19.250       234.68   1925.0       2.266  230.652            8.935            935.526           41.678                   11.405                   1194.071  US.SOXL
3    US.WDS260618C25000    WDS 260618 25.00C        CALL          25.0  2026-06-18      1.781755e+09          3         1.875        23.07    187.5       8.365  292.148            8.846            928.963           11.794                   17.952                   1885.177   US.WDS
4  US.SOXL260618C242500  SOXL 260618 242.50C        CALL         242.5  2026-06-18      1.781755e+09          3        18.350       234.68   1835.0       3.332  232.108            8.482            888.077           39.715                   12.097                   1266.538  US.SOXL
...
1
2
3
4
5
6
7

Rate Limit

  • Maximum 60 requests per 30 seconds