Reputation: 28060
Average daily trading volume is obtained by this formula GOOGLEFINANCE("Symbol", "volumeavg")
on Google Spreadsheet. How is the average volume calculated? Based on how many days of moving average?
Upvotes: 2
Views: 20565
Reputation: 93
You can also do the following:
average
=average(index(query(googlefinance("AAPL","volume",today()-80,today()), "select * order by Col1 desc limit 50"),0,2))
Upvotes: 7