【tradingview】95%ラインを引くpineスクリプトを作ってみた

スポンサーリンク
金融

この記事の対象読者
 ⇒tradingviewで株価が最高値から5%下落したかをひとめで確認したい人
 ⇒tradingviewで過去の株価暴落がどの程度かを数値で知りたい人
この記事を読むとわかること
 ⇒tradingviewで5%おきのラインを引くインジケータとそのソースコードがわかります

株価が最高値から5%下落したことが一目でわかるインジケータ

インデックス投資とかで株価が5%下落したときに買い増しをするようなときに便利なインジケータです。
検索してもなかったので自作しました。
名前は「5%inetrval」です。

最大50%下落時のラインまで表示可能です。
下の図はコロナショックで日経225がそのときの最高値から約32%下落したことが一目瞭然です。

ソースはこちら。
ソースをPineエディタにはりつけると使えます。

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// Copyright © 2021 あきらブログ All Rights Reserved.

//@version=5
indicator(“高値%”,overlay=true)
len = input(100, title=”期間”)
src = input(high, title=”四本値”)
high100Band = ta.highest(src, len)
high95Band = ta.highest(src, len)0.95
high90Band = ta.highest(src, len)0.90
high85Band = ta.highest(src, len)0.85
high80Band = ta.highest(src, len)0.80
high75Band = ta.highest(src, len)0.75
high70Band = ta.highest(src, len)0.70
high65Band = ta.highest(src, len)0.65
high60Band = ta.highest(src, len)0.60
high55Band = ta.highest(src, len)0.55
high50Band = ta.highest(src, len)0.50
plot(high100Band, title=”0%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high95Band, title=”-5%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high90Band, title=”-10%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high85Band, title=”-15%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high80Band, title=”-20%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high75Band, title=”-25%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high70Band, title=”-30%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high65Band, title=”-35%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high60Band, title=”-40%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high55Band, title=”-45%”, style=plot.style_stepline, linewidth=1, color=color.yellow)
plot(high50Band, title=”-50%”, style=plot.style_stepline, linewidth=1, color=color.yellow)

コメント

タイトルとURLをコピーしました