accidentje

5 Period Cycle Seasonality (%)

Slight modification of the work done by crasher (can be found here: www.tradingview.com/v/thMIhiZ7/).

This script shows the average % change instead of the average nominal change of the selected security in the past 5 years.

Upper indicator: script by crasher (see link above)
Lower indicator: modified script by me
สคริปต์โอเพนซอร์ซ

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

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

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

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

Period = input(title="Period Cycle", type=integer , defval=252)

LastYear = (close[Period]-close[2 * Period])/close[2 * Period]
TwoYearsAgo = (close [2 * Period]-close[3 * Period])/close[3 * Period]
ThreeYearsAgo = (close [3 * Period]-close[4 * Period])/close[4 * Period]
FourYearsAgo = (close [4 *Period]-close[5 * Period])/close[5 * Period]
FiveYearsAgo = (close [5 * Period]-close[6 * Period])/close[6 * Period]

Offset = Period
LastYearE = (close[Period - Offset]-close [2 * Period - Offset])/close [2 * Period - Offset]
TwoYearsAgoE = (close [2 * Period - Offset]-close [3 * Period - Offset])/close [3 * Period - Offset]
ThreeYearsAgoE = (close [3 * Period - Offset]-close [4 * Period - Offset])/close [4 * Period - Offset]
FourYearsAgoE = (close [4 *Period - Offset]-close [5 * Period - Offset])/close [5 * Period - Offset]
FiveYearsAgoE = (close [5 * Period - Offset]-close [6 * Period - Offset])/close [6 * Period - Offset]

plot((LastYearE + TwoYearsAgoE + ThreeYearsAgoE + FourYearsAgoE + FiveYearsAgoE) / 5, color = #00ff00, linewidth = 2, offset =  Offset)
plot((LastYear + TwoYearsAgo + ThreeYearsAgo + FourYearsAgo + FiveYearsAgo) / 5, color = #ff0000, linewidth = 2)
hline(0)