Jeroen Bouma

Results 127 comments of Jeroen Bouma

Hi @giraffeingreen! Do you have any further examples from different sources? Just trying to see if I can expand it further with similar ratios of this type!

Got it, so how I would model this is do the following: ```python from financetoolkit import Toolkit companies = Toolkit( tickers=['GOOGL', 'MSFT', 'AMZN'], api_key="FMP_KEY", ) # Annual Historical Data annual_historical_data...

Just checking, is there anything you need that is not available in the Finance Toolkit? I will probably add these metrics at some point in time.

Let's keep it open, I'll close it once I've added these things in 👍🏼

You can not plot the PVGO on a daily basis as it depends on two ratios that require quarterly or yearly input. At best, you can see the quarterly results:...

Yes, of course but I would seriously question what that statistic means. The further you are away from the financial report the metric is based on, the more noise the...

Got it, in any case this is how you could do it: ```python from financetoolkit import Toolkit companies = Toolkit( tickers=['GOOGL', 'MSFT', 'AMZN'], api_key="FMP_KEY", quarterly=False ) # Daily Historical Data...

> Negative PVGO, would mean that earnings/wacc > Market Cap, am I correct? > Why is the plot going all the way to 2024? Not sure, take a look at...

I have added this metric to the Finance Toolkit, see v1.7.4 here: https://github.com/JerBouma/FinanceToolkit/releases/tag/v1.7.4

@jmaslek Yeah it tries to plot strings which is most likely due to the Ms and the Bs. For the auto complete, I think it can help we have some...