Ice_

Simple Strategy: MAonMA

A simple MA strategy.
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="Moving Average on Moving Average", shorttitle="MAonMA", overlay=true)
length = input(13, minval= 13, title="Don't change the values for this strategy.")
lenght1 = input (34, minval = 34, title="Don't change the values for this strategy.")
lenght2 = input (89, minval = 89, title="Don't change the values for this strategy.")
src = input(close, title="Source")
ema1 = ema(close, length)
ema2 = ema(close, lenght1)
ema3 = ema(close, lenght2)
e1 = plot(ema1, color=gray, linewidth=2)
e2 = plot(ema2, color=teal, linewidth=3)
e3 = plot(ema3, color=aqua, linewidth=4)