Rashad

MA Posture

A simple script I wrote that allows you to look at the posture of a moving average. Rates of change can be useful to understanding momentum. Additionally, I have included a signal line so you can see if the posture is more or less than average.

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="MA Posture", shorttitle="MAP", overlay= false)
//Get input parameters------------------------------------
len = input(50, minval=1, title="Length")
src = input(close, title="Source")
posture = input(1, minval=1, title = "Look-Back Period")
signal = input(13, minval = 1, title = "Signal length")
//Calculate Posture-------------------------------------
difference = (sma(src,len) - sma(src, len)[iff(posture < len, posture, len)]) / sma(src, len)[iff(posture < len, posture, len)]
//Get a signal
sig = sma(difference, signal)
plot(difference, style = columns, color=blue, transp = 40, title="MAP")
plot(sig, style = line, color = purple, linewidth = 3, transp = 0, title = "signal line")