我如何在盘后或盘前检索有关股票价格的信息?

How do I retrieve the information about the price of a stock during the after hours, or the pre-market?

如何在盘后或盘前检索有关股票价格的信息?例如,我可以使用公式 =googlefinance("TSLA","price") 来检索股票在正常时间的价格。但是,它不会显示下班后和开市前的价格。谢谢

我已经导出脚本并使用唯一的 sheet 公式使其工作。 pre/after 市场价值取自此 link:

上市前:

=regexextract(importxml(A1&"TSLA", "/"), "Pre Market Last([^']+)'")

售后市场:

=regexextract(importxml(A1&"TSLA", "/"), "After Market Last([^']+)'")

输出:

注:

  • 我已将 link 与代码分开,以便它也可以重复用于其他调用,但您可以直接使用它,如下所示:
=regexextract(importxml("https://app.quotemedia.com/quotetools/jsVarsQuotes.go?webmasterId=101264&symbol=TSLA", "/"), "Pre Market Last([^']+)'")

=regexextract(importxml("https://app.quotemedia.com/quotetools/jsVarsQuotes.go?webmasterId=101264&symbol=TSLA", "/"), "After Market Last([^']+)'")