<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Fundamental data loading does not work]]></title><description><![CDATA[<p dir="auto">Dear <a class="plugin-mentions-user plugin-mentions-a" href="http://quantiacs.com/community/uid/12">@support</a>,</p>
<p dir="auto">fundamental data loading does not work. I use</p>
<p dir="auto">market_data = qndata.stocks_load_spx_data(min_date='2005-01-01')<br />
indicators_data = fundamental.load_indicators_for(market_data)</p>
<p dir="auto">but it doesn't work, I get KeyError. Thanks in advance for your help.</p>
]]></description><link>http://quantiacs.com/community/topic/634/fundamental-data-loading-does-not-work</link><generator>RSS for Node</generator><lastBuildDate>Tue, 10 Mar 2026 09:08:18 GMT</lastBuildDate><atom:link href="http://quantiacs.com/community/topic/634.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Jan 2025 18:30:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Fundamental data loading does not work on Tue, 21 Jan 2025 15:23:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="http://quantiacs.com/community/uid/7">@lookman</a> Hello. Try cloning your strategy and running it again. It should work correctly with the new version of the qnt library.</p>
<pre><code class="language-python">import qnt.data as qndata
import qnt.data.secgov_fundamental as fundamental

market_data = qndata.stocks.load_spx_data(min_date="2005-01-01")

indicators_data = fundamental.load_indicators_for(market_data, indicator_names=['roe'])

display(indicators_data.sel(field="roe").to_pandas().tail(2))
display(indicators_data.sel(asset='NAS:AAPL').to_pandas().tail(2))
display(indicators_data.sel(asset=['NAS:AAPL']).sel(field="roe").to_pandas().tail(2))
</code></pre>
<p dir="auto"><a href="https://quantiacs.com/documentation/en/data/fundamental.html" rel="nofollow ugc">https://quantiacs.com/documentation/en/data/fundamental.html</a></p>
]]></description><link>http://quantiacs.com/community/post/1857</link><guid isPermaLink="true">http://quantiacs.com/community/post/1857</guid><dc:creator><![CDATA[Vyacheslav_B]]></dc:creator><pubDate>Tue, 21 Jan 2025 15:23:49 GMT</pubDate></item><item><title><![CDATA[Reply to Fundamental data loading does not work on Mon, 20 Jan 2025 18:58:04 GMT]]></title><description><![CDATA[<p dir="auto">Dear <a class="plugin-mentions-user plugin-mentions-a" href="http://quantiacs.com/community/uid/7">@lookman</a>,<br />
can you please share part of code where secgov_load_indicators() functions is called and throws error (with full exception)? Keep in mind that this function is actually load_indicators() function from secgov_indicators.py,and can be imported and used as:</p>
<pre><code>from qnt.data import secgov_load_indicators
</code></pre>
<p dir="auto">or</p>
<pre><code>from qnt.data.secgov_indicators import load_indicators
</code></pre>
<p dir="auto">Kind regards</p>
]]></description><link>http://quantiacs.com/community/post/1855</link><guid isPermaLink="true">http://quantiacs.com/community/post/1855</guid><dc:creator><![CDATA[support]]></dc:creator><pubDate>Mon, 20 Jan 2025 18:58:04 GMT</pubDate></item><item><title><![CDATA[Reply to Fundamental data loading does not work on Sun, 19 Jan 2025 13:52:40 GMT]]></title><description><![CDATA[<p dir="auto">Dear <a class="plugin-mentions-user plugin-mentions-a" href="http://quantiacs.com/community/uid/12">@support</a>,</p>
<p dir="auto">strategies using the secgov_load_indicators() function from the secgov module do not pass validation after submission. TypeError: 'module' object is not callable. Could you fix this? Thanks in advance for your help.</p>
]]></description><link>http://quantiacs.com/community/post/1853</link><guid isPermaLink="true">http://quantiacs.com/community/post/1853</guid><dc:creator><![CDATA[lookman]]></dc:creator><pubDate>Sun, 19 Jan 2025 13:52:40 GMT</pubDate></item><item><title><![CDATA[Reply to Fundamental data loading does not work on Tue, 14 Jan 2025 07:31:38 GMT]]></title><description><![CDATA[<p dir="auto">Dear <a class="plugin-mentions-user plugin-mentions-a" href="http://quantiacs.com/community/uid/7">@lookman</a>,</p>
<p dir="auto">sorry for late response, we are working on fixing this issue. Meanwhile, if it's applicable, you can try with other functions from secgov module for analysis, like <code>secgov_load_indicators()</code>.</p>
]]></description><link>http://quantiacs.com/community/post/1847</link><guid isPermaLink="true">http://quantiacs.com/community/post/1847</guid><dc:creator><![CDATA[support]]></dc:creator><pubDate>Tue, 14 Jan 2025 07:31:38 GMT</pubDate></item></channel></rss>