Published 2 years ago
This workflow uses a number of technologies to track the value of ETFs, stocks and other exchange-traded products:
Thanks to n8n, the steps in this workflow can easily be changed. Not a Sendgrid user? Simply remove the Sendgrid node and add a Gmail node instead. The stock exchange has a REST API? Just throw away the HTML Extract node.
Here’s how it works:
In this scenario, our data source is Baserow. In our table, we’ll track all information needed to identify each investment product:
We have two text type columns (Name and ISIN) as well as two number type columns (Count and Purchase Price).
The Cron node will trigger our workflow to run each work day in the morning hours.
The Baserow node will fetch our investments from the database table shown above.
Using the HTTP Request node we can fetch live data from the stock exchange of our choice based on the ISIN. This example uses Tradegate, which is used by many German fintechs. The basic approach should also work for other exchanges, as long as they provide the required data to the public.
Since our HTTP Request node fetches full websites, we’re using the HTML Extract node to extract the information we’re looking for from each website. If an exchange other than Tradegate is used, the selectors used in this node will most likely need to be updated.
The Set nodes helps with setting the exact columns we’ll use in our table. In this case we’re first formatting the results from our exchange, then calculate the changes based on the purchase price.
Here were using a bit of Javascript magic to build an HTML email. This is where any changes to the email content would have to be made.
Finally we send out the email built in the previous step. This is where you can configure sender and recipients.
The basic email generated by this workflow will look like so:
Implement complex processes faster with n8n