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

Range Bar volume/time in seconds

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

    Range Bar volume/time in seconds

    I have not found an indicator using range bars incorporating volume and time in the following way: Take the total volume of the range bar and divide by time (in seconds) elapsed during the creation of that range bar plotted as a line in a separate panel. I have tried this myself but get method errors. Can anyone point me in the direction where this has been done before on this forum or something very similar?

    #2
    Hello,

    Thanks for the forum post.

    Unfortunately I'm not familiar with this being done before. However what I can offer is to have you post the code your getting errors on and see if I can get you headed in the right direction.

    I look forward to assisting you further.

    Comment


      #3
      Thanks Brett, I took the AvgTimePerBar indicator in the 6.5 indicators forum and changed the following:
      // AverageTime.Set(((double)((numHours*60+((Time[0].Minute)-(Time[Period].Minute)))*60+((Time[0].Second)-(Time[Period].Second))))/60/Period);

      to this...
      AverageTime.Set(((double)((numHours*60+((Time[0].Minute)-(Time[Period].Minute)))*60+((Time[0].Second)-(Time[Period].Second))))/VOL[0]);

      the only change was to the very end where 60/Period was replaced with VOL[0]

      and I get error cs0021 Cannot apply indexing with [] to an expression of type 'method group'
      Last edited by WES107; 05-03-2011, 04:51 PM.

      Comment


        #4
        Hello,

        Thanks for posting:

        VOL[0] needs to be Volume[0].

        Let me know if I can be of further assistance.

        Comment


          #5
          Thanks Brett, amazing how something so simple can drive you so crazy!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by DanielSanMartin, Yesterday, 02:37 PM
          2 responses
          12 views
          0 likes
          Last Post DanielSanMartin  
          Started by DJ888, 04-16-2024, 06:09 PM
          4 responses
          12 views
          0 likes
          Last Post DJ888
          by DJ888
           
          Started by terofs, Today, 04:18 PM
          0 responses
          11 views
          0 likes
          Last Post terofs
          by terofs
           
          Started by nandhumca, Today, 03:41 PM
          0 responses
          7 views
          0 likes
          Last Post nandhumca  
          Started by The_Sec, Today, 03:37 PM
          0 responses
          3 views
          0 likes
          Last Post The_Sec
          by The_Sec
           
          Working...
          X