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 prdecast, Today, 06:07 AM
          0 responses
          3 views
          0 likes
          Last Post prdecast  
          Started by i019945nj, 12-14-2023, 06:41 AM
          3 responses
          60 views
          0 likes
          Last Post i019945nj  
          Started by TraderBCL, Today, 04:38 AM
          2 responses
          17 views
          0 likes
          Last Post TraderBCL  
          Started by martin70, 03-24-2023, 04:58 AM
          14 responses
          106 views
          0 likes
          Last Post martin70  
          Started by Radano, 06-10-2021, 01:40 AM
          19 responses
          610 views
          0 likes
          Last Post Radano
          by Radano
           
          Working...
          X