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 cmoran13, 04-16-2026, 01:02 PM
    0 responses
    43 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    25 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    162 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    158 views
    2 likes
    Last Post CaptainJack  
    Working...
    X