|
什么是量化交易?
量化交易是一種市場策略,它依靠數學和統計模型來識別并執行機會。(劉森-180-2857-8624)這些模型由定量分析驅動,這就是該策略的名稱。它通常也被稱為“定量交易”,有時也稱為“定價”。
量化分析研究和測量將行為的復雜模式分解為數值。它忽略了定性分析,該定性分析基于諸如管理專業知識或品牌實力之類的主觀因素來評估機會。
#!/usr/bin/env python
#coding=utf-8
import numpy as np
import matplotlib.pyplot as plt
import mpl_toolkits.mplot3d
f=open("./groundtruth.txt")
x=[]
y=[]
z=[]
for line in f:
if line[0]=='#':
continue
data=line.split()
x.append(float(data[1]))
y.append(float(data[2]))
z.append(float(data[3]))
ax=plt.subplot(111,projection='3d')
ax.plot(x,y,z)
plt.show()
量化交易通過使用基于數據的模型來確定特定結果發生的可能性。與其他形式的交易不同,它完全依靠統計方法和編程來完成此操作。
For example,you may find that after the number of Apple shares soared,the price fluctuated rapidly.Therefore,you have built a program to find this pattern in Apple’s entire market history.