Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Range Bar volume/time in seconds
Collapse
X
-
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? -
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.BrettNinjaTrader Product Management
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
596 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
343 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
556 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
554 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment