0

I can only get a price open for a stock on the latest trade day?

=GOOGLEFINANCE("BB","priceopen")

However, adding a date returns #NA.

=GOOGLEFINANCE("BB","priceopen", "2020/12/17")
Mauro
  • 307
  • 4
  • 8

2 Answers2

1

every day the open price will close, so if you want to know the past value for some date use:

=GOOGLEFINANCE("BB", "close", "2020/12/17")
player0
  • 124,011
  • 12
  • 67
  • 124
0

You just need to use "open" instead of "priceopen".

MattKing
  • 7,373
  • 8
  • 13