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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    80 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    54 views
    0 likes
    Last Post CarlTrading  
    Working...
    X