Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

plotting the same graph, SMA with different time frames

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

    plotting the same graph, SMA with different time frames

    Good morning,
    I would write the code of plotting on the same graph, for example 5 minutes, the SMA (14) and the SMA (14) of a time frame to 10 minutes.
    you can do it?
    Thank you.
    Ciao.
    Roberto

    #2
    Ciao Roberto, yes that would be possible with a so called MultiSeries script - as an example you can check for example into the preinstalled SampleMultiTimeFrame strategy with NinjaTrader.

    The full framework offered for MultiSeries scripting is documented here in detail in our helpguide -

    Comment


      #3
      Ciao Bertrand.
      I have already written the code looking at the sample multi time frame. It works perfectly.
      I just wanted to see on the graph, where the code runs, also the SMA different time frames. for example:

      protected override void Initialize ()
      {
      Add (PeriodType.Minute, 10);
      Add (SMA (14)) ;/ / sma time frame "0" 5 minutes
      AddSMA (14) [1], 10); / / sma of the time frame "1" 10 minutes
      }

      Roberto

      Comment


        #4
        Oh, I see - thanks. You could unfortunately not add an indicator on a specific BarsArray in for your Strategy Initialize(). Better would be then adding in a complete MultiSeries indicator that would visualize all your SMA's / timeframes.

        Comment


          #5
          OK
          Tank.
          Roberto

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          648 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          369 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          108 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          572 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          574 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X