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, 05-11-2026, 05:56 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    186 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    345 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    267 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X