git commit -m "v4.2.3 – Fix: Ulti Rally setzt wieder Trend = Schwarz (tr_s)

- Fehlerbehebung laut Wiki: Ulti Rally löst nur aus, wenn Trend Schwarz aktiv ist
- Verhindert Fehlalarme bei grünen/roten Trends
- Keine neuen Inputs oder Alerts, bestehende Signale unverändert"
This commit is contained in:
2025-10-19 23:21:39 +02:00
parent 27cf65e46d
commit 20ff43c245
3 changed files with 17 additions and 4 deletions

View File

@@ -39,7 +39,7 @@
![Aktueller Screenshot](./docs/img/screenshot_aktuell.png) ![Aktueller Screenshot](./docs/img/screenshot_aktuell.png)
➡️ **[Croc Vibes v4.2.2](./indicators/croc_vibes.pine)** ✅ ➡️ **[Croc Vibes v4.2.3](./indicators/croc_vibes.pine)** ✅
👉 Alle Änderungen im [CHANGELOG.md](./docs/CHANGELOG.md) 👉 Alle Änderungen im [CHANGELOG.md](./docs/CHANGELOG.md)
--- ---

View File

@@ -1,3 +1,16 @@
# 🐊 Croc Vibes Changelog
## [4.2.3] 2025-10-19
### Fixed
- **Ulti Rally** verlangt wieder **Trend = Schwarz** (`tr_s`) gemäß Wiki
- verhinderte vereinzelt False Positives in grünen/roten Trendphasen
- Definition von `ulti_rally` im Code auf mehrzeiliges Format umgestellt (bessere Lesbarkeit)
### Notes
- **Keine Input-Änderungen**, **keine neuen Alerts** bestehende Alarme referenzieren weiterhin `ulti_rally`
---
## [4.2.2] 2025-09-16 ## [4.2.2] 2025-09-16
### Fixed ### Fixed
- **Stephan-Setup** berücksichtigt wieder das **Rote Plus** als gültige Zusatzbedingung - **Stephan-Setup** berücksichtigt wieder das **Rote Plus** als gültige Zusatzbedingung

View File

@@ -1,10 +1,10 @@
// ================================================================================================= // =================================================================================================
// Croc Vibes by Telgos Version 4.2.2 // Croc Vibes by Telgos Version 4.2.3
// Lizenz: Mozilla Public License 2.0 https://mozilla.org/MPL/2.0/ // Lizenz: Mozilla Public License 2.0 https://mozilla.org/MPL/2.0/
// Danksagung (Basis/Ideen): amper04, ray_duke, husky, Audidriver13 // Danksagung (Basis/Ideen): amper04, ray_duke, husky, Audidriver13
// ================================================================================================= // =================================================================================================
//@version=6 //@version=6
indicator("Croc Vibes by Telgos v4.2.2", overlay=true, max_labels_count=500, max_lines_count=500) indicator("Croc Vibes by Telgos v4.2.3", overlay=true, max_labels_count=500, max_lines_count=500)
// ========= Eingaben: Chart-Signale ========= // ========= Eingaben: Chart-Signale =========
wolke_Line_pink = input.source(title="Wolke Linie Pink", defval=close, group="Chart-Signale") wolke_Line_pink = input.source(title="Wolke Linie Pink", defval=close, group="Chart-Signale")
@@ -101,7 +101,7 @@ stephan_zusatzbedingung_erfuellt = cp_long or rd_long or lolli_long or bb_long o
stephan_setup = not na(src1) and wk_g and tr_s and set_r and stephan_zusatzbedingung_erfuellt stephan_setup = not na(src1) and wk_g and tr_s and set_r and stephan_zusatzbedingung_erfuellt
Kerze_in_wolke_gr = close - wolke_Line_pink Kerze_in_wolke_gr = close - wolke_Line_pink
ulti_rally = hgr_long and (Kerze_in_wolke_gr > 0) and st_r and cz_r and set_r and not baerische_welle ulti_rally = hgr_long and (Kerze_in_wolke_gr > 0) and st_r and cz_r and set_r and and tr_s and not baerische_welle
is_bgrl = bgrl is_bgrl = bgrl
is_rotes_plus = r_plus and wk_g is_rotes_plus = r_plus and wk_g