Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plotting higher time frame MA

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

    Plotting higher time frame MA

    I am trying to plot 13 period MA from 15 min chart on a 5 min chart. But for some reason the code does not work. Can someone please help me with what am I doing wrong here?

    protected override void Initialize()
    {
    Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));
    Add(PeriodType.Minute, 15);
    Overlay = true;
    }


    protected override void OnBarUpdate()
    {
    if (CurrentBars[0] <= BarsRequired || CurrentBars[1] <= BarsRequired || CurrentBars[2] <= BarsRequired)
    return;

    if (BarsInProgress == 0)

    {
    Plot0.Set(SMA(BarsArray[1], 13)[0]);

    }
    }

    #2
    Hello pandyav ,

    It looks OK. Are there any error messages in log tab of control center?

    One thing I would change is this statement:
    Code:
    if (CurrentBars[0] <= BarsRequired || CurrentBars[1] <= BarsRequired || CurrentBars[2] <= BarsRequired)
    return;
    Since you only have a primary and secondary series, there is never a Currentbars[2] defined. I would remove that check here:
    Code:
    if (CurrentBars[0] <= BarsRequired || CurrentBars[1] <= BarsRequired)
    return;
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      It works now and I can see the SMA line. But the question is why the line is in 'step by step' fashion. It should be a smooth line since it is SMA. Any idea? I am attaching the latest picture.
      Attached Files

      Comment


        #4
        Pandyav,

        It's because you're plotting a higher time frame SMA on a smaller time frame chart. each 15 minute bar takes up 3 five minute bars, so the value will remain the same for 3 bars and then move.

        VT

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        80 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        45 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        29 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        32 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        66 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X