Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plot My DataSeries from a Strategy

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

    Plot My DataSeries from a Strategy

    I am basing my trades on a data series I have constructed and stored in a data series "MyOpen".

    If I add the command:
    ADX(14).Panel = 1;
    Add(ADX(14);

    I can plot the ADX in panel 1. However, my trades are based on ADX(MyOpen,14). I would like to plot this rather than the base series.

    I get an error if I try to use the above in the the Initialize section. Anyone know of a solution?

    #2
    A workaround can be just moving the DataSeries calculations into an indicator. The indicator will just return the value of ADX(MyOpen, 14). This way you can add it to your strategy with no problem.

    Something like:
    Code:
    Add(CustomADX(14));
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      The problem is a bit more complex than just adding code to an indicator.

      The MyOpen data series is a calculated open from a 1 minute bar added to the Strategy that is placed on a 30 minute bar chart. I don't think this is possible to do in an indicator.

      What I need to see is the computed ADX in the plot.

      The code I am using to do this in the strategy:
      protected override void Initialize()
      {
      CalculateOnBarClose = true;
      Add(PeriodType.Minute,1);
      }
      protected override void OnBarUpdate()
      if (MyOpen == null)
      {
      MyOpen = new DataSeries(SMA(BarsArray[0], 70));
      }

      if(BarsInProgress == 1 && FirstTickOfBar && FirstBar) //1 min bar
      {
      MyOpen.Set(Closes[1][0]);

      double X = ADX(MyOpen,14);
      FirstBar = false;
      }
      if(BarsInProgress == 0 && FirstTickOfBar) // 30 Min Bar
      {
      FirstBar = true;

      }

      Comment


        #4
        Guy..
        I don't think you can add custom plots from a strategy.
        However some people use draw-line, or draw-dot etc. as a work-around.
        CLunky for sure, but better than nothing

        ATIuser was kind enought to post an example here

        Comment


          #5
          zoltran is correct. You cannot add a plot from a strategy.
          Josh P.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          79 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