0% found this document useful (0 votes)
125 views3 pages

Sniper Script for Telegram Signals

The document describes a trading tool called 'SNIPER TELEGRAM @COMUNIDADGRATIS' that provides free trading signals via a Telegram channel. It includes parameters for moving averages and conditions for buy and sell signals based on these averages. The tool is designed to be assertive in its trading recommendations for the year 2024.

Uploaded by

João Nunes
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)
125 views3 pages

Sniper Script for Telegram Signals

The document describes a trading tool called 'SNIPER TELEGRAM @COMUNIDADGRATIS' that provides free trading signals via a Telegram channel. It includes parameters for moving averages and conditions for buy and sell signals based on these averages. The tool is designed to be assertive in its trading recommendations for the year 2024.

Uploaded by

João Nunes
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

instrument {

name = 'SNIPER TELEGRAM @COMUNIDADGRATIS',

short_name = 'super',
---- pagina web: [Link] -----
---- canal de TELEGRAM con señales GRATIS: [Link] -----

---(VERSAO GRATUITA, muito assertivo 2024 by:TELEGRAM @COMUNIDADGRATIS)---


---(VERSION GRATUITA, muy asertivo 2024 por: TELEGRAM @COMUNIDADGRATIS)---
---(FREE VERSION, very assertive 2024 by: TELEGRAM @COMUNIDADGRATIS)---
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------
------------------------TELEGRAM @COMUNIDADGRATIS------------------TELEGRAM
@INDICADORESGRATIS------------------------------

overlay = true

MaFast_period = input(1,"Ma Fast period",[Link],1,1000,1)

MaValue = input(5,"Ma Value", input.string_selection,[Link])

MaSlow_period = input(34,"Ma Slow period",[Link],1,1000,1)

Signal_period = input(5,"Signal period",[Link],1,1000,1)

input_group {

"Compra",

colorBuy = input { default = "green", type = [Link] },


visibleBuy = input { default = true, type = input.plot_visibility }

input_group {

"Venda",

colorSell = input { default = "red", type = [Link] },

visibleSell = input { default = true, type = input.plot_visibility }

local titleValue = inputs[MaValue]

-- mdia mvel linear rpida

smaFast = sma(titleValue, MaFast_period)

-- mdia mvel linear devagar

smaSlow = sma(titleValue, MaSlow_period)

-- calculo diferencial - serie

buffer1 = smaFast - smaSlow

-- clculo da mdia mvel ponderada - serie

buffer2 = wma(buffer1, Signal_period)

buyCondition = conditional(buffer1 > buffer2 and buffer1[1] < buffer2[1] and not
(buffer1 < buffer2 and buffer1[1] > buffer2[1]))

buyCondition = conditional(buffer1 > buffer2 and buffer1[1] < buffer2[1])

sellCondition = conditional(buffer1 < buffer2 and buffer1[1] > buffer2[1] and not
(buffer1 > buffer2 and buffer1[1] < buffer2[1]))

sellCondition = conditional(buffer1 < buffer2 and buffer1[1] > buffer2[1] )


plot_shape(

(buyCondition),

"SNIPER",

shape_style.triangleup,

shape_size.huge,

colorBuy,

shape_location.belowbar,

-1,

"SNIPER ",

"green"

plot_shape(

(sellCondition),

"SNIPER ",

shape_style.triangledown,

shape_size.huge,

colorSell,

shape_location.abovebar,

-1,

"SNIPER ",

"red"

You might also like