Crear codigo Volumen climatico

Forums ProRealTime foro Español Soporte ProBuilder Crear codigo Volumen climatico

Viewing 3 posts - 1 through 3 (of 3 total)
  • #138193

    Buenas noches,

    tengo un indicador de la plataforma Tradingview que me parece muy interesante ya que marca el soporte y resistencia de un volumen climatico:

    // © Dreadblitz
    //@version=4
    //
    study(“Climatic Volume X”, shorttitle = “CVX”, overlay=true)

    col_line= color.new(color.black, 30)
    //
    Length = input(10,title=”🔹 Length”)
    AverageVolume = sma(volume, Length)
    RelativeVolume = volume / AverageVolume
    HighVolume = input(2, minval=0.01,title=”🔹 High Volume = “)
    show_relative_volume= input(true,title=”Show Relative Volume”)
    show_lines = input(true,title=”Show Lines”)
    Extend_lines= input(10,title=”🔹 Extend Lines =”)

    //
    barcolor(RelativeVolume > HighVolume? color.white : na)
    //
    dt = time – time[1]

    if RelativeVolume > HighVolume and show_relative_volume
    label.new(bar_index, high, style=label.style_none,text=tostring(RelativeVolume,”#.#”), size=size.small, textcolor=color.black)
    if RelativeVolume > HighVolume and show_lines
    a=line.new(time -1*dt , low, time + Extend_lines*dt , low, xloc.bar_time, extend=extend.none, style=line.style_solid, color=col_line, width=1)
    b=line.new(time -1*dt , high, time + Extend_lines*dt , high, xloc.bar_time, extend=extend.none, style=line.style_solid, color=col_line, width=1)
    // Alert
    alertcondition(RelativeVolume > HighVolume,title=”Climatic Volume”,message=”Climatic Volume”)

     

    Alguien podria ayudarme a convertirlo a indicador de Prorealtime?

     

    gracias por vuestro esfuerzo y trabajo!!

    #138238

    Buenos Días Bolsatonimora2 :

    Se dá la coincidencia de que tengo una adaptación hecha para Prorealcode.

    Aquí te pongo tanto el código como un archivo itf listo para incorporar a tu plataforma.

    Antes que nada , debo decirte que cuando lo adapté me resultó un indicador familiar , y es que el Critical Volume es en realidad (cambiando alguna variable) el Volumen Proporcional Medio de Blai5 : https://www.blai5.net/blai5-volumen-proporcional-medio-vpm/

    No es la primera vez que ese forero de Tradingview publica un código sin ninguna referencia a su código fuente original.

     

    1 user thanked author for this post.
    #138298

    Gracias por tu respuesta @bolsatrilera. Habría alguna posibilidad de poner las líneas de soporte y resistencia en la barra del precio del volumen climático? Gracias de nuevo

Viewing 3 posts - 1 through 3 (of 3 total)

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