Patrones de velas en ProScreener: ayuda con código

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #259149 quote
    arnike
    Participant
    New

    Muy buenas a todos,


    Estoy intentando programar en ProScreener algunos patrones que me ayuden a identificar instrumentos que estén cumpliendo con alguno de ellos.

    Pero estoy teniendo algunas dificultades propias de ser un novato con ProScreener.

    Alguno podría ayudarme con el código de Proscreener que identifique estos patrones? Por favor.

    Adjunto imagen con los patrones concretos.


    Muchas gracias por adelantado.

    Captura-de-pantalla-2026-03-19-203620.png Captura-de-pantalla-2026-03-19-203620.png
    #259163 quote
    Iván González
    Moderator
    Legend

    Buff, ese croquis no es muy claro la verdad… Te paso los 4 primeros para que te hagas una idea.

    El croquis no habla de mechas por ejemplo…

    // Patron de Compra 1
    red = close < open
    green = close > open
    
    
    c1 = red[3]
    c2 = red[2] AND low[2] < low[3]
    c3 = red[1] AND low[1] < low[2]
    c4 = green AND low > low[1] AND high > high[1]
    
    
    SCREENER[c1 AND c2 AND c3 AND c4]
    


    // PRCA
    red = close < open
    green = close > open
    
    
    c1 = green[6]
    c2 = green[5] AND high[5] > high[6]
    c3 = green[4] AND high[4] > high[5]
    c4 = red[3] AND low[3] < low[4]
    c5 = green[2] AND high[2] <= high[3] AND low[2] >= low[3]
    c6 = red[1] AND low[1] < low[3]
    c7 = green AND close > highest[6](high)[1]
    
    
    SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6 AND c7]
    


    // Fallo Ruptura Cont. Bajista
    red = close < open
    green = close > open
    
    
    c1 = red[4]
    c2 = red[3]
    c3 = green[2]
    c4 = red[1] AND low[1] < low[2] AND low[1] < low[3] AND low[1] < low[4]
    c5 = green AND open > low[1] AND open < min(low[2], min(low[3], low[4])) AND close > highest[4](high)[1]
    
    
    SCREENER[c1 AND c2 AND c3 AND c4 AND c5]
    


    // Patron 1-2-3
    red = close < open
    green = close > open
    
    
    rng2 = high[2] - low[2]
    rng1 = high[1] - low[1]
    rng0 = high - low
    
    
    c1 = green[2]
    c2 = red[1] AND abs(open[1] - close[2]) <= 2 * pipsize AND rng1 < rng2 * 0.5
    c3 = green AND open >= low[1] AND open <= high[1] AND rng0 >= rng2 * 0.7 AND rng0 <= rng2 * 1.3
    
    
    SCREENER[c1 AND c2 AND c3]
    


    robertogozzi and arnike thanked this post
    #259447 quote
    arnike
    Participant
    New

    Muchísimas gracias Iván.

    Me fueron de muchísima ayuda.

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

Patrones de velas en ProScreener: ayuda con código


ProScreener: Buscadores de Mercado y Rastreo

New Reply
Author
author-avatar
arnike @arnike Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by arnike
2 months ago.

Topic Details
Forum: ProScreener: Buscadores de Mercado y Rastreo
Language: Spanish
Started: 03/19/2026
Status: Active
Attachments: 1 files
Logo Logo
Loading...