Screener RMO y Media Móvil Ponderada alcista y bajista

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #13843 quote
    RafaelNRafaelN
    Moderator
    Senior

     

     

    A continuación una solicitud que ha sido enviada a ProRealtime:

     

    Buenos dias, me podeis ayudar a crear el siguiente screener:
    Para señales alcistas:
    1. La WMM150 en grafico diario que este en tendencia alcista ( verde )
    2. El RMO ( Rahul Mohindar Osc ) en grafico diario: El histograma este en positivo y que
    nos avise justo cuando la linea ( SwingTrd2 ) cruce al alza la linea (Swingtrd3 )
    Para señales bajistas:
    1. La WMM150 en grafico diario este en tendencia bajista (rojo)
    2. El RMO en grafico diario: el histograma este en negativo y que nos avise cuando la
    linea Swingtrd2 cruce a la baja la linea Swingtrd 3

    Y una proposición de respuesta:

    Screener RMO y Media Móvil Ponderada – Señales alcistas

    timeframe(daily)
    
    REM Oscilador de Rahul Mohindar para PRT
    REM programado por Blai5
    REM en Mayo 2008
    //myH = 0
    
    MAI1 = Average[2](close)
    MAI2 = Average[2](MAI1)
    MAI3 = Average[2](MAI2)
    MAI4 = Average[2](MAI3)
    MAI5 = Average[2](MAI4)
    MAI6 = Average[2](MAI5)
    MAI7 = Average[2](MAI6)
    MAI8 = Average[2](MAI7)
    MAI9 = Average[2](MAI8)
    MAI10 = Average[2](MAI9)
    
    mai = (mai1 + mai2 + mai3 + mai4 + mai5 + mai6 + mai7 + mai8 + mai9 + mai10) / 10
    alt = highest[10](high)
    bajo = lowest[10](low)
    ST1 = 100*(close - mai) / (alt - bajo)
    STC = ST1 + 20
    ST2 = (ExponentialAverage[30](STC))
    ST3 = (ExponentialAverage[30](ST2))
    RMO = (ExponentialAverage[81](ST1))
    
    
    myweightedaverage=weightedaverage[150](close)
    
    c1=myweightedaverage > myweightedaverage[1]
    c2=RMO > RMO[1] and ST2 crosses over ST3
    
    screener[c1 and c2]

     

    Screener RMO y Media Móvil Ponderada – Señales alcistas

    timeframe(daily)
    
    REM Oscilador de Rahul Mohindar para PRT
    REM programado por Blai5
    REM en Mayo 2008
    //myH = 0
    
    MAI1 = Average[2](close)
    MAI2 = Average[2](MAI1)
    MAI3 = Average[2](MAI2)
    MAI4 = Average[2](MAI3)
    MAI5 = Average[2](MAI4)
    MAI6 = Average[2](MAI5)
    MAI7 = Average[2](MAI6)
    MAI8 = Average[2](MAI7)
    MAI9 = Average[2](MAI8)
    MAI10 = Average[2](MAI9)
    
    mai = (mai1 + mai2 + mai3 + mai4 + mai5 + mai6 + mai7 + mai8 + mai9 + mai10) / 10
    alt = highest[10](high)
    bajo = lowest[10](low)
    ST1 = 100*(close - mai) / (alt - bajo)
    STC = ST1 + 20
    ST2 = (ExponentialAverage[30](STC))
    ST3 = (ExponentialAverage[30](ST2))
    RMO = (ExponentialAverage[81](ST1))
    
    
    myweightedaverage=weightedaverage[150](close)
    
    c1=myweightedaverage < myweightedaverage[1]
    c2=RMO < RMO[1] and ST2 crosses under ST3
    
    screener[c1 and c2]
    #13848 quote
    albertogordogoyaalbertogordogoya
    Participant
    New

    Rafael muchísimas gracias, lo he probado y funciona perfectamente, me gustaría añadirle un criterio mas , en las señales alcistas me gustaría que tuviesen fuerza relativa positiva para eso yo uso el indicador de PRT “Fuerza relativa de Mansfield” y comparo el activo con respecto al SP500, si aparece por encima de 0 el activo en cuestion yo lo considero fuerte y es otro filtro muy importante.

    Me podrías introducir este otro filtro para:

    Señales Alcistas: RSC Mansfield tiene que estar por encima de 0

    Señales bajistas: RSC Mansfield tiene que estar por debajo de 0

    Te envio un pantallazo de mi pantalla para que puedas observar el indicador

     

    Saludos

    Alberto

    RSc-Mansfield.pptx
    #14200 quote
    albertogordogoyaalbertogordogoya
    Participant
    New

    Rafael, con respecto al asunto del RSMansfield me podrias comentar si es posible integrar ese filtro ? Muchas gracias
    Alberto

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

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Screener RMO y Media Móvil Ponderada alcista y bajista


ProScreener: Buscadores de Mercado y Rastreo

New Reply
Author
author-avatar
RafaelN @rafaeln Moderator
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by albertogordogoyaalbertogordogoya
9 years, 11 months ago.

Topic Details
Forum: ProScreener: Buscadores de Mercado y Rastreo
Language: Spanish
Started: 09/28/2016
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...