# Get FedWatch Target Rate

get_fed_watch_target_rate()

  • Description

    Get CME FedWatch federal funds target rate probability forecast data. Returns the target rate range and market-implied probability distribution for each FOMC meeting, sourced from CME federal funds futures pricing.

  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data pd.DataFrame When ret == RET_OK, returns data
    str When ret != RET_OK, returns error description
    • Data format:
      Field Type Description
      meeting_date str FOMC meeting date ("yyyy-MM-dd")
      target_range str Target rate range, e.g. "4.25% ~ 4.50%"
      probability float Market expected probability (%), e.g. 92.13 means 92.13%
  • Example

from futu import *

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

ret, data = quote_ctx.get_fed_watch_target_rate()
if ret == RET_OK:
    print(data)
else:
    print('error:', data)

quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
  • Output
meeting_date target_range  probability
0   2026-07-29   3.50-3.75%         62.6
1   2026-07-29   3.75-4.00%         37.4
2   2026-09-16   3.50-3.75%         29.8
3   2026-09-16   3.75-4.00%         50.6
4   2026-09-16   4.00-4.25%         19.6
1
2
3
4
5
6

API Limits

  • Maximum 60 requests within 30 seconds
  • Only the first page of paginated requests counts toward rate limiting