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

OTC Trading Signal Script

The document defines a trading script named 'SCRIPT WIN TRADER' for an OTC market. It includes input groups for customizing colors for call and put options, and it uses conditions based on closing and opening prices to plot bullish or bearish arrows on a chart. The script visually indicates potential trading signals with arrow shapes based on market trends.

Uploaded by

khelil salem
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)
99 views1 page

OTC Trading Signal Script

The document defines a trading script named 'SCRIPT WIN TRADER' for an OTC market. It includes input groups for customizing colors for call and put options, and it uses conditions based on closing and opening prices to plot bullish or bearish arrows on a chart. The script visually indicates potential trading signals with arrow shapes based on market trends.

Uploaded by

khelil salem
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 = 'SCRIPT WIN TRADER',


short_name = 'OTC',
icon="indicators:ADX"}

input_group { "OTC - UP COLOR", call_color = input { default="#00FFFF", type =


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

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

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

plot_shape(1,
'Bear_OTC',
shape_style.arrowdown,
shape_size.huge,
put_color,
shape_location.abovebar,
0,
"PUT",
put_color)
end
end

You might also like