我打算利用纳斯达克的数据做一些金融研究和学习。
我想从纳斯达克检索数据,使得标题包含以下内容:
股票符号
公司名称
最后的销售
市值资本化 IPO 年
行业
工业
最后更新
我使用Python代码来获取“公司名单和股票代码”:
<ScrollViewer Grid.Row="0" ZoomMode="{x:Bind ZoomMode, Mode=OneWay}" HorizontalScrollMode="Enabled" HorizontalScrollBarVisibility="Auto">
<ListView HorizontalAlignment="Center" ItemsSource="{x:Bind ImagePages, Mode=OneWay}">
<ItemsControl.ItemTemplate>
<DataTemplate x:DataType="BitmapImage">
<Image Source="{x:Bind }" Margin="0 2" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ListView>
</ScrollViewer>
现在对于这些符号中的每一个,我想获得其他数据(如上所述)。
无论如何我能做到这一点吗?
答案 0 :(得分:1)
您是否看过pandas-datareader?您可以从那里获取其他数据。它有多个数据源,例如Google,Yahoo Finance,
http://pandas-datareader.readthedocs.io/en/latest/remote_data.html#remote-data-google