Sistemas programados sobre gráfico HA

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #26119 quote
    David Somogyi
    Participant
    Average

    Hola,

    Alguien me puede decir es posible programar un sistema de trading directamente en un gráfico de velas heikin ashi, o se realiza sobre gráfico de velas normales japonesas.

    He leído que produce errores programar sobre gráficos HA.

     

    Gracias

    #26396 quote
    Nicolas
    Keymaster
    Master

    Es posible hacer sistema de comercio automatizado con candelabros Heikin Ashi. Tendrás que construirte este tipo de candelabros directamente en tu código:

    if barindex>1 then
    haclose=(open+close+low+high)/4
    haopen=(haopen[1]+haclose[1])/2
    xHigh = Max(haOpen, haClose)
    xLow = Min(haOpen, haClose)
    hahigh = Max(High,xHigh)
    halow = Min(Low,xLow)
    endif
    
    RETURN haopen as "haopen", hahigh as "hahigh", halow as "halow", haclose as "haclose"
    #26559 quote
    David Somogyi
    Participant
    Average

    Gracias por tu ayuda Nicolas.

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

Sistemas programados sobre gráfico HA


ProOrder: Trading Automático y Backtesting

New Reply
Author
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by David Somogyi
9 years ago.

Topic Details
Forum: ProOrder: Trading Automático y Backtesting
Language: Spanish
Started: 02/23/2017
Status: Active
Attachments: No files
Logo Logo
Loading...