Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Higher timeframe displaying on lower timeframe

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

    Higher timeframe displaying on lower timeframe

    Hi,

    as I come from mql, I wonder how to program an indicator in a way that, say I want to display 5 min indicator on 1 min timeframe, the value of the higher timeframe bar is the same on all lower timeframe bars belonging to the higher timeframe, i.e. 5x 1min bars in one 5min bar.

    Right now with the attached code, the indicator is only displayed correctly at calling but from that time on, each bar is drawn differently instead of changing all lower timeframe bars belonging to the higher timeframe.

    So, in short, it seems to be a displaying problem as the right value is called. Any suggestions highly appreciated.


    if (CurrentBars[0] <= BarsRequired || CurrentBars[1] <= BarsRequired) return;

    if (BarsInProgress == 0)
    {
    //call the data from another indicator
    UP.Set(B2CForceIndexSlope(BarsArray[1],period).UP[0]);
    DOWN.Set(B2CForceIndexSlope(BarsArray[1],period).DOWN[0]);
    }

    #2
    claudio_thomas,

    If you could send this indicator along with the B2CForceIndexSlope indicator it would be helpful in solving your issue. If you don't want anyone getting this code from the forum you can send it to Support at Ninjatrader dot com with ATTN : Adam in the message body. We don't publish our users code.

    Right now I don't see anything wrong with your code.
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    566 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    330 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    547 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    548 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X