0% found this document useful (0 votes)
11 views1 page

FT1 Trading Signal Script

The document defines an instrument named 'TARGET FT1 2024' with specific color inputs for bullish and bearish signals. It includes conditions to plot upward or downward arrows based on the closing and opening prices of the asset. The arrows are displayed below or above the bars depending on the market trend indicated by the price movements.

Uploaded by

Daniel Arêas
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)
11 views1 page

FT1 Trading Signal Script

The document defines an instrument named 'TARGET FT1 2024' with specific color inputs for bullish and bearish signals. It includes conditions to plot upward or downward arrows based on the closing and opening prices of the asset. The arrows are displayed below or above the bars depending on the market trend indicated by the price movements.

Uploaded by

Daniel Arêas
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 {overlay = true,

name = 'TARGET FT1 2024',


short_name = 'TARGET FT1 2024',
icon="indicators:ADX"}

input_group { "FT1 - UP COLOR", call_color = input { default="#39FF14", type =


[Link] } }
input_group { "FT1 - DOWN COLOR", put_color = input { default="#FF0000", type =
[Link] } }

if ((close > close[1]) and (close[1] > open[2]) and (close[3] > close[2])) then

plot_shape(1,
'Bull_FT1',
shape_style.arrowup,
shape_size.big,
call_color,
shape_location.belowbar,
0,
"FT",
call_color )
else
if ((close < close[1]) and (close[1] < open[2]) and (close[3] < close[2])) then

plot_shape(1,
'Bear_FT1',
shape_style.arrowdown,
shape_size.big,
put_color,
shape_location.abovebar,
0,
"FT",
put_color)
end
end

You might also like