Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 rhyminkevin, Today, 04:58 PM
    1 response
    41 views
    0 likes
    Last Post Anfedport  
    Started by iceman2018, Today, 05:07 PM
    0 responses
    5 views
    0 likes
    Last Post iceman2018  
    Started by lightsun47, Today, 03:51 PM
    0 responses
    7 views
    0 likes
    Last Post lightsun47  
    Started by 00nevest, Today, 02:27 PM
    1 response
    14 views
    0 likes
    Last Post 00nevest  
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    49 views
    0 likes
    Last Post futtrader  
    Working...
    X