jivasmax

% YoY

121
Percent Change from Year Ago
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("% YoY")

Period = input(title="Period Cycle", type=integer , defval=12)
//Seasonlength = input(title="Season length", type=integer, defval=66)
//Smoothing = input(title="SMA (smoothing)", type=integer, defval=5)

//LBP = Period / Seasonlength

lastyear = (close - close[1*Period]) / close[1*Period]
//twoyearsago = (close[1*Period] - close[1*Period + Period/LBP]) / close[1*Period + Period/LBP]
//threeyearsago = (close[2*Period] - close[2*Period + Period/LBP]) / close[2*Period + Period/LBP]
//fouryearsago = (close[3*Period] - close[3*Period + Period/LBP]) / close[3*Period + Period/LBP]

//cum = (lastyear+twoyearsago+threeyearsago+fouryearsago)/4

//smacum = sma(cum, Smoothing)

scolor = lastyear >= 0 ? green : red

hline(0)
plot(lastyear*10, color=scolor, offset = 0, style=columns)