TraderKNJ

EMA Kiem

Gui nguoi co duyen

สคริปต์โอเพนซอร์ซ

ด้วยจิตวิญญาณของ TradingView อย่างแท้จริง ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้ผู้ค้าสามารถเข้าใจและตรวจสอบได้ ไชโยให้กับผู้เขียน! คุณสามารถใช้ได้ฟรี แต่การใช้รหัสนี้ซ้ำในสิ่งพิมพ์อยู่ภายใต้กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ เงื่อนไขการใช้บริการ

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="EMA Kiếm - KNJ - Loạn Chưởng Thần Công", overlay = true)
xPrice = close
Length01 = input(type=integer, defval=5,minval=1)
Length02 = input(type=integer, defval=10,minval=1)
Length03 = input(type=integer, defval=15,minval=1)
Length04 = input(type=integer, defval=20,minval=1)
Length05 = input(type=integer, defval=25,minval=1)
Length06 = input(type=integer, defval=30,minval=1)
Length07 = input(type=integer, defval=40,minval=1)
Length08 = input(type=integer, defval=50,minval=1)
Length09 = input(type=integer, defval=75,minval=1)
Length10 = input(type=integer, defval=100,minval=1)
Length11 = input(type=integer, defval=125,minval=1)
Length12 = input(type=integer, defval=150,minval=1)
Length13 = input(type=integer, defval=200,minval=1)
Length14 = input(type=integer, defval=300,minval=1)
Length15 = input(type=integer, defval=400,minval=1)
Length16 = input(type=integer, defval=500,minval=1)
Length17 = input(type=integer, defval=600,minval=1)
Length18 = input(type=integer, defval=700,minval=1)
Length19 = input(type=integer, defval=800,minval=1)
Length20 = input(type=integer, defval=900,minval=1)
Length21 = input(type=integer, defval=1000,minval=1)
Length22 = input(type=integer, defval=1000,minval=1)
Length23 = input(type=integer, defval=4,minval=1)
Length24 = input(type=integer, defval=6,minval=1)
ma01 = ema(xPrice, Length01)
ma02 = ema(xPrice, Length02)
ma03 = ema(xPrice, Length03)
ma04 = ema(xPrice, Length04)
ma05 = ema(xPrice, Length05)
ma06 = ema(xPrice, Length06)
ma07 = ema(xPrice, Length07)
ma08 = ema(xPrice, Length08)
ma09 = ema(xPrice, Length09)
ma10 = ema(xPrice, Length10)
ma11 = ema(xPrice, Length11)
ma12 = ema(xPrice, Length12)
ma13 = ema(xPrice, Length13)
ma14 = ema(xPrice, Length14)
ma15 = ema(xPrice, Length15)
ma16 = ema(xPrice, Length16)
ma17 = ema(xPrice, Length17)
ma18 = ema(xPrice, Length18)
ma19 = ema(xPrice, Length19)
ma20 = ema(xPrice, Length20)
ma21 = ema(xPrice, Length21)
ma22 = sma(xPrice, Length22)
ma23 = ema(xPrice, Length23)
ma24 = ema(xPrice, Length24)
plot(ma01, title="ma01", color=fuchsia, linewidth=1)
plot(ma02, title="ma02", color=fuchsia, linewidth=1)
plot(ma03, title="ma03", color=fuchsia, linewidth=1)
plot(ma04, title="ma04", color=fuchsia, linewidth=1)
plot(ma05, title="ma05", color=fuchsia, linewidth=1)
plot(ma06, title="ma06", color=fuchsia, linewidth=1)
plot(ma07, title="ma07", color=fuchsia, linewidth=1)
plot(ma08, title="ma08", color=fuchsia, linewidth=1)
plot(ma09, title="ma09", color=fuchsia, linewidth=1)
plot(ma10, title="ma10", color=fuchsia, linewidth=1)
plot(ma11, title="ma11", color=fuchsia, linewidth=1)
plot(ma12, title="ma12", color=fuchsia, linewidth=1)
plot(ma13, title="ma13", color=fuchsia, linewidth=1)
plot(ma14, title="ma14", color=fuchsia, linewidth=1)
plot(ma15, title="ma15", color=fuchsia, linewidth=1)
plot(ma16, title="ma16", color=fuchsia, linewidth=1)
plot(ma17, title="ma17", color=fuchsia, linewidth=1)
plot(ma18, title="ma18", color=fuchsia, linewidth=2)
plot(ma19, title="ma19", color=fuchsia, linewidth=2)
plot(ma20, title="ma20", color=fuchsia, linewidth=2)
plot(ma21, title="ma21", color=fuchsia, linewidth=2)
plot(ma22, title="ma22", color=aqua, linewidth=3)
plot(ma23, title="ma23", color=fuchsia, linewidth=1)
plot(ma24, title="ma24", color=fuchsia, linewidth=1)