0% found this document useful (0 votes)
83 views2 pages

Callput Elite M1

The document advertises premium membership groups on Telegram and Instagram that provide trading courses, scripts, and strategies for personal growth and development. It prohibits the sale of free products and states the goal is to spread knowledge to all. It then provides a trading indicator script for Pine Script that plots buy and sell signals based on Bollinger Bands and moving averages.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
83 views2 pages

Callput Elite M1

The document advertises premium membership groups on Telegram and Instagram that provide trading courses, scripts, and strategies for personal growth and development. It prohibits the sale of free products and states the goal is to spread knowledge to all. It then provides a trading indicator script for Pine Script that plots buy and sell signals based on Bollinger Bands and moving averages.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Os melhores cursos, scripts e estrategias alem de conhecimento de crescimento

pessoal você so
encontraré no telegra e instagram dos links abaixo.

🏆MEMBROS ELITE PRO🏆


Telegram:
https://t.me/eliteprobr

Marcelo Belo | TRADER


Instagram:
@_belotrader

Belo Trader Ob
Canal Youtube:
https://www.youtube.com/channel/UCGzVs4RvlkyxONShb_6yMNg

Proibido a venda de produtos gratuitos


intuito é difundir conhecimento a todos
--------------------------------

copie apartir do (instrument)

instrument { name = "CALLPUT ELITE M1", icon="indicators:BB", overlay = true }

input_group {
"COMPRAR",
comprar_color = input {default = "green", type = input.color}
}

input_group {
"VENDER",
vender_color = input {default = "red", type = input.color}
}

sec = security (current_ticker_id, "1m")

if sec and sec.open_time == open_time then

base = sma(open, '10')


high_band = base + (stdev(open, 10) * 2)
low_band = base - (stdev(open, 10) * 2)
media = sma(close, '20')
up_band = media + (stdev(close, 20) * 2.5)
down_band = media - (stdev(close, 20) * 2.5)
expo = ema(close,'100')

--IMPULSOS

plot_shape((open > high_band and close < high_band),


"VENDER",
shape_style.arrowdown,
shape_size.huge,
vender_color,
shape_location.abovebar,
0,
"VENDA",
vender_color)

plot_shape((open < low_band and close > low_band),


"COMPRAR",
shape_style.arrowup,
shape_size.huge,
comprar_color,
shape_location.belowbar,
0,
"COMPRA",
comprar_color)

-- RETRAES

plot_shape((open < up_band and high > up_band and close <= up_band and expo >
up_band),
"VENDER1",
shape_style.arrowdown,
shape_size.huge,
vender_color,
shape_location.abovebar,
0,
"VENDA RT",
vender_color)

plot_shape((open > down_band and low < down_band and close >= down_band and
expo < down_band),
"COMPRAR1",
shape_style.arrowup,
shape_size.huge,
comprar_color,
shape_location.belowbar,
0,
"COMPRA RT",
comprar_color)

end

You might also like