将股票价格从bloomberg导入Google表格

时间:2018-05-18 23:20:03

标签: xml google-sheets stockquotes

我正试图将股票价格导入我的谷歌表格,不幸的是,谷歌财经目前不支持奥斯陆证券交易所的股票。我一直在线浏览,但没有一个代码示例有效。

E.g。

=IMPORTXML(ʺhttps://www.bloomberg.com/quote/GJF:NOʺ,ʺ//span[@class='priceText__1853e8a5']ʺ)

应该是

有人建议我如何使这项工作?

2 个答案:

答案 0 :(得分:1)

这对我有用。示例here。很确定您的问题是上面提到的报价类型。

apply plugin: 'com.diffplug.gradle.eclipse.mavencentral'
eclipseMavenCentral {
  release '4.7.0', {
    compile 'org.eclipse.swt'
    useNativesForRunningPlatform()
  }
}

答案 1 :(得分:1)

ImportHTML为我工作。 这将返回美元现货黄金价格

=Round(Index(ImportHTML("http://www.bloomberg.com/markets/commodities/futures/metals/","table",1),4,3),2)

和该GBP / EUR

=round(Index(ImportHTML("http://www.bloomberg.com/markets/currencies/cross-rates","table",1),3,5),5)

ImportHTML需要页面源,页面上的表格以及行/列坐标

希望有帮助!