Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

IQ OPTION WINDICADOR TOP Script for Iq Option and Exnova MT4

Shield

Well-known member
Staff member
Administrative
Register
Joined
Jul 7, 2025
Messages
90
Credits
4,280
1773033205654.png


Copy the Script and Paste it .

Code:
instrument {overlay = true,
           name = 'WINDICADOR',
            short_name = 'ENGF',
            icon="indicators:ADX"}


input_group { "CALL - UP COLOR", call_color = input { default="#00FF00", type = input.color } }
input_group { "PUT - DOWN COLOR", put_color = input { default="#FF0000", type = input.color } }

 
if ((close[1] < open[1]) and (close > open) and (close > high[1]) and close[1] >= open) then

    plot_shape(1,
            'Bull_Engulfing',
            shape_style.arrowup,
            shape_size.huge,
            call_color,
            shape_location.belowbar,
            0,
            "CALL PROXIMA VELA",
            call_color )
else
    if ((close[1] > open[1]) and (close < open) and (close < low[1]) and close[1] <= open) then

    plot_shape(1,
            'Bear_Engulfing',
            shape_style.arrowdown,
            shape_size.huge,
            put_color,
            shape_location.abovebar,
            0,
            "PUT PROXIMA VELA",
            put_color)
    end
end
 
Back
Top