I would love to see a plugin that pulls in current stock information for the US markets.
I keep detailed logs of ideas and trades and it would be super helpful to pull in current prices and data as I am typing up a note.
For example, I might type AMZN and the plugin would give me:
Price: $93.50 (-2.32 / -2.42%) * Volume: 57,053,812 * Market Cap: $958.123B * 52W Range: 81.43 - 170.83
Real-time quotes aren’t necessary - there are better tools for that. But, it would be nice to quickly bring in data to my note without having to reference a finance site.
I am not yet able to create plugins, but I have a way to use Templater to call a simple Javascript to fetch info via the alphavantage.co API. You will need to get your own free API key and add it to the script and configure Templater to call it, but it works for me.
Example:
<% tp.user.stock(“AMZN”) %>
turns into
AMZN: $93.50 (-2.32, -2.42%)
let me know if you are OK with this many steps - otherwise maybe someone can make a plugin.
I’m not an engineer by any means, but started playing with a library that uses the Yahoo Finance API. Main pain point is that it can sometimes take 7 or 8 seconds to get an API response, other times it’s less than a second.