diff --git a/README.md b/README.md
index 105893cb..a38c229d 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
|
- 🧩 28 plugins
+ 🧩 29 plugins
|
@@ -272,17 +272,28 @@ And you can customize these heavily with plugins, templates and hundreds of opti
| ⏰ WakaTime plugin |
- 💉 Nightscout |
+ 💹 Stock prices |
|
+
+
+
+ |
+
+
+ | 💉 Nightscout |
+ |
+
+
|
+ ![]() |
|
@@ -635,6 +646,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ✒️ |
🗼 |
⏰ |
+ 💹 |
💉 |
@@ -667,6 +679,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ✔️ |
✔️ |
✔️ |
+ ✔️ |
✔️ |
@@ -699,6 +712,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ❌ |
✔️ |
❌ |
+ ❌ |
❌ |
@@ -731,6 +745,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
| ❌ |
❌ |
❌ |
+ ❌ |
❌ |
@@ -783,6 +798,7 @@ See their respective documentation for more informations about how to setup them
* [🗼 Rss feed](/source/plugins/rss/README.md)
* [⏰ WakaTime plugin](/source/plugins/wakatime/README.md)
* **Other**
+ * [💹 Stock prices](/source/plugins/stock/README.md)
* [💉 Nightscout](/source/plugins/nightscout/README.md)
### 🏦 Organizations metrics
diff --git a/action.yml b/action.yml
index b0ea8a6b..785d6d64 100644
--- a/action.yml
+++ b/action.yml
@@ -893,6 +893,35 @@ inputs:
description: Maximum number of entries to display per graph
default: 5
+ # ====================================================================================
+ # 💹 Stock prices
+
+ # Enable or disable plugin
+ plugin_stock:
+ description: Display stock prices of a given company
+ default: no
+
+ # RapidAPI Yahoo finance token
+ # Case insensitive
+ plugin_stock_token:
+ description: Yahoo Finance token
+ default: ""
+
+ # Company stock symbol (required)
+ plugin_stock_symbol:
+ description: Company stock symbol
+ default: ""
+
+ # Time range to display (relative to current date)
+ plugin_stock_duration:
+ description: Time range to display
+ default: 1d
+
+ # Time invervals between each records over the given time range
+ plugin_stock_interval:
+ description: Time intervals between records
+ default: 5m
+
# ====================================================================================
# 💉 Nightscout
diff --git a/settings.example.json b/settings.example.json
index 501e7775..883b4cd1 100644
--- a/settings.example.json
+++ b/settings.example.json
@@ -111,6 +111,10 @@
"token": null, "//":"WakaTime API token",
"enabled": false, "//": "Display WakaTime stats"
},
+ "stock":{
+ "token": null, "//":"Yahoo Finance token",
+ "enabled": false, "//": "Display stock prices of a given company"
+ },
"nightscout":{
"enabled": false, "//": "Displays Blood Glucose"
},
diff --git a/source/plugins/README.md b/source/plugins/README.md
index dbdde792..6037ad12 100644
--- a/source/plugins/README.md
+++ b/source/plugins/README.md
@@ -36,4 +36,5 @@ See their respective documentation for more informations about how to setup them
* [🗼 Rss feed](/source/plugins/rss/README.md)
* [⏰ WakaTime plugin](/source/plugins/wakatime/README.md)
* **Other**
+ * [💹 Stock prices](/source/plugins/stock/README.md)
* [💉 Nightscout](/source/plugins/nightscout/README.md)