単純な EMA スクリプトを戦略に追加しました。問題は、ロード時に色 defval が青になることです。そこで、各絵馬(遅いものと速いもの)に色を入力しましたが、うまくいきません。私がどこで間違いを犯したか知っていますか?
エマ スクリプト:
// EMA input
var emacross = "EMA Cross"
ema_01_len = input(20, title='Fast EMA', step=1, type=input.integer, group = emacross)
ema_02_len = input(50, title='Slow EMA', step=1, type=input.integer, group = emacross)
ema_src = input(title="Source", type=input.source, defval=close, group = emacross)
plot_fastEma = input(title="PLot Fast Ema", type=input.bool, defval=false,group=emacross)
plot_slowEma = input(title="PLot Slow Ema", type=input.bool, defval=false,group=emacross)
// EMA def
ema_01 = ema(ema_src, ema_01_len)
ema_02 = ema(ema_src, ema_02_len)
//Plot Emas
plot(plot_fastEma ? ema_01 :an)
plot(plot_slowEma ? ema_02 :an)
// Plot Ema Colors
col_ema01 = input(#2962FF, "Fast EMA", group="Color Settings", inline="EMA FAST",group=emacross)
col_ema02 = input(#FF6D00, "Slow EMA", group="Color Settings", inline="EMA SLOW", group=emacross)
- また、色の defval を設定して、インジケーターが開いたときに特定の色が表示されるようにする方法はありますか? (例:オレンジ、赤)
ありがとう!