トレーディングビュー、Pine エディタ勉強中
MACD インジケーター https://www.tradingview.com/pine-script-docs/primer/first-indicator/#the-pine-editor //@version=5 indicator("MACD #1") fast = 12 slow = 26 fastMA = ta.ema(close, fast) slowMA = ta.ema(close, slow) macd = fastMA - slowMA signal = ta.ema(macd, 9) plot(macd, color = color.blue) plot(signal, color = color.orange) MACD インジケーターが チャートの下の別の ペインに表示されます。 >>サンプルを眺めながら、何ができるか?自分で作れるかを調べる エラー 「 contain one declaration statement 」 対応 indicatorが複数あるとエラーになりやすいので、1つにまとめるか余計なindicatorを削除する