Skip to content

Commit f5859ab

Browse files
committed
fixed formula bug
1 parent 35b34d4 commit f5859ab

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

content/posts/finance/stock_prediction/ARIMA/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ The ARIMA model can be written as:
5555

5656
$$
5757
Y_t = c + \varphi_1 Y_{t-1} + \varphi_2 Y_{t-2} + ... + \varphi_p Y_{t-p} + \theta_1 \epsilon_{t-1} + \theta_2 \epsilon_{t-2} + ... + \theta_q \epsilon_{t-q} + \epsilon_t
58-
5958
$$
6059

6160
Where:

public/index.json

+1-1
Large diffs are not rendered by default.

public/posts/finance/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ <h5 class="card-title">Time Series Analysis and ARIMA Models for Stock Price Pre
463463
<div class="card-footer">
464464
<span class="float-start">
465465
Friday, June 28, 2024
466-
| 9 minutes </span>
466+
| 8 minutes </span>
467467
<a
468468
href="/posts/finance/stock_prediction/arima/"
469469
class="float-end btn btn-outline-info btn-sm">Read</a>

public/posts/finance/stock_prediction/arima/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -506,8 +506,8 @@ <h2 id="3-arima-models-theoretical-background">3. ARIMA Models: Theoretical Back
506506
<h3 id="mathematical-representation">Mathematical Representation</h3>
507507
<p>The ARIMA model can be written as:</p>
508508
<p>$$
509-
Y_t = c + \varphi_1 Y_{t-1} + \varphi_2 Y_{t-2} + &hellip; + \varphi_p Y_{t-p} + \theta_1 \epsilon_{t-1} + \theta_2 \epsilon_{t-2} + &hellip; + \theta_q \epsilon_{t-q} + \epsilon_t</p>
510-
<p>$$</p>
509+
Y_t = c + \varphi_1 Y_{t-1} + \varphi_2 Y_{t-2} + &hellip; + \varphi_p Y_{t-p} + \theta_1 \epsilon_{t-1} + \theta_2 \epsilon_{t-2} + &hellip; + \theta_q \epsilon_{t-q} + \epsilon_t
510+
$$</p>
511511
<p>Where:</p>
512512
<ul>
513513
<li>$Y_t$ is the differenced series (it may have been differenced more than once)</li>

0 commit comments

Comments
 (0)