Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Plotting Pivot Points

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

    Plotting Pivot Points

    I have developed a script that plots both the daily pivot points and the pivot midpoints. I have verified the calculations for the new midpoints. I am having a problem with the plots. I cannot seem to get the plots for either the pivots or midpoints to show on the price panel. I have used the original NT Pivots code as a reference, but still no luck. Even the original pivots fail to plot. When I comment out the midpoints, the original pivots appear. Any suggestions?

    #2
    Check the Control Center Log tab --> Any errors logged?
    RayNinjaTrader Customer Service

    Comment


      #3
      Ah, yes.

      "Error on plotting indicator 'PivotMidpoints'. Please check the 'Plot'
      method: Index was outside the bonds of the array."


      I'm new to programming so I'm a bit clueless on this one. I don't see in the code where a plot is called for. My guess is the following code specifies an array that uses the values from the individual variables.

      Add(new Plot(Color.Black, "PP"));
      Add(
      new Plot(Color.Blue, "R1"));
      Add(
      new Plot(Color.Red, "S1"));
      Add(
      new Plot(Color.Blue, "R2"));
      Add(
      new Plot(Color.Red, "S2"));
      Add(
      new Plot(Color.Blue, "R3"));
      Add(
      new Plot(Color.Red, "S3"));


      Do I need to add my additional variables in the Properties area similar to the following code?



      [Browsable(false)]
      [XmlIgnore]
      public DataSeries R1
      {
      get { return Values[1]; }
      }
      ///<summary>
      ///</summary>
      [Browsable(false)]
      [XmlIgnore]
      public DataSeries R2
      {
      get { return Values[3]; }
      }

      Comment


        #4
        This post might help - http://www.ninjatrader-support.com/v...ead.php?t=3170
        RayNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Spiderbird, Today, 12:15 PM
        2 responses
        10 views
        0 likes
        Last Post Spiderbird  
        Started by WHICKED, Today, 12:45 PM
        0 responses
        3 views
        0 likes
        Last Post WHICKED
        by WHICKED
         
        Started by FrazMann, Today, 11:21 AM
        2 responses
        6 views
        0 likes
        Last Post NinjaTrader_ChristopherJ  
        Started by rjbtrade1, 11-30-2023, 04:38 PM
        2 responses
        80 views
        0 likes
        Last Post DavidHP
        by DavidHP
         
        Started by lorem, Yesterday, 09:18 AM
        5 responses
        18 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X