Screneer indicador SMI

Forums ProRealTime foro Español Soporte ProScreener Screneer indicador SMI

Viewing 2 posts - 1 through 2 (of 2 total)
  • #189045

    Buenas tardes,

    Me gustaría que me ayudaran a implementar el siguiente indicador en un screener:

    ///Histograma SMI50
    ///Establecemos indicador
    indicator1 = SMI[50,5,13](CLOSE)
    indicator2 = Average[5] (indicator1)

    ALCISTA1 = indicator1 crosses over indicator2[1] AND indicator1 > indicator1[1]
    BAJISTA1 = indicator1 crosses under indicator2[1] AND indicator1 < indicator1[1]

    IF BAJISTA1 THEN

    DRAWTEXT (“ABRIR CORTOS”,barindex,high+40*pointsize, Dialog,Bold,10) coloured (255,0,0)
    DRAWARROWDOWN (barindex,high+1*pointsize) COLOURED(215,80,250)

    ENDIF
    IF ALCISTA1 THEN

    DRAWTEXT(“ABRIR LARGOS”,barindex,low-40*pointsize,Dialog,Bold,10) COLOURED (0,0,0)
    DRAWARROWUP(barindex,low-1*pointsize) COLOURED(70,100,255)
    ENDIF

    return

    Muchas gracias

    #189057

    Ahi esta:

    1 user thanked author for this post.
Viewing 2 posts - 1 through 2 (of 2 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login