Proescreener indicador volumen stop

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #127136 quote
    Tonicejudo
    Participant
    Junior

    Hola ,soy nuevo en esto, a ver si me pueden ayudar. Hay un indicador que se llama volumen stop de bolsatrilera que esta aqui en prorealcode.Este indicador da buenas señales.El indicador pinta la vela en azul cuando es alcista y en negro cuando es bajista.Se podria hacer un proescreener que detecte las acciones que han pintado la vela azul, alcista.Gracias de antemano y un saludo.

    #127141 quote
    robertogozzi
    Moderator
    Master

    Por favor, publique un enlace a ese indicador.

    #127272 quote
    Tonicejudo
    Participant
    Junior
    #127359 quote
    robertogozzi
    Moderator
    Master

    Ahí tienes. Vuelve:

    • 1 = alcista
    • 2 = bajista
    //              VOLUME STOPS
    // código original para la plataforma Tradingview por Gqman
    // adaptación para la plataforma Prorealtime v10.3
    // https://www.prorealcode.com/prorealtime-indicators/volume-stops/
    //
    redbar=open>=close
    greenbar=open<=close
    long1=volume[2]<volume[1] and volume[1]<volume[0] and redbar[2] and redbar[1] and greenbar[0]
    short1=volume[2]<volume[1] and volume[1]<volume[0] and greenbar[2] and greenbar[1] and redbar[0]
    long2=volume[2]>volume[1] and volume[1]>volume[0] and redbar[2] and redbar[1] and greenbar[0]
    short2=volume[2]>volume[2] and volume[1]>volume[0] and greenbar[2] and greenbar[1] and redbar[0]
    Signal = 0
    if long1 or long2 then
       //drawcandle (open,high,low,close) coloured (0,0,255) bordercolor (0,0,0)
       Signal = 1
    elsif short1 or short2 then
       //drawcandle (open,high,low,close) coloured (0,0,0) bordercolor (0,0,0)
       Signal = 2
    endif
    screener[Signal](Signal AS "1=↑,2=↓")
    #127525 quote
    Tonicejudo
    Participant
    Junior

    Una maravilla Robertogozzi , va fenomenal, muchisimas gracias,un saludo.

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

Proescreener indicador volumen stop


ProScreener: Buscadores de Mercado y Rastreo

New Reply
Author
author-avatar
Tonicejudo @tonicejudo Participant
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by Tonicejudo
5 years, 10 months ago.

Topic Details
Forum: ProScreener: Buscadores de Mercado y Rastreo
Language: Spanish
Started: 04/20/2020
Status: Active
Attachments: No files
Logo Logo
Loading...