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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    64 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    59 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    62 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    51 views
    0 likes
    Last Post CarlTrading  
    Working...
    X