TradeTitan

3 Exponential Moving Averages

Plots the 20, 50, and 100 Period EMAs by default. Lengths and colors can be changed. Ideal for identifying buy/sell signals.
开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?
study(title="3 Exponential Moving Averages", shorttitle="3EMA", overlay=true)
len1 = input(20, minval=1, title="Short Length")
src1 = input(close, title="Source One")
out1 = ema(src1, len1)
plot(out1, title="Short EMA", color=blue)
len2 = input(50, minval=1, title="Intermediate Length")
src2 = input(close, title="Source Two")
out2 = ema(src2, len2)
plot(out2, title="Intermediate EMA", color=orange)
len3 = input(100, minval=1, title="Long Length")
src3 = input(close, title="Source Three")
out3 = ema(src3, len3)
plot(out3, title="Long EMA", color=green)