subir adjuntos al compartir indicadores

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #238480 quote
    @toniyecla
    Participant
    New

    he probado en ambos sistemas (mac/win) 4 navegadores diferentes, y nada… el boton de “add attachment” no funciona ¿cómo puedo subir archivos .itf?

    gracias

    #238481 quote
    robertogozzi
    Moderator
    Master

    Nunca encontré ninguna dificultad, siempre hice clic en el botón “Select File” y cargué el archivo ITF desde la carpeta donde se había guardado previamente.

    ¿Estás seguro de haber seguido los pasos correctamente?

    Iván González thanked this post
    #238587 quote
    @toniyecla
    Participant
    New

    hago click

     

    ¿algun paso adicional?

    test.mp4
    #238590 quote
    robertogozzi
    Moderator
    Master

    ¿Tienes que publicar algo en los distintos foros o en la biblioteca?

    #238599 quote
    JS
    Participant
    Senior

    Si desea compartir un indicador utilizando un “archivo itf”, siga el siguiente procedimiento:

    Ir a “Indicadores y Sistemas de Trading”

    Seleccione el indicador que desea compartir.

    Presione el botón “Exportar”

    Indique la “ruta” donde desea guardar el indicador en cuestión en su computadora…

    (si desea cargar un indicador, use “importar”)

    Si desea agregar archivos adjuntos a su publicación en el foro, use:

    “Seleccionar archivo”

    robertogozzi thanked this post
    Scherm­afbeelding-2024-10-07-om-15.04.10-1.png Scherm­afbeelding-2024-10-07-om-15.04.10-1.png Scherm­afbeelding-2024-10-07-om-15.26.48-1.png Scherm­afbeelding-2024-10-07-om-15.26.48-1.png
    #238613 quote
    @toniyecla
    Participant
    New
    Gracias, exporto desde PRT correctamente, es a la hora de publicar el indicador que no puedo subir el archivo .itf (ni ningún otro, p. ej. capturas adicionales) debido a que el botón “add attachment” simplemente no funciona, y lo he probado en safari, chrome, firefox en mac, y chrome y edge en windows, tal como demuestra el vídeo que adjunté antes. Curiosamente aquí en los foros sí funciona el “select file” que dicho sea de paso aparece de forma diferente. En resumen, yo creo que es debido a un error javascript de la sección “Library” de la web. Utilizo PRT desde 2014, y en más de una ocasión he intentado aportar y compartir con la comunidad, pero sinceramente nunca he podido hacerlo por errores técnicos de la web ¿creen que prorealcode.com en su conjunto podría agradecer una actualización? Gracias por su tiempo
    #238640 quote
    @toniyecla
    Participant
    New
    También he probado desde iPhone (safari y chrome) mismo resultado. Adjunto vídeo. Si se les ocurre alguna solución por favor indíquenme (quizá actualizar bbPress, o TinyMCE…?) Lo único que podría hacer en este momento, sería publicar los diferentes códigos en el foro ProBuilder, pero no sé si es lo correcto
    ScreenRecording_10-08-2024-08-03-09_1-01.mp4 ScreenRecording_10-08-2024-08-03-09_1-01-1.mp4
    #238661 quote
    Nicolas
    Keymaster
    Master
    Por favor, haz tu publicación sin el archivo ITF y colócala aquí en su lugar y yo cambiaré la publicación de la biblioteca por ti. Muchas gracias por tu contribución al sitio web y lamento este error. No te preocupes, la publicación de la biblioteca no se publicará sin el archivo en ningún caso.
    #238673 quote
    @toniyecla
    Participant
    New
    claro! muchas gracias Nicolas por tu gran labor, y la de todo el equipo, con tu permiso subo varios, son básicos pero yo creo interesantes…
    Nicolas thanked this post
    #238674 quote
    @toniyecla
    Participant
    New
    // Author: toniyecla
    // FVG (Fair Value Gap / Imbalances)
    
    alcista = close[2] > open[2]
    
    if (alcista) then
    maximo = low[1]
    minimo = high[3]
    
    if (maximo-minimo > rango) then
    drawrectangle(barindex[2], maximo, barindex + 1, minimo) coloured (0,157,157,32) bordercolor (0,153,153,0)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 2, barindex + 1, maximo - (maximo - minimo) / 2) coloured (255,255,255,64)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 4, barindex + 1, maximo - (maximo - minimo) / 4) coloured (255,255,255,64)
    drawsegment(barindex[2], minimo + (maximo - minimo) / 4, barindex + 1, minimo + (maximo - minimo) / 4) coloured (255,255,255,64)
    endif
    else
    maximo = low[3]
    minimo = high[1]
    
    if (maximo-minimo > rango) then
    drawrectangle(barindex[2], maximo, barindex + 1, minimo) coloured (255,0,0,32) bordercolor (255,102,102,0)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 2, barindex + 1, maximo - (maximo - minimo) / 2) coloured (255,255,255,64)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 4, barindex + 1, maximo - (maximo - minimo) / 4) coloured (255,255,255,64)
    drawsegment(barindex[2], minimo + (maximo - minimo) / 4, barindex + 1, minimo + (maximo - minimo) / 4) coloured (255,255,255,64)
    endif
    endif
    
    return
    
    Nicolas thanked this post
    FVG.itf FVG.png FVG.png
    #238678 quote
    @toniyecla
    Participant
    New
    // Author: toniyecla
    // Sesiones v2
    
    DEFPARAM DrawOnLastBarOnly = True
    ONCE opacidad = 1
    
    // ASIA (solo Tokio)
    
    if EspHorarioVerano then
    ONCE AsianStart       = 020000
    ONCE AsianEnd         = 080000
    ONCE AsianLunchStart  = 043000
    ONCE AsianLunchEnd    = 053000
    else
    ONCE AsianStart       = 010000
    ONCE AsianEnd         = 070000
    ONCE AsianLunchStart  = 033000
    ONCE AsianLunchEnd    = 043000
    endif
    
    if time > AsianStart and time <= AsianEnd then
    backgroundcolor(0, 0, 0, 16 * opacidad)
    endif
    
    if LuchTime then
    if time > AsianLunchStart and time <= AsianLunchEnd then
    backgroundcolor(0, 0, 0, 8 * opacidad)
    endif
    endif
    
    // EUROPE
    
    ONCE EuropeStart      = 090000
    ONCE EuropeEnd        = 173000
    ONCE EuropeLunchStart = 130000
    ONCE EuropeLunchEnd   = 130200
    
    if (time > EuropeStart and time <= EuropeEnd) then
    backgroundcolor(0, 64, 0, 24 * opacidad)
    endif
    
    if (LuchTime) then
    if time > EuropeLunchStart and time <= EuropeLunchEnd then
    backgroundcolor(0, 64, 0, 16 * opacidad)
    endif
    endif
    
    // USA
    
    if (EspHorarioVerano = NYHorarioVerano) then
    ONCE USAStart         = 153000
    ONCE USAEnd           = 220000
    ONCE USALunchStart    = 174500
    ONCE USALunchEnd      = 193000
    else
    ONCE USAStart         = 143000
    ONCE USAEnd           = 210000
    ONCE USALunchStart    = 164500
    ONCE USALunchEnd      = 183000
    endif
    
    if (time > USAStart and time <= USAEnd) then
    backgroundcolor(0, 0, 64, 32 * opacidad)
    endif
    
    // horario estimado NYSE no hace pausa oficial para comer
    if (LuchTime) then
    if time > USALunchStart and time <= USALunchEnd then
    backgroundcolor(0, 0, 64, 16 * opacidad)
    endif
    endif
    
    // OVERLAPS
    
    if time > USAStart and time <= EuropeEnd then
    backgroundcolor(0, 48, 64, 32 * opacidad)
    endif
    
    RETURN
    
    Nicolas thanked this post
    Sesiones-v2.png Sesiones-v2.png Sesiones-v2-1.itf
    #238685 quote
    @toniyecla
    Participant
    New
    Este indicador está diseñado para añadir al panel “VOLUMEN” (u otros como VCT etc) marca automáticamente el nivel de volumen alto y muy alto.
    // Author: toniyecla
    
    defparam drawonlastbaronly = true
    
    if (barindex[1000] > 0) then
    
    y = highest[1000] / 2
    
    drawhline(y) coloured(0, 78, 181, 255) STYLE(dottedline4, 1)
    
    y = y / 2
    
    drawhline(y) coloured(0, 153, 153, 255) STYLE(dottedline4, 1)
    
    endif
    
    return
    
    Nicolas thanked this post
    VCT-LH.itf vct-lh.png vct-lh.png
    #238692 quote
    @toniyecla
    Participant
    New
    este indicador aúna varios conceptos SMC (Smart Money Concepts) / ICT (The Inner Circle Trader) como Kill Zones, Silver Bullet Hours o primer FVG de la sesión LONDON y NY (9.00 y 15.30 hora española) paso el código “tal cual” pero lo mantengo en permanente revisión y mejora a lo largo del tiempo
    // Author: toniyecla
    
    // basado en los conceptos de The Inner Circle Trader - https://www.youtube.com/@InnerCircleTrader
    
    
    once fvg = 1
    once opacidad = 1
    once NbBar = 1
    MyDay=openday
    dayminutes = 1440*(MyDay-MyDay[1])
    MyHour=openhour
    hourminutes = 60*(MyHour-MyHour[1])
    MyMin=openminute
    barminutes = MyMin - MyMin[1] + hourminutes + dayminutes
    barminutes=abs(barminutes)
    Mybarminutes = lowest[NbBar](barminutes)[1]
    
    if (Mybarminutes <= 60 and opensecond = 0) then
    
    periodos = 60 / Mybarminutes
    
    if (opensecond <> opensecond[1]) then
    periodos = 60 * 4
    endif
    
    //// KILL ZONES
    
    // ICT Asian Kill Zone (08:00 PM - 10:00 PM, NY UTC -4)
    asian = 22 + diferenciahoraria
    // ICT London Kill Zone (02:00 AM - 05:00 AM, NY UTC -4)
    london = 5 + diferenciahoraria
    // ICT New York Kill Zone (07:00 AM - 09:00 AM, NY UTC -4)
    ny = 9 + diferenciahoraria
    // ICT London Close Kill Zone (10:00 AM - 12:00 PM, NY UTC -4)
    londonclose = 12 + diferenciahoraria
    
    if (asian > 23) then
    asian = asian - 24
    endif
    
    if (london > 23) then
    london = london - 24
    endif
    
    if (ny > 23) then
    ny = ny - 24
    endif
    
    if (londonclose > 23) then
    londonclose = londonclose - 24
    endif
    
    // BACKGROUND
    
    if drawbackground then
    if (hour[1] = asian - 2 or hour[1] = asian - 1) then
    backgroundcolor(0, 0, 0, 16 * opacidad)
    endif
    if (hour[1] = london - 3 or hour[1] = london - 2 or hour[1] = london - 1) then
    backgroundcolor(0, 64, 0, 24 * opacidad)
    endif
    if (hour[1] = ny - 2 or hour[1] = ny - 1) then
    backgroundcolor(0, 0, 64, 32 * opacidad)
    endif
    if (hour[1] = londonclose - 2 or hour[1] = londonclose - 1) then
    backgroundcolor(0, 64, 0, 24 * opacidad)
    endif
    endif
    
    // AREAS
    
    if drawareas then
    if (hour[1] = asian and minute[1] = 0) or (hour[1] = london and minute[1] = 0) or (hour[1] = ny and minute[1] = 0) or (hour[1] = londonclose and minute[1] = 0) then
    if (hour[1] = london) then
    x0 = barindex[periodos * 3]
    y0 = highest[periodos * 3](high[1])
    x1 = barindex[1]
    y1 = lowest[periodos * 3](low[1])
    else
    x0 = barindex[periodos * 2]
    y0 = highest[periodos * 2](high[1])
    x1 = barindex[1]
    y1 = lowest[periodos * 2](low[1])
    endif
    
    DRAWRECTANGLE(x0, y0, x1, y1) coloured(255, 255, 255, 96) bordercolor(255, 255, 255, 0)
    endif
    endif
    
    // SIGNAL
    
    if drawsignals then
    if (IsLastBarUpdate = 1) then
    if (hour[1] = asian - 2 or hour[1] = asian - 1) then
    DRAWRECTANGLE(-5, -24, -138, -40) coloured(255, 255, 255, 255) bordercolor(255, 255, 255, 0) anchor(TOPRIGHT)
    drawtext("ASIAN KILL ZONE", -71, -31, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    if (hour[1] = london - 3 or hour[1] = london - 2 or hour[1] = london - 1) then
    DRAWRECTANGLE(-5, -24, -138, -40) coloured(255, 255, 255, 255) bordercolor(255, 255, 255, 0) anchor(TOPRIGHT)
    drawtext("LONDON KILL ZONE", -71, -31, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    if (hour[1] = ny - 2 or hour[1] = ny - 1) then
    DRAWRECTANGLE(-5, -24, -138, -40) coloured(255, 255, 255, 255) bordercolor(255, 255, 255, 0) anchor(TOPRIGHT)
    drawtext("NEW YORK KILL ZONE", -71, -31, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    if (hour[1] = londonclose - 2 or hour[1] = londonclose - 1) then
    DRAWRECTANGLE(-5, -24, -138, -40) coloured(255, 255, 255, 255) bordercolor(255, 255, 255, 0) anchor(TOPRIGHT)
    drawtext("LONDON CLOSE KILL ZONE", -71, -31, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    endif
    endif
    
    //// SILVER BULLET
    
    // The London Open Silver Bullet (03:00 AM - 04:00 AM, NY UTC -4)
    london = 4 + diferenciahoraria
    // The AM session Silver Bullet (10:00 AM - 11:00 AM, NY UTC -4)
    am = 11 + diferenciahoraria
    // The PM session Silver Bullet (02:00 PM - 03:00 PM, NY UTC -4)
    pm = 15 + diferenciahoraria
    
    if (london > 23) then
    london = london - 24
    endif
    
    if (am > 23) then
    am = am - 24
    endif
    
    if (pm > 23) then
    pm = pm - 24
    endif
    
    // BACKGROUND
    
    if drawbackground then
    if (hour[1] = london - 1) then
    backgroundcolor(255, 255, 0, 24 * opacidad)
    endif
    if (hour[1] = am - 1) then
    backgroundcolor(255, 255, 0, 24 * opacidad)
    endif
    if (hour[1] = pm - 1) then
    backgroundcolor(255, 255, 0, 24 * opacidad)
    endif
    endif
    
    // AREAS
    
    if drawareas then
    if (hour[1] = london and minute[1] = 0) or (hour[1] = am and minute[1] = 0) or (hour[1] = pm and minute[1] = 0) then
    x0 = barindex[periodos]
    y0 = highest[periodos](high[1])
    x1 = barindex[1]
    y1 = lowest[periodos](low[1])
    
    DRAWRECTANGLE(x0, y0, x1, y1) coloured(0, 0, 0, 0) bordercolor(0, 0, 0, 64) STYLE(dottedline1, 1)
    endif
    endif
    
    // SIGNAL
    
    if drawsignals then
    if (IsLastBarUpdate = 1) then
    if (hour[1] = london - 1) then
    DRAWRECTANGLE(-5, -5, -138, -21) coloured(0, 0, 0, 0) bordercolor(0, 0, 0, 255) STYLE(dottedline1, 1) anchor(TOPRIGHT)
    drawtext("LONDON SILVER BULLET", -71, -12, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    if (hour[1] = am - 1) then
    DRAWRECTANGLE(-5, -5, -138, -21) coloured(0, 0, 0, 0) bordercolor(0, 0, 0, 255) STYLE(dottedline1, 1) anchor(TOPRIGHT)
    drawtext("AM SESSION SILVER BULLET", -71, -12, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    if (hour[1] = pm - 1) then
    DRAWRECTANGLE(-5, -5, -138, -21) coloured(0, 0, 0, 0) bordercolor(0, 0, 0, 255) STYLE(dottedline1, 1) anchor(TOPRIGHT)
    drawtext("PM SESSION SILVER BULLET", -71, -12, SansSerif, Standard, 8) coloured(0, 0, 0, 255) anchor(TOPRIGHT)
    endif
    endif
    endif
    
    //// FVG
    
    if drawfvg then
    if (hour[1] = 9 and minute[2] = 0) or (hour[1] = 15 and minute[2] = 30 + Mybarminutes) then
    fvg = 0
    endif
    
    alcista = close[2] > open[2]
    
    if (alcista) then
    maximo = low[1]
    minimo = high[3]
    
    if (maximo-minimo > rangofvg) then
    if (fvg = 1) then
    drawrectangle(barindex[2], maximo, barindex + 1, minimo) coloured (0,157,157,32) bordercolor (0,153,153,0)
    if (maximo-minimo > rangosegmentosfvg) then
    drawsegment(barindex[2], maximo - (maximo - minimo) / 2, barindex + 1, maximo - (maximo - minimo) / 2) coloured (255,255,255,96)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 4, barindex + 1, maximo - (maximo - minimo) / 4) coloured (255,255,255,96)
    drawsegment(barindex[2], minimo + (maximo - minimo) / 4, barindex + 1, minimo + (maximo - minimo) / 4) coloured (255,255,255,96)
    endif
    else // opening fvg
    drawrectangle(barindex[2], maximo, barindex + 10000, minimo) coloured (0,157,157,24) bordercolor (0,153,153,0)
    if (maximo-minimo > rangosegmentosfvg) then
    drawsegment(barindex[2], maximo - (maximo - minimo) / 2, barindex + 1, maximo - (maximo - minimo) / 2) coloured (255,255,255,96)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 4, barindex + 1, maximo - (maximo - minimo) / 4) coloured (255,255,255,96)
    drawsegment(barindex[2], minimo + (maximo - minimo) / 4, barindex + 1, minimo + (maximo - minimo) / 4) coloured (255,255,255,96)
    endif
    endif
    
    if (maximo-minimo > 1.5 or maximo < 10000) then // dibuja también el siguiente en caso de ser muy pequeño, <10000 evita el SP500
    fvg = 1
    endif
    endif
    else
    maximo = low[3]
    minimo = high[1]
    
    if (maximo-minimo > rangofvg) then
    if (fvg = 1) then
    drawrectangle(barindex[2], maximo, barindex + 1, minimo) coloured (255,0,0,32) bordercolor (255,102,102,0)
    if (maximo-minimo > rangosegmentosfvg) then
    drawsegment(barindex[2], maximo - (maximo - minimo) / 2, barindex + 1, maximo - (maximo - minimo) / 2) coloured (255,255,255,96)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 4, barindex + 1, maximo - (maximo - minimo) / 4) coloured (255,255,255,96)
    drawsegment(barindex[2], minimo + (maximo - minimo) / 4, barindex + 1, minimo + (maximo - minimo) / 4) coloured (255,255,255,96)
    endif
    else // opening fvg
    drawrectangle(barindex[2], maximo, barindex + 10000, minimo) coloured (255,0,0,24) bordercolor (255,102,102,0)
    if (maximo-minimo > rangosegmentosfvg) then
    drawsegment(barindex[2], maximo - (maximo - minimo) / 2, barindex + 1, maximo - (maximo - minimo) / 2) coloured (255,255,255,96)
    drawsegment(barindex[2], maximo - (maximo - minimo) / 4, barindex + 1, maximo - (maximo - minimo) / 4) coloured (255,255,255,96)
    drawsegment(barindex[2], minimo + (maximo - minimo) / 4, barindex + 1, minimo + (maximo - minimo) / 4) coloured (255,255,255,96)
    endif
    endif
    
    if (maximo-minimo > 1.5 or maximo < 10000) then // dibuja también el siguiente en caso de ser muy pequeño, <10000 evita el SP500
    fvg = 1
    endif
    endif
    endif
    endif
    
    //// CLOSING LEVELS
    
    if drawclosinglevels then
    // linea en precio post-cierre a las 17.45 hora europea
    if (hour[1] = 17 and minute[1] = 45 + Mybarminutes) or (hour[1] = 18 and minute[1] = 0 and Mybarminutes = 15) then
    drawray(barindex[2], close[2], barindex[1], close[2]) coloured(0, 128, 0, 64) STYLE(dottedline3, 1)
    endif
    
    // linea en precio post-cierre a las 16.15 hora americana
    if (hour[1] = 22 and minute[1] = 15 + Mybarminutes) then
    drawray(barindex[2], close[2], barindex[1], close[2]) coloured(0, 0, 128, 64) STYLE(dottedline3, 1)
    endif
    endif
    
    endif
    
    return
    
    Nicolas thanked this post
    ICT-captura-01.png ICT-captura-01.png ICT-captura-02.png ICT-captura-02.png ICT-variables.png ICT-variables.png ICT.itf
    #238831 quote
    @toniyecla
    Participant
    New
    Una pequeña actualización: esta tercera versión marca el HIGH y el LOW de la sesión de ASIA con una línea
    // Author: toniyecla
    
    // VARIABLES A AÑADIR
    // EspHorarioVerano (boolean) false
    // NYHorarioVerano (boolean) false
    // LunchTime (boolean) true
    // AsianMaxMin (boolean) false
    
    // DEFPARAM DrawOnLastBarOnly = True
    ONCE opacidad = 1
    
    // ASIA (solo Tokio)
    
    if EspHorarioVerano then
    ONCE AsianStart       = 020000
    ONCE AsianEnd         = 080000
    ONCE AsianLunchStart  = 043000
    ONCE AsianLunchEnd    = 053000
    else
    ONCE AsianStart       = 010000
    ONCE AsianEnd         = 070000
    ONCE AsianLunchStart  = 033000
    ONCE AsianLunchEnd    = 043000
    endif
    
    ONCE AsianSession  = 0
    ONCE AsianHigh     = 0
    ONCE AsianLow      = 999999
    ONCE AsianBarindex = 999999
    
    if time > AsianStart and time <= AsianEnd then
    AsianSession  = 1
    AsianHigh     = max(AsianHigh, high)
    AsianLow      = min(AsianLow, low)
    AsianBarindex = min(AsianBarindex, barindex[1])
    
    backgroundcolor(0, 0, 0, 16 * opacidad)
    endif
    
    if LunchTime then
    if time > AsianLunchStart and time <= AsianLunchEnd then
    backgroundcolor(0, 0, 0, 8 * opacidad)
    endif
    endif
    
    if AsianMaxMin and time > AsianEnd and AsianSession = 1 then
    drawsegment(AsianBarindex, AsianHigh, barindex, AsianHigh) coloured(0, 0, 0, 64)
    drawsegment(AsianBarindex, AsianLow, barindex, AsianLow) coloured(0, 0, 0, 64)
    
    AsianSession  = 0
    AsianHigh     = 0
    AsianLow      = 999999
    AsianBarindex = 999999
    endif
    
    // EUROPE
    
    ONCE EuropeStart      = 090000
    ONCE EuropeEnd        = 173000
    ONCE EuropeLunchStart = 130000
    ONCE EuropeLunchEnd   = 130200
    
    if (time > EuropeStart and time <= EuropeEnd) then
    backgroundcolor(0, 64, 0, 24 * opacidad)
    endif
    
    if (LunchTime) then
    if time > EuropeLunchStart and time <= EuropeLunchEnd then
    backgroundcolor(0, 64, 0, 16 * opacidad)
    endif
    endif
    
    // USA
    
    if (EspHorarioVerano = NYHorarioVerano) then
    ONCE USAStart         = 153000
    ONCE USAEnd           = 220000
    ONCE USALunchStart    = 174500
    ONCE USALunchEnd      = 193000
    else
    ONCE USAStart         = 143000
    ONCE USAEnd           = 210000
    ONCE USALunchStart    = 164500
    ONCE USALunchEnd      = 183000
    endif
    
    if (time > USAStart and time <= USAEnd) then
    backgroundcolor(0, 0, 64, 32 * opacidad)
    endif
    
    // horario estimado NYSE no hace pausa oficial para comer
    if (LunchTime) then
    if time > USALunchStart and time <= USALunchEnd then
    backgroundcolor(0, 0, 64, 16 * opacidad)
    endif
    endif
    
    // OVERLAPS
    
    if time > USAStart and time <= EuropeEnd then
    backgroundcolor(0, 48, 64, 32 * opacidad)
    endif
    
    RETURN
    
    Sesiones-v3.itf sesiones_v3.png sesiones_v3.png
Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.

subir adjuntos al compartir indicadores


Soporte Plataforma: Gráficos, Datos y Brokers

New Reply
Author
author-avatar
@toniyecla @toniyecla Participant
Summary

This topic contains 13 replies,
has 4 voices, and was last updated by @toniyecla
1 year, 4 months ago.

Topic Details
Forum: Soporte Plataforma: Gráficos, Datos y Brokers
Language: Spanish
Started: 10/03/2024
Status: Active
Attachments: 17 files
Logo Logo
Loading...