I'm quite sure that this cannot be achieved using the out-of-the-box JQL.
You can do this easily using Jira's remote API, using jira-python for example :
from jira.client import JIRA
jira = JIRA(basic_auth=('admin', 'admin')) # a username/password tuple
props = jira.application_properties()
# Find all issues from the last month:
issuesResolved = jira.search_issues('resolved > startOfMonth()')
issuesCreated = jira.search_issues('created > startOfMonth()')
# and so on...
What should the output be exactly? average per day for the last 30 days? average for every 30 months?
Anyway, if you need help coding that let me know... good luck !