線性回歸

2015-01-07 14:32:49


線性回歸是指利用最小二乘法計算出所選擇的數據距離的一條直線。


最小二乘法的和
最小二乘法為比較哪一條直線與所選數據最接近提供了一個客觀的衡量標準。
1. 繪出所給定的數據點。
2. 計算每點到給定的一條直線的距離。
3. 計算出該距離的平方數(為了便於去除負值)。
4. 計算出所有平方數的和。
5. 每一條可能的直線都重複步驟2、3、4
6. 根據第四步計算的平方和挑選出與所選數據最近的一條直線。


示例
下圖表格展示了一條直線的最小二乘法計算步驟。
價格 = 20.50 + 0.11 * 天數n

 11.jpg
選定數據與每一條直線的距離的平方和都要分別計算出來。並選取平方和最小的一條直線。


數學計算公式
運用最小二乘法手動的計算每條可能直線的距離平方和將會消耗很多時間。幸運的是,下面是一種較為簡便的方法:
目標直線的計算公式為: y = a + bx
• y 表示價格
• x 是日期
• a 是常數
• b 是直線的斜率
目標直線的計算公式為
b = ( nΣxy - ΣxΣy ) / ( nΣx² - (Σx)² )
a = ( Σy - bΣx ) / n


其中,n是所有選定數據的數值。


Linear Regression
Linear regression fits a straight line to the selected data using a method called the Sum Of Least Squares.
Sum Of Least Squares
The Sum Of Least Squares method provides an objective measure for comparing a number of straight lines to find the one that best fits the selected data.
1. Plot each data point in a table
2. Calculate the distance between each data point and the proposed straight line
3. Square the distances (to remove negative values)
4. Calculate the sum of the squares
5. Repeat steps 2 to 4 for each possible line
6. Select the line with the lowest sum of squares (from step 4).
EXAMPLE
The table below demonstrates how the sum of squares is calculated for a line where
Price = 20.50 + 0.11 * day n
The sum of squares is calculated for each possible line and the line with the lowest sum is selected.
Mathematical Formula
Manually calculating the sum of squares for each possible line would be enormously time-consuming. Fortunately there is a quicker way.
The formula for a straight line is
y = a + bx


For our purposes:
• y is the price
• x is the date
• a is the constant (the value when x equals zero)
• b is the slope of the line
The formula for calculating the line of best fit is
b = ( nΣxy - ΣxΣy ) / ( nΣx² - (Σx)² )
a = ( Σy - bΣx ) / n
Where n is the number of data points selected.


本文翻譯由兄弟財經提供


文章來源:
http://www.incrediblecharts.com/indicators/linear_regression.php

 承諾與聲明

兄弟財經是全球歷史最悠久,信譽最好的外匯返佣代理。多年來兄弟財經兢兢業業,穩定發展,獲得了全球各地投資者的青睞與信任。歷經十餘年的積澱,打造了我們在業内良好的品牌信譽。

本文所含内容及觀點僅為一般信息,並無任何意圖被視為買賣任何貨幣或差價合約的建議或請求。文中所含内容及觀點均可能在不被通知的情況下更改。本文並未考 慮任何特定用戶的特定投資目標、財務狀況和需求。任何引用歷史價格波動或價位水平的信息均基於我們的分析,並不表示或證明此類波動或價位水平有可能在未來 重新發生。本文所載信息之來源雖被認為可靠,但作者不保證它的準確性和完整性,同時作者也不對任何可能因參考本文内容及觀點而產生的任何直接或間接的損失承擔責任。

外匯和其他產品保證金交易存在高風險,不適合所有投資者。虧損可能超出您的賬戶註資。增大槓桿意味著增加風險。在決定交易外匯之前,您需仔細考慮您的財務目標、經驗水平和風險承受能力。文中所含任何意見、新聞、研究、分析、報價或其他信息等都僅 作與本文所含主題相關的一般類信息.

同時, 兄弟財經不提供任何投資、法律或稅務的建議。您需向合適的顧問徵詢所有關於投資、法律或稅務方面的事宜。