CashCowCoder

Exponential Smoothing Filter

The digital exponential filter, in finance known as Exponential Moving Average (EMA), can be used as a technical indicator for chart analysis to visualize uptrends and downtrends in the market. Unlike the classic simple moving average, the EMA requires only two values ​​for its calculation: the last calculated exponential average price and the current price. This is a simple and fast calculation - even for wide smoothing windows. For further details and the math please refer to the "exponential smoothing" article on Wikipedia.

Here are some additional key points about the exponential moving average:
  1. The EMA can react more quickly to price changes because it can give more weight to current prices - depending on your parameter settings.
  2. Short-term, disruptive price fluctuations are smoothed out well, making prevailing trends more visible.
  3. Despite good smoothing properties, it delays the input values slightly, so it can follow sudden trend changes well.
  4. The EMA is well suited to dynamic markets and trading strategies.
  5. The filter is a good basis for further processing such as gradient analysis.


How to use
When you add the script to your charts, you'll immediately see a thin orange line across your time series, smoothing out price fluctuations.

There are only two parameters to set
  1. smoothing factor between 0.0000 = no smoothing and 0.9999 = strong smoothing
  2. input source: open, high, low, close hl2, etc.

Chart output
In the example chart above, you can see that the orange line follows the highs and lows better than the blue line, which is a simple moving average (SMA).

Additionally, the orange line has a shorter lag, or reacts faster when the trend of the original price data suddenly changes. These characteristics are critical for buying and selling decisions: quickly reacting and tracking highs and lows while providing a smooth line that filters out distracting noise.
Скрипт с открытым кодом

В истинном духе TradingView автор этого скрипта опубликовал его с открытым исходным кодом, чтобы трейдеры могли понять, как он работает, и проверить на практике. Вы можете воспользоваться им бесплатно, но повторное использование этого кода в публикации регулируется Правилами поведения. Вы можете добавить этот скрипт в избранное и использовать его на графике.

Отказ от ответственности

Все виды контента, которые вы можете увидеть на TradingView, не являются финансовыми, инвестиционными, торговыми или любыми другими рекомендациями. Мы не предоставляем советы по покупке и продаже активов. Подробнее — в Условиях использования TradingView.

Хотите использовать этот скрипт на графике?