Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Accessing Point and Figure data...

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

    Accessing Point and Figure data...

    How do you get the PnF boxsize, and reversal in NT8 NinjaScript? Before it was BarsPeriod.Value, and BarsPeriod.Value2. Those are returning the wrong value now.

    #2
    Hello,

    Can you please clarify what appears to be wrong with the values? Are they not updating at all? I am seeing the accurate Box size and Reversal size with the following Prints:

    Code:
                Print(BarsPeriod.Value);
                Print(BarsPeriod.Value2);
    Dave I.NinjaTrader Product Management

    Comment


      #3
      In my script (which is a DrawingTool, not an Indicator):

      Code:
      private BarsPeriod bp;
      In OnStateChange() I have:
      Code:
      bp = new BarsPeriod();
      in my OnMouseDown() I have
      Code:
      Print("boxSize: "+bp.Value+" -- reversal: "+bp.Value2);
      my ouput is:
      Code:
      boxSize: 1 -- reversal: 1
      My setttings are attached
      Attached Files
      Last edited by funk101; 10-09-2015, 11:09 AM.

      Comment


        #4
        I see now. What you are doing is instantiating a new BarsPeriod object, but you are not doing anything with the Box Size and Reversal values of that particular object. What you need is an instance of ChartControl related to the chart on which the object resides. An instance of ChartControl will have a BarsPeriod object attached to it which should carry the correct values, and you can just assign a reference to that existing BarsPeriod object to your bp object.

        For example, I was able to get this working in a modified version of the @Text drawing tool as follows:

        Code:
        		private void DrawText(ChartControl chartControl)
        		{
                             Print(chartControl.BarsPeriod.Value);
                             ....................
        Dave I.NinjaTrader Product Management

        Comment


          #5
          Sweet, thanks!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by fx.practic, 10-15-2013, 12:53 AM
          5 responses
          5,403 views
          0 likes
          Last Post Bidder
          by Bidder
           
          Started by Shai Samuel, 07-02-2022, 02:46 PM
          4 responses
          94 views
          0 likes
          Last Post Bidder
          by Bidder
           
          Started by DJ888, Yesterday, 10:57 PM
          0 responses
          6 views
          0 likes
          Last Post DJ888
          by DJ888
           
          Started by MacDad, 02-25-2024, 11:48 PM
          7 responses
          158 views
          0 likes
          Last Post loganjarosz123  
          Started by Belfortbucks, Yesterday, 09:29 PM
          0 responses
          8 views
          0 likes
          Last Post Belfortbucks  
          Working...
          X