Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Highest Volume bar of the day
Collapse
X
-
Highest Volume bar of the day
I am trying to find out in my strategy if the current bar has the highest volume of the day. I have copied the CurrentDayOHL to CurrendDayVolHL to create a volume high & low volume for each bar. Its returning null. Any one has any ideasTags: None
-
Originally posted by [email protected] View PostI am trying to find out in my strategy if the current bar has the highest volume of the day. I have copied the CurrentDayOHL to CurrendDayVolHL to create a volume high & low volume for each bar. Its returning null. Any one has any ideas
You could just traverse the Volume data series looking for bars with higher volume than Volume[0].
Something like,
Code:private int ReturnHighestVolumeBar(int Lookback) { for (int indx = 0; indx < Lookback; ++indx) { if (indx < CurrentBar) if (Volume[indx] > Volume[0]) return indx; } return 0; }
-
Thank you! This make sense. Do you know of any code that uses the lookback from the start of market. Also the Volume[indx) will go back to markets beginning?
Comment
-
Hello dlespinasse50,
Thanks for writing in.
I am glad you have found additional assistance on our forums!
The barsAgo index will go back as far as the data that is given to the primary data series.
There is not a given price object or volume object that will give you the reverse order in which the price object can be referenced (starting from the beginning of the data series and ending with the last iterated bar of the data series.) If you would like to reference this data you must loop through the data in the opposite direction.
The following loop can be used as an example:
Code:for (int i = 0; i < CurrentBar-1; i++) { }
JimNinjaTrader Customer Service
Comment
-
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by birdog, 02-02-2023, 09:32 AM
|
11 responses
149 views
0 likes
|
Last Post
![]()
by birdog
Today, 08:15 PM
|
||
Started by sambathraj, Today, 07:46 PM
|
0 responses
17 views
0 likes
|
Last Post
![]()
by sambathraj
Today, 07:46 PM
|
||
Started by topa11, Today, 12:52 PM
|
2 responses
35 views
0 likes
|
Last Post
![]()
by topa11
Today, 06:30 PM
|
||
Started by torento, Yesterday, 05:43 PM
|
4 responses
88 views
0 likes
|
Last Post
![]()
by torento
Today, 06:06 PM
|
||
Started by sprks7979, Today, 05:59 PM
|
0 responses
34 views
0 likes
|
Last Post
![]()
by sprks7979
Today, 05:59 PM
|
Comment