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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
319 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment