Jerome de Leon

Results 22 comments of Jerome de Leon

Yeah, I also get data until 2019-06-07 only: ```python df = get_stock_data("ALI", "2019-01-01", "2020-12-31") ``` Other symbols seem to work fine though.

FYI 1 min data is available in crypto data already via `get_crypto_data`; just specify `time_resolution` ='1m'

guide ```python models = ['nltk', 'textblob', 'light_nlp_model'] senti_sources = ['disclosures', 'twitter', 'news'] if senti_source=="news": df = get_stock_data(...) sentiment = get_bt_news(...) elif senti_source=="disclosures": disclosures = DisclosuresPSE(...) df = disclosures.get_pse_data() sentiment =...

@rafmacalaba do you know a fix for this?

@rafmacalaba the plots in README does not have the date in xlabel, unlike in typical backtrader plots e.g. [here](https://www.backtrader.com/home/helloalgotrading/)

I tried to reproduce the plot using the code in the link above but the dates are still not visible. I guess the date label is there but somehow gets...

None in particular, but it would be nice if we can easily pull data and do parallel analysis. Problem is, these datasets are outdated and there's no converient API in...

@rafmacalaba I added a link above about existing news scrapers. Please let me know which is best for our purpose.