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)