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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
81 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
41 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
64 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
66 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
54 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment