Code: Select all
//@version=5
indicator("Mutiple Alerts", overlay=true)
i_T1 = input.symbol('BTCUSD')
i_T2 = input.symbol('AMC')
i_T3 = input.symbol('AMD')
f_strategy() =>
smaFast = ta.sma(close, 21)
smaSlow = ta.sma(close, 50)
goLong = ta.crossover(smaFast, smaSlow)
goShort = ta.crossunder(smaFast, smaSlow)
signal = goLong ? 1 : goShort ? -1 : 0
signal
f_screener(_ticker) =>
message = ''
[signal, _tickerClose, _OP, hi] = request.security(_ticker, timeframe.period, [f_strategy(), close, open, high])
if signal == 1
message := 'Buy ' + _ticker + '@' + str.tostring(_tickerClose)
message
else if signal == -1
message := 'Sell ' + _ticker + '@' + str.tostring(_tickerClose)
message
if signal == 1 or signal == -1
alert(message, alert.freq_once_per_bar_close)
signal
t1_signal = f_screener(i_T1)
plot(t1_signal, title='T1 Signal')
t2_signal = f_screener(i_T2)
plot(t2_signal, title='T2 Signal')
t3_signal = f_screener(i_T3)
plot(t3_signal, title='T3 Signal')
plot(ta.sma(close, 21), color=color.new(color.red, 0))
plot(ta.sma(close, 50), color=color.new(color.green, 0))
Code: Select all
f_strategy() =>
smaFast = ta.sma(close, 21)
smaSlow = ta.sma(close, 50)
goLong = ta.crossover(smaFast, smaSlow)
signal = goLong ? 1
signal