Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
convert volume to average volume
Collapse
X
-
Hello peterhxu7,
Thank you for your post.
Are you looking for a comparison of the first five minutes' volume today against yesterday's first five minutes' volume?
A basic volume average can be calculated with SMA, for example: SMA(Volume, 14)[0]. This would give you the 14 period moving average of the volume.
-
not really. i would like to set first 5 minute volume from 9:31am to 9:35am to SMA(Volume, 14)[0]
something like
VOL()[0] at 9:31 = SMA(Volume, 14)[0]
VOL()[0] at 9:32 = SMA(Volume, 14)[0]
VOL()[0] at 9:33 = SMA(Volume, 14)[0]
VOL()[0] at 9:34 = SMA(Volume, 14)[0]
VOL()[0] at 9:35 = SMA(Volume, 14)[0]
Comment
-
Hello peterhxu7,
Thank you for your response.
I do not beleive I fully understand but I am going to try an example here, let me know if this it what you meant.
We will take the first five minute volumes, store them in individual doubles and then average those values:
Code:if(Bars.BarsSinceSession == 5) { vol1 = Volume[4]; vol2 = Volume[3]; vol3 = Volume[2]; vol4 = Volume[1]; vol5 = Volume[0]; avgVol = (vol1 + vol2 + vol3 + vol4 +vol5)/5; }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
315 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
253 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment