Unusual Whales UnusualWhales API

Average return per month

GET https://api.unusualwhales.com/api/seasonality/{ticker}/monthly

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200 422 500

Response Body 200 OK

avg_change Seasonality Average Change

The average relative price change per day for the month.

Example: 0.09494354167379757
max_change Seasonality Max Change

The maximum relative price change per day for the month.

Example: 0.14970489711277724
median_change Seasonality Median Change

The median relative price change per day for the month.

Example: 0.09494354167379757
min_change Seasonality Min Change

The minimum relative price change per day for the month.

Example: 0.0401821862348179
month Seasonality Month Number

The number indicating the month the data applies for. e.g. 1 -> January, 2 -> February, ...

Example: 5
positive_closes Seasonality Positive Closes Count

The number of years, the month had a positive close.

Example: 2
positive_months_perc Seasonality Positive Months Percent

The relative amount of times, the month had a positive close. Multiply with 100 to get the amount in percent.

Example: 0.6667
years Seasonality Year Count

The number of years used to calculate the data.

Example: 3
Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/seasonality/{ticker}/monthly" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "avg_change": 0.0034,
      "max_change": 0.0635,
      "median_change": 0.0195,
      "min_change": -0.0727,
      "month": 1,
      "positive_closes": 2,
      "positive_months_perc": 0.6667,
      "years": 3
    },
    {
      "avg_change": 0.0006,
      "max_change": 0.0334,
      "median_change": 0.0057,
      "min_change": -0.0374,
      "month": 2,
      "positive_closes": 2,
      "positive_months_perc": 0.6667,
      "years": 3
    },
    {
      "avg_change": 0.0949,
      "max_change": 0.1497,
      "median_change": 0.0949,
      "min_change": 0.0402,
      "month": 3,
      "positive_closes": 2,
      "positive_months_perc": 1,
      "years": 2
    },
    {
      "avg_change": -0.0153,
      "max_change": 0.0724,
      "median_change": -0.0153,
      "min_change": -0.1029,
      "month": 4,
      "positive_closes": 1,
      "positive_months_perc": 0.5,
      "years": 2
    }
  ]
}