当前位置:   article > 正文

Python环境下基于最大离散重叠小波变换和支持向量回归的金融时间序列预测

Python环境下基于最大离散重叠小波变换和支持向量回归的金融时间序列预测

金融时间序列具有非线性、高频性、随机性等特点,其波动情况不仅与当前股票市场、房地产市场、贸易市场等有强联动性,而且大幅度起伏对于其他市场有较大的影响和冲击。由于金融市场受多种因素影响且各影响因素间也存在一定复杂动态交互关系,导致金融时间序列成为一个具有非平稳性、时序相关性等特征的复杂系统,更加准确地把握金融时间序列的走势风向能够引导投资者正确的投资行为,相关的预测研究成为近几年的研究重点。因此,构建一个稳定、有效的金融时间序列预测模型是一项具有挑战性、实际应用价值的任务。

目前,金融时间序列预测方法主要可以分为计量预测方法和机器学习方法两种。一方面,计量预测方法包括差分整合移动平均自回归模型、动态模型平均、广义自回归条件异方差模型等,然而计量模型对时间序列有部分条件限制,要求时间序列的平稳性,针对非线性、非平稳数据处理效果较差。另一方面,常见的机器学习方法包括支持向量机、BP神经网络、循环神经网络等,这些模型由于在对复杂非线性、非平稳的数据进行处理时,不需要提供特定条件,具有更多的优势,获得了广泛的应用。尽管机器学习方法不是必然提升对复杂动态系统的预测准确率,但针对性的应用在非线性时间序列数据上往往能够细粒化读取数据信息、提升预测准确率。

提出一种基于最大离散重叠小波变换和支持向量回归的金融时间序列预测方法,程序运行环境为Python或Jupyter Notebook,所用模块如下:

  1. import numpy as np
  2. import pandas as pd
  3. import copy
  4. import matplotlib.pyplot as plt
  5. from sklearn.model_selection import train_test_split
  6. from sklearn import svm
  7. from sklearn.metrics import mean_squared_error
  8. from numpy.lib.stride_tricks import sliding_window_view
  9. from modwt import modwt, modwtmra,imodwt

部分代码如下:

  1. #第一部分,使用原始时间序列的SVM + 滑动窗口
  2. #读取数据
  3. prices = pd.read_csv('Data/AUD-JPY-2003-2014-day.csv',delimiter=";", header=0, encoding='utf-8', parse_dates=['Date'])
  4. prices
  5. # 删除不使用的列
  6. prices.drop(["Open", "High", "Low"],axis = 1, inplace = True)
  7. #定义变量
  8. dates = prices['Date'].copy()
  9. closing_prices = prices['Close'].copy()
  10. #使用 matplotlib 绘制原始时间序列
  11. plt.subplots(figsize=(16,4))
  12. plt.plot(dates, closing_prices, label='Original series AUD-JPY 2003-2014')
  13. plt.legend(loc = 'best')
  14. plt.show()
  15. #SVM + 滑动窗口实现
  16. #实现滑动窗口
  17. def slideWindow(series, window_lenght = 2):
  18. _X, _Y = [], []
  19. #Auxiliary variable to store the sliding window combinations. We sum up +1 as we are taking the last values of Aux_window
  20. #as the output values of our time series
  21. aux_Window = sliding_window_view(series, window_lenght+1)
  22. #将第一个“window_lenght”值作为输入 (X),将最后一个值 (window_lenght+1) 作为输出 (Y)
  23. for i in range(len(aux_Window)):
  24. _Y.append(aux_Window[i][-1])
  25. _X.append(aux_Window[i][:-1])
  26. return _X, _Y
  27. window_lenght = 2
  28. #调用滑动窗函数
  29. X, Y = slideWindow(closing_prices,window_lenght)
  30. #25% 的数据用于测试 SVM
  31. idx_test_date = int(0.75*len(Y)) + window_lenght
  32. df = pd.DataFrame(columns = ['test_date'])
  33. df['test_date'] = prices['Date'].iloc[idx_test_date:]
  34. ##Splitting and plotting test data
  35. #拆分和绘制测试数据,将数据拆分为训练数据(75%)和测试数据(25%)
  36. #shuffle = False 表示不是随机打乱数据,而是要保持有序
  37. x_train,x_test,y_train,y_test = train_test_split(X, Y, test_size=0.25, random_state=None, shuffle=False)
  38. fig, ax = plt.subplots(2,1,figsize=(16,8))
  39. ax[0].plot(dates, closing_prices, label='Original')
  40. ax[0].plot(df['test_date'], y_test, label='Values to test the model out',color='orange')
  41. ax[1].plot(df['test_date'], y_test, label='Values to test the model out',color='orange')
  42. ax[0].legend(loc = 'best')
  43. ax[1].legend(loc = 'best')
  44. plt.show()
  45. #构建SVR
  46. def evaluateSVR(_x_train,_y_train,_x_test,_y_test, kernel = 'rbf'):
  47. if (kernel == 'rbf'):
  48. clf = svm.SVR(kernel ='rbf', C=1e3, gamma=0.1)
  49. elif (kernel == 'poly'):
  50. clf = svm.SVR(kernel ='poly', C=1e3, degree=2)
  51. else:
  52. clf = svm.SVR(kernel ='linear',C=1e3)
  53. _y_predict = clf.fit(_x_train,_y_train).predict(_x_test)
  54. return _y_predict
  55. y_predict = evaluateSVR(x_train,y_train,x_test,y_test)
  56. plotValuesWt = y_test.copy()

部分出图如下:

工学博士,担任《Mechanical System and Signal Processing》审稿专家,担任
《中国电机工程学报》优秀审稿专家,《控制与决策》,《系统工程与电子技术》,《电力系统保护与控制》,《宇航学报》等EI期刊审稿专家。

擅长领域:现代信号处理,机器学习,深度学习,数字孪生,时间序列分析,设备缺陷检测、设备异常检测、设备智能故障诊断与健康管理PHM等。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/88630
推荐阅读
相关标签
  

闽ICP备14008679号