Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plot Candlesticks on Indicator window NT8

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

    Plot Candlesticks on Indicator window NT8

    Hi,

    I wish to draw candles on the indicator window, like the "Order Flow Cumulative Delta" indicator does.
    I found "AddBar" function, but that seems to be only for BarTypes.

    In short my goal is to plot candles from NYSE Up Issues and NYSE Down Issues (^ADV and ^DECL instruments plus other similar tick indexes).
    I can calculate the ratio between them, but I wish to see this data as a Candle (High, Low, Open, Close) if possible.

    Code:
    // ...
    AddDataSeries("^ADV", this.BarsPeriod);      // NYSE Up Issues
    AddDataSeries("^DECL", this.BarsPeriod);    // NYSE Down Issues
    if (BarsInProgress == 1) {
        ratio = ((Closes[1][0] / Closes[2][0]) - 1) * 100;
    }
    // ...
    Thank you in advance.

    #2
    Hello Gorkhaan thanks for your post.

    There is an example here for a Heiken Ashi bar type developed as an indicator. You can use this as a starting point for rendering bars through an indicator:

    NinjaTrader 8 natively provides Heiken Ashi as a bar type for most common bar types (minute, tick, volume, second, day, week, month, year). This Heiken Ashi indicator is provided for the Range, Renko and any custom bar types that may be added. The indicator performs in the same manner as the NinjaTrader 7 version. 4-27-18 […]


    Kind regards.

    Comment


      #3
      Thank you for the swift reply. I give it a go and share my results.

      G.

      Comment


        #4
        I spent some time on it. I am satisfied how it looks. I share these on the User Apps too.

        Thanks again!
        Attached Files

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        596 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        343 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        556 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        554 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X