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 CarlTrading, 03-31-2026, 09:41 PM
          1 response
          84 views
          1 like
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          46 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          66 views
          2 likes
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          69 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          58 views
          0 likes
          Last Post CarlTrading  
          Working...
          X