EMA (15 EMA's in 1)English Version
This is a simple indicator with built-in EMAs and flexible customization.
You can use the default EMA values or modify them according to your strategy.
If you need an additional EMA, simply add it in the code and enable it in the settings.
Example:
ema2222 = Ema(2222)
s2222 = input.bool(true, "2222")
plot(s2222 ? ema2222 : na, "2222", color=color.white, linewidth=1)
To change the period — replace 2222 with any value you prefer.
To add another EMA — duplicate the lines and specify a new period.
RU. Это простой индикатор со встроенными EMA и возможностью гибкой настройки.
Вы можете использовать предустановленные значения EMA или изменить их под свою стратегию.
Если вам нужна дополнительная EMA, просто добавьте её в код и настройках.
Для примера:
ema2222 = Ema(2222)
s2222 = input.bool(true, "2222")
plot(s2222 ? ema2222 : na, "2222", color=color.white, linewidth=1)
Чтобы изменить период — замените число 2222 на любое нужное значение.
Чтобы добавить ещё одну EMA — продублируйте строку и укажите новый период
Indicador Pine Script®






















