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 charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        72 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        152 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        162 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        100 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        288 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X