Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

SMA of Volume

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    SMA of Volume

    I think I asked this question once before but i have searched and I can not find it.

    Assume I have a strategy that is daytrading a single day's information based on tick price and tick volume.

    I want to add some "constants" to my strategy.

    For example, I use a Pivot Point number or two, certain medium term highs/lows, and a couple of moving averages.


    Is there a simple way, at the beginning of each trading session, for me to calculate a 10 day, 30 day, 60 day and 90 day SMA Volume? Whenever I load my day bars (index 1) as follows:

    Volumes[1][0] or Volumes [1] [1] etc...

    into the following:

    double avgVolume = SMA (Volumes[1][0], 30) [0];

    I generate the error that my IData series can not be forced into a double in this manner (is more or less what it says).


    Also, I am not sure that I have enough day bars loaded to support these calcs, and I am not sure that I want to for performance reasons.

    Thanks in advance for any advice,

    Andrew
    Last edited by alabell; 09-04-2012, 02:09 PM.

    #2
    You can use the VOL() method with the added series and then nest this inside of the SMA()

    Code:
    double avgVolume = SMA(VOL(BarsArray[1]), 30)[0];
    You can also just use the Volume Moving Average (VOLMA):

    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    47 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    22 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    15 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    21 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    23 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X