Tendencia alcista

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #249095 quote
    Mikel9300
    Participant
    New

    Hola,

    Me gustaría ayuda para programar el siguiente screener:

    • Volumen superior a 400.000
    • Precio en máximos de 20 días
    • RSI en 60 o superior
    • Línea K del estocástico (14,3,3) por encima de la línea D
    • Precio por encima de la media simple de 200
    • Precio por encima de la media simple de 30 pero como máximo hasta un 15% por encima

    Gracias

    #249097 quote
    Iván González
    Moderator
    Master

    Hola. Aquí lo tienes:

    //Volumen superior a 400.000
    c1=volume>400000
    //Precio en máximos de 20 días
    c2=high=highest[20](high)
    //RSI en 60 o superior
    c3=rsi[14](close)>=60
    //Línea K del estocástico (14,3,3) por encima de la línea D
    stok=Stochastic[14,3](close)
    stod=Stochasticd[14,3,3](close)
    c4=stok>stod
    //Precio por encima de la media simple de 200
    c5=close>average[200](close)
    //Precio por encima de la media simple de 30 pero como máximo hasta un 15% por encima
    dist=(close/average[30](close)-1)*100
    c6=dist>0 and dist<=15
    
    setup=c1 and c2 and c3 and c4 and c5 and c6
    
    screener[setup]
    
    robertogozzi thanked this post
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

Tendencia alcista


ProScreener: Buscadores de Mercado y Rastreo

New Reply
Author
author-avatar
Mikel9300 @mikel9300 Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by Iván González
7 months, 1 week ago.

Topic Details
Forum: ProScreener: Buscadores de Mercado y Rastreo
Language: Spanish
Started: 07/25/2025
Status: Active
Attachments: No files
Logo Logo
Loading...