SCREENER CON LAS SIGUIENTES CONDICIONES

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #176844 quote
    jorge242
    Participant
    Junior

    Hola buenas noches, quisiera crear un screener con las siguientes condiciones:

    1º Vela martillo con mas volumen que el dia anterior.

    2º Apoyada encima de la media de 200 ponderada.

    3º Cruce de la linea MAC D de negativo a positivo.

    4º Indicador Momentum en positivo.

    Gracias, saludos desde españa.

    #176849 quote
    robertogozzi
    Moderator
    Master

    Aquí está, pero es muy difícil encontrar resultados. Para hacer esto, tuve que usar la línea 22 en lugar de la línea 21, como lo preguntas:

    // Hammer as defined in line 146 at https://www.prorealcode.com/prorealtime-indicators/candlesticks-patterns-indicator/
    //
    body     = close - open
    abody    = abs(body)
    if range > 0 then
       ratio = abody / range
    else
       ratio = 0
    endif
    bodytop      = max(open, close)
    bodybottom   = min(open, close)
    shadowtop    = high - bodytop
    shadowbottom = bodybottom - low
    longcandle   = (ratio > 0.6)
    //
    Hammer=(body[1]<0 and longcandle[1] and low<low[1] and shadowbottom>2*abody and shadowtop<0.3*abody)
    MA      = average[200,2](close)                    //Wma
    Avg     = close > MA
    M       = Momentum[10](close)                      //Momentum
    Mom     = M > 0
    MacdL   = MACDline[12,26,9](close) CROSSES OVER 0  //MACD Line
    //MacdL = MACDline[12,26,9](close) > 0             //MACD Line
    Cond    = Hammer AND Avg AND Mom AND MacdL
    SCREENER[Cond](M AS "Momentum")
    #176865 quote
    jorge242
    Participant
    Junior

    Gracias roberto, hay posibilidad de añadir otra condicion que seria.

    Rsc mansfield en positivo, o sea fuerza relativa respecto al indice.

    Gracias un saludo, se agradece la ayuda.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

SCREENER CON LAS SIGUIENTES CONDICIONES


ProScreener: Buscadores de Mercado y Rastreo

New Reply
Author
author-avatar
jorge242 @jorge242 Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by jorge242
4 years, 6 months ago.

Topic Details
Forum: ProScreener: Buscadores de Mercado y Rastreo
Language: Spanish
Started: 09/05/2021
Status: Active
Attachments: No files
Logo Logo
Loading...