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 lightsun47, Today, 03:51 PM
          0 responses
          4 views
          0 likes
          Last Post lightsun47  
          Started by 00nevest, Today, 02:27 PM
          1 response
          8 views
          0 likes
          Last Post 00nevest  
          Started by futtrader, 04-21-2024, 01:50 AM
          4 responses
          44 views
          0 likes
          Last Post futtrader  
          Started by Option Whisperer, Today, 09:55 AM
          1 response
          13 views
          0 likes
          Last Post bltdavid  
          Started by port119, Today, 02:43 PM
          0 responses
          8 views
          0 likes
          Last Post port119
          by port119
           
          Working...
          X