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 sjsj2732, Yesterday, 04:31 AM
    0 responses
    39 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    290 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    289 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    135 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    96 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X