资源简介
ARMA 模型(Auto-Regressive and Moving Average Model)是研究时间序列的重要方法,由自回归模型(简称AR模型)与滑动平均模型(简称MA模型)为基础“混合”构成。在市场研究中常用于长期追踪资料的研究,如:Panel研究中,用于消费行为模式变迁研究;在零售研究中,用于具有季节变动特征的销售量、市场规模的预测等。
代码片段和文件信息
%Wilson Palmeiro@Copyright. This exercise has got real data. Because we
%want to test in market. Finally we test for 500 days. WE can assume any
%finantial asset.
dy=price2ret(imf(1:)‘continuous‘);%Differenciate data
N=length(dy);
[PartialACF lags bounds]=parcorr(dy[][]2);%Analyze PACF
[ACF lags bounds]=autocorr(dy[][]1.96);%Analyze ACF in order to choose the order of model
figure()
subplot(221)
plot(dy)
subplot(222)
autocorr(dy)
subplot(223)
parcorr(dy)
subplot(224)
plot(Open);
[hpQstat crit]=lbqtest(dy‘lags‘ [51015213036]);
model=arima(111)%At this time we will use the mean level
fit=estimate(modeldy)%to predict.
[Y YMSE]=forecast(fit500‘Y0‘dy)%It磗 more commom in market using
Price=ret2price(Y[1833.32000000000]1[]‘Periodic‘)%At this level i put one of prices
Lower=Y-1.96*sqrt(YMSE);%GARCH to predict volatility.
Upper=Y+1.96*sqrt(YMSE);
figure(2)
plot(dy‘Color‘[.7.7.7]);
hold on
h1=plot(N+500:N+500Lower‘r‘‘LineWidth‘2);
plot(N+500:N+500Upper‘r‘‘LineWidth‘2);
h2=plot(N+500:N+500Y‘k‘‘LineWidth‘2);
legend([h1 h2] ‘95% Interval‘ ‘Forecast‘‘Location‘‘NorthWest‘)
title(‘Forecast Using ARMA Model‘)
hold off
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1212 2017-07-05 16:19 ARMA.m
- 上一篇:MATLAB控制系统复频域分析
- 下一篇:MATLAB概率与数理统计分析第2版源代码
相关资源
- 时间序列教程
- 基于Matlab的ARMA模型时间序列分析法仿
- ARMA模型的完整程序代码
- IPG_Carmaker.mp4
- 时间序列模型ARIMA的讲解与matlab代码实
- ARMA模型matlab源程序
- ARMA模型自回归滑动平均模型
- ARMA功率谱估计
- ARMA模型预测
- karman谱拟合
- karmarkar内点法
- 时间序列ARMA模型源代码
- ARMA模型的Matlab代码
- ARMA模型的MATLAB实现
- 国外编的干涉合成孔径雷达InSARMatla
- ISARMATLAB仿真程序
- arma matlab 代码
- ARMA法模态参数识别程序
-
matlab开发-mssamultiob
jectivesalpswarmalg - arma模型_matlab源码
- AR模型、MA模型和ARMA模型的matlab模型
- ARMA时间序列MATLAB代码.zip
- awayline SVM ARMA 基于风速预测的风力发
- 时间序列ARMA建模实例
- 现代谱估计的Cadzow谱估计子ARMA模型
- ARMA建模的风速预测
- ARMA ARMA模型基于时间序列分析和预测
- 谐波恢复的ARMA建模
- arma 模型 的matlab 代码 实现
- Karman Filter matlab code
评论
共有 条评论