Average Return per Month
Returns the average return by month for the given ticker.
get/api/seasonality/{ticker}/monthly
Path parameters
tickerstring required
Response
Monthly average returns for the ticker
Example response
{
"data": [
{
"avg_change": 0.09494354167379757,
"max_change": 0.14970489711277724,
"median_change": 0.09494354167379757,
"min_change": 0.0401821862348179,
"month": 5,
"positive_closes": 2,
"positive_months_perc": 0.6667,
"years": 3
}
]
}