Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

custom heiken ashi calculation for open always equates to zero?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    custom heiken ashi calculation for open always equates to zero?

    Hi... I have a data series in my strategy for calculating heiken ashi candles. It is this one:
    In this case TradeTicker is just a user input to indicate what is being traded.
    In this case, the data series is the 2nd data series added to the chart after the primary... so it is data series 2 (the strat has a total of 3 dataseries... 0, 1 and 2)

    AddDataSeries(TradeTicker, Data.BarsPeriodType.Minute, 5);


    here is the dataloaded portion

    haOpen = new double[BarsArray[2].Count];
    haHigh = new double[BarsArray[2].Count];
    haLow = new double[BarsArray[2].Count];
    haClose = new double[BarsArray[2].Count];



    then... I have a snippet for calculating opens and closes... but for some reason my open is equating to 0 for all bars.
    my close comes out OK... but for some reason the open is always 0.

    Can anyone tell me what I'm missing here?

    haClose[0] = (Opens[2][0] + Highs[2][0] + Lows[2][0] + Closes[2][0]) / 4;

    if(CurrentBars[2] == 0)
    {
    haOpen[0] = (Opens[2][0] + Closes[2][0]) / 2;
    }
    else
    {
    haOpen[0] = (haOpen[1] + haClose[1]) / 2;
    }

    haHigh[0] = Math.Max(Highs[2][0], Math.Max(haOpen[0], haClose[0]));
    haLow[0] = Math.Min(Lows[2][0], Math.Min(haOpen[0], haClose[0]));​




    Thank you.

    #2
    I can't figure out how to delete a post... but this can be ignored. I figured it out.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    87 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    118 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X