Muchas gracias Supertiti,
ME va bien, he añadido que cruce o que tenga la media de 200 (también sería interesante la de 55) que pase a un 1% del precio y quedaría así por si alguno le interesa:
// INVERTED HAMMER NICOLAS
mm1 = Average[1](Close)
mm200 = Average[200](Close)
mmVariation = Abs((mm200/mm1 – 1) * 100)
data5b=(((high – low)>3*(open -close)) and ((high – close)/(.001 + high – low) > 0.6) and ((high – open)/(.001 + high – low) > 0.6))
if data5b then
IH = 1
Else
IH = 0
Endif
condition = mmVariation<1
ca2=close[2] >= close[3]
ca1=close[1] >= close[2]
CG = ca1 and ca2
SCREENER [condition and IH and CG ]
Pero para rizar el rizo, y ahí me he atascado necesitaría que el azul del blai concorde sea negativo, o sea, que las manos fuertes vendan, he puesto el siguiente proscreener pero me salen valores del blai tanto positivo como negativo, y por último, me gustaría poner un volumen > 100000
Te dejo el proscreener que habrá algo mal:
Martillo invertido con vela media 200 y vende mano fuerte blay
ignored, ignored, ignored, ignored, ignored, azul, ignored, ignored = CALL”Blai5 Koncorde v.09″[15]
mm1 = Average[1](Close)
mm200 = Average[200](Close)
mmVariation = Abs((mm200/mm1 – 1) * 100)
data5b=(((high – low)>3*(open -close)) and ((high – close)/(.001 + high – low) > 0.6) and ((high – open)/(.001 + high – low) > 0.6))
if data5b then
IH = 1
Else
IH = 0
Endif
condition = mmVariation<1
ca2=close[2] >= close[3]
ca1=close[1] >= close[2]
CG = ca1 and ca2
c1 = (momentum[1](azul)) <0
c2= volumen>50000
SCREENER [condition and IH and CG and c1 and c2 ]