Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
junsan1 committed Jun 29, 2024
1 parent 692dd73 commit 5511268
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions en/pedia/#/1-period ema.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ The Exponential Moving Average (EMA) is a type of moving average that places a g

The formula for the 1-period EMA can be simplified, although the general EMA formula is as follows:

\[ \text{EMA}_{\text{today}} = ( \text{Price}_{\text{today}} \times K ) + ( \text{EMA}_{\text{yesterday}} \times (1 - K) ) \]
$$ \text{EMA}_{\text{today}} = ( \text{Price}_{\text{today}} \times K ) + ( \text{EMA}_{\text{yesterday}} \times (1 - K) ) $$

Where:
- \( K \) is the smoothing factor, calculated as \( \frac{2}{{n+1}} \), and \( n \) is the number of periods.
- $K$ is the smoothing factor, calculated as $\frac{2}{n+1}$, and $n$ is the number of periods.

In the case of the 1-period EMA, the smoothing factor \( K \) is maximized, making it highly sensitive to the most recent price changes.
In the case of the 1-period EMA, the smoothing factor $K$ is maximized, making it highly sensitive to the most recent price changes.

## Characteristics of the 1-Period EMA

Expand Down

0 comments on commit 5511268

Please sign in to comment.