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 NullPointStrategies, Yesterday, 05:17 AM
    0 responses
    59 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    133 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    73 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    45 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    50 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X