Madrid

Madrid Moving Average

This plots the moving averages, either exponential or standard. When it is declining it shows the MA in red, green when rising.
Trading MA: Bullish when it is rising, Bearish when it is falling

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//
// Madrid : 03/30/2014 : Moving Average : 2.0
// http://madridjourneyonws.blogspot.com/
//
// This plots the moving averages, either exponential or standard
// When it is declining it shows the MA in red, green when rising.
// Trading MA: Bullish when it is rising, Bearish when it is falling
//

study(title="Madrid Moving Average", shorttitle="MMA", overlay=true)
maLen = input(21,  minval=1, title="MA Length")
exponential = input(true)

src = close
ma = exponential ? ema(src, maLen) : sma(src, maLen)

maColor = change(ma)>0 ? green : change(ma)<0 ? red : na
plot( ma, color=maColor, style=line, title="MMA", linewidth=2)