Williams% signals on chart

Category: Indicators By: Domenec Created: May 22, 2018, 8:07 AM
May 22, 2018, 8:07 AM
Indicators
13 Comments

Signals of Williams% programmed by Domenec Suria
This indicator gives the willy signals (the Williams% oscillator with 40-period programming and the lines over -25 and -75 with a central line at -50. This information or signals draws them directly on the graph)
The functioning of this indicator is the following:

The willy Williams oscillator% [40] marks the cycles with a very high probability every time that it crosses the middle line of -50 I say that it opens cycle and if it is checked with history in any temporality it has a probability of successes superior to 90% and when it fails is usually to go against a very strong trend if only cycles are checked in favor of Trend this is 99%.

In view of this feature the information given by this indicator or the signals given in the graph are the following:

SA output from the line of “overselling” then WA that is accompanied by a small ellipse to make it more visual, is open cycle , OK blue is cycle closure, however you have to keep the trade until the SB signal comes out if it comes back OK blue checking with other systems but it is more likely to continue the bullish movement until it comes back out SB.

In a bearish sense it is the same but on the other hand the movement with SB is validated and the trade with WB is opened and the cycle with red OK is closed, however, as before, the trade remains until it leaves SA in a clear and definitive way
willy = Williams [40] -75 -25 and opening cycles when crossing -50

 

//Señales del Willy programado por Domenec Suria
//Este indicador lo que hace es dar las señales del willy (El oscilador Williams% con programacion de 40 periodos y las lineas sobre ajustadas a -25 y -75 con una linea central en -50  Esta informacion o señales las dibuja directamente sobre el grafico
// El funcionamiento de este indicador es el siguiente:
//El Oscilador willy Williams%[40] marca los ciclos con una altisima probabilidad cada vez que cruza la linea media de -50 digo que abre ciclo y si se comprueba con historico en cualquier temporalidad tiene una probabilidad de aciertos superior al 90% y cuando falla suele ser por ir contra una tendencia muy fuerte si solo se comprueban los ciclos a favor de Tendencia esta es de un 99%
//En vistas de esta caracteristica la informacion que da  este indicador  o las señales que da en el grafico son las siguientes:  SA salida de la linea de "sobreventa"   luego WA  que va acompañada de una pequeña elipse para que sea mas visual, es ciclo abierto, OK azul es cierre de ciclo, sin embargo hay que mantener el trade hasta que sale la señal SB si vuelve a salir OK azul comprobando con otros sistemas pero mo mas probable es que siga el movimiento alcista hasta que vuelva a salir SB
//En sentido bajista es igual pero al reves empeza el movimiento con SB se valida y se abre el trade con WB y se cierra el ciclo con OK rojo sin embargo igual que antes se mantiene el trade hasta que sale de SA de forma clara y definitiva

siFrameTime = 1

willy = Williams[40]
radius=average[50](range)/4


if SiFrameTime =1 then
if willy CROSSES OVER -50.1 then

DRAWTEXT("WA", barindex,low-1.5*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,255)
DRAWELLIPSE(barindex[0], low-1.5*pointsize+radius, barindex[2], low[2]-radius) COLOURED(0,0,255)

elsif willy CROSSES UNDER -50 then
DRAWTEXT("WB", barindex,high+1.5*pointsize/ 0.2,SansSerif,boldItalic,10) COLOURED(255,0,0)
DRAWELLIPSE(barindex, high+1.5*pointsize+radius, barindex[2], high[2]-radius) COLOURED(255,0,0)

elsif willy CROSSES OVER -75 then

DRAWTEXT("SA", barindex,low-1*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,150)

elsif willy CROSSES under -25 then

DRAWTEXT("SB", barindex,high+1*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(255,0,150)

elsif willy CROSSES under -73 then

DRAWTEXT("OK", barindex,low-2*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(255,0,150)

elsif willy CROSSES over -27 then

DRAWTEXT("OK", barindex,high+2*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,150)

endif
endif
If SiFrameTime= 2 then
if willy CROSSES OVER -50.1 then

DRAWTEXT("WA", barindex,low-3.5*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,255)
DRAWELLIPSE(barindex[0], low-2.5*pointsize+radius, barindex[2], low[2]-radius) COLOURED(0,0,255)

elsif willy CROSSES UNDER -50 then
DRAWTEXT("WB", barindex,high+3.5*pointsize/ 0.2,SansSerif,boldItalic,10) COLOURED(255,0,0)
DRAWELLIPSE(barindex, high+2.5*pointsize+radius, barindex[2], high[2]-radius) COLOURED(255,0,0)

elsif willy CROSSES OVER -75 then

DRAWTEXT("SA", barindex,low-3*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,150)

elsif willy CROSSES under -25 then

DRAWTEXT("SB", barindex,high+3*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(255,0,150)

elsif willy CROSSES under -73 then

DRAWTEXT("OK", barindex,low-3*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(255,0,150)

elsif willy CROSSES over -27 then

DRAWTEXT("OK", barindex,high+3*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,150)

endif
endif
If SiFrameTime=3 then
if willy CROSSES OVER -50.1 then

DRAWTEXT("WA", barindex,low-7*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,255)
DRAWELLIPSE(barindex[0], low-5*pointsize+radius, barindex[2], low[2]-radius) COLOURED(0,0,255)

elsif willy CROSSES UNDER -50 then
DRAWTEXT("WB", barindex,high+7*pointsize/ 0.2,SansSerif,boldItalic,10) COLOURED(255,0,0)
DRAWELLIPSE(barindex, high+5*pointsize+radius, barindex[2], high[2]-radius) COLOURED(255,0,0)

elsif willy CROSSES OVER -75 then

DRAWTEXT("SA", barindex,low-6*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,150)

elsif willy CROSSES under -25 then

DRAWTEXT("SB", barindex,high+6*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(255,0,150)

elsif willy CROSSES under -73 then

DRAWTEXT("OK", barindex,low-6*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(255,0,150)

elsif willy CROSSES over -27 then

DRAWTEXT("OK", barindex,high+6*pointsize / 0.2,SansSerif,boldItalic,10) COLOURED(0,0,150)
endif
endif


return

 

Download
Filename: Williams-Signals-indicator.itf
Downloads: 593
Domenec Average
Developer by day, aspiring writer by night. Still compiling my bio... Error 404: presentation not found.
Author’s Profile

Comments

Logo Logo
Loading...