Home > OS >  How would you get 3 month Average Volume for a stock in google sheet?
How would you get 3 month Average Volume for a stock in google sheet?

Time:08-11

I am trying to find a more efficient way to calculate the last 3 month volume for a given stock but I cant seem to find a function that would let me do. The other approach was get all volume data and add them and import it in the google sheet but it would take too long and wouldn't be as efficient. Thank you in advance.

CodePudding user response:

An example on how to calculate the last 3 months volume using GOOGLEFINANCE would be:

=GOOGLEFINANCE("NASDAQ:GOOG","volume",TODAY()-90,TODAY())

This formula would display the information like this:

enter image description here

  • Related