diff --git a/docs/reference/configuration/tariffs.md b/docs/reference/configuration/tariffs.md
index 7fd7f5ea72..88fdf88ee9 100644
--- a/docs/reference/configuration/tariffs.md
+++ b/docs/reference/configuration/tariffs.md
@@ -38,6 +38,11 @@ tariffs:
 
 **Beispiel: Konstanter Energiepreis mit zeitabhängigen Tarifen**
 
+::: info
+Tagesübergreifende Zeitbereiche müssen um Mitternacht (= 0) geteilt werden.
+Es sind zwei Einträge (z.B. 20-0 und 0-5) notwendig.
+:::
+
 ```yaml
 tariffs:
   currency: EUR # (default EUR)
@@ -47,7 +52,7 @@ tariffs:
     price: 0.294 # EUR/kWh
     zones:
       - days: Mo-Fr
-        hours: 2-5
+        hours: 20-0
         price: 0.2 # EUR/kWh
       - days: Sa,So
         price: 0.15 # EUR/kWh
@@ -90,7 +95,7 @@ Währung in der Energiepreise dargestellt und berechnet werden.
 
 Folgende Tariftypen (`type`) werden unterstützt:
 
-**Mögliche Werte** `fixed|awattar|tibber|octopusenergy`
+**Mögliche Werte** `fixed|custom|awattar|tibber|octopusenergy`
 
 ---
 
@@ -105,6 +110,18 @@ type: fixed
 price: 0.297 # 0,297 [currency]/kWh
 ```
 
+### `type:` **`custom`**
+
+Fester Energiepreis für Netzbezug, der per Plugin gesetzt werden kann
+
+**Beispiel**:
+
+```yaml
+type: custom
+price:
+  source: ...
+```
+
 #### `price`
 
 Den Preis in [currency]/kWh den du an deinen Stromversorger zahlst. Wird für die Ersparnisberechnung verwendet.
@@ -249,6 +266,16 @@ type: fixed
 price: 0.12 # 0,12 [currency]/kWh
 ```
 
+### `type:` **`custom`**
+
+Feste Einspeisevergütung, die per Plugin gesetzt werden kann
+
+```yaml
+type: custom
+price:
+  source: ...
+```
+
 #### `price`
 
 Den Preis in [currency]/kWh den du vom Netzbetreiber bekommst. Wird für die Ersparnisberechnung verwendet.
@@ -342,4 +369,4 @@ co2:
   region: 1
   # OR
   postcode: SW1A1AA
-```
\ No newline at end of file
+```