Volume[0] < (MAX(14)[0] * 0.2 ?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Volume percentage?
Collapse
X
-
Hello ezrollin,
You could call the SMA if you want an average of the volume.
SMA(Volume, 14)[0]
Or you could calculate this yourself.
long aggregatedVolume = 0;
for (int i = 0; i < 14; ++i)
aggregatedVolume += Volume[i];
Print(aggregatedVolume / 14);Chelsea B.NinjaTrader Customer Service
- Likes 1
Comment
-
Hello ezrollin,
In the Strategy Builder you could use the SMA with the Volume as the Input series.
Math is only available to Series with the offset. The issue trying to aggregate the volume and divide by number of bars would be aggregating only the last 14 bars.
Something like this would likely need to be done by hand in an unlocked script.Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
86 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
151 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
79 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
52 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
59 views
0 likes
|
Last Post
|

Comment