🎨 Palette: Add concrete example tooltips to financial parameter inputs#70
🎨 Palette: Add concrete example tooltips to financial parameter inputs#70
Conversation
Added `help` tooltips with concrete examples to statistical and financial parameter inputs (e.g., "10 bps = 0.10%") in `src/dashboard.py`. This improves clarity and accessibility for users configuring complex backtest settings like transaction costs, volatility quantiles, and alert thresholds. Also recorded this learning in the UX journal. Co-authored-by: aarjava <218419324+aarjava@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Added `help` tooltips with concrete examples to statistical and financial parameter inputs (e.g., "10 bps = 0.10%") in `src/dashboard.py`. This improves clarity and accessibility for users configuring complex backtest settings like transaction costs, volatility quantiles, and alert thresholds. Also recorded this learning in the UX journal. Additionally, formatted `src/` and `tests/` with `black` to resolve CI failures. Co-authored-by: aarjava <218419324+aarjava@users.noreply.github.com>
Added `help` tooltips with concrete examples to statistical and financial parameter inputs (e.g., "10 bps = 0.10%") in `src/dashboard.py`. This improves clarity and accessibility for users configuring complex backtest settings like transaction costs, volatility quantiles, and alert thresholds. Also recorded this learning in the UX journal. Additionally, formatted `src/` and `tests/` with `black`, fixed unused imports in `src/modules/` and tests, added `__all__` export definitions in `src/modules/__init__.py`, removed unused variables, and resolved all remaining linting issues to ensure the CI check suite passes. Co-authored-by: aarjava <218419324+aarjava@users.noreply.github.com>
Added `help` tooltips with concrete examples to statistical and financial parameter inputs (e.g., "10 bps = 0.10%") in `src/dashboard.py`. This improves clarity and accessibility for users configuring complex backtest settings like transaction costs, volatility quantiles, and alert thresholds. Also recorded this learning in the UX journal. Additionally, formatted `src/` and `tests/` with `black`, fixed unused imports in `src/modules/` and tests, added `__all__` export definitions in `src/modules/__init__.py`, removed unused variables, and resolved all remaining linting issues to ensure the CI check suite passes. Co-authored-by: aarjava <218419324+aarjava@users.noreply.github.com>
💡 What:
Added
helptooltips to various statistical and financial parameter inputs in thesrc/dashboard.pyStreamlit application.The following inputs now have tooltips with concrete examples:
Also created
.Jules/palette.mdto journal the learning that inputs involving statistical/financial parameters require concrete examples for clarity.🎯 Why:
Parameters like "basis points" or "quantiles" can be opaque or easily misinterpreted (e.g., entering 0.1 for 10 bps instead of 10). By providing concrete examples directly in the UI where the user makes the input, we reduce cognitive load, prevent input errors, and make the application more accessible to users with varying levels of financial domain expertise.
📸 Before/After:
(See attached screenshot from verification step demonstrating the tooltip on hover).
♿ Accessibility:
Improves cognitive accessibility by providing immediate, contextual help text without requiring the user to seek external documentation. Streamlit's native
helptooltips are also standard and screen-reader friendly compared to custom implementations.PR created automatically by Jules for task 6219316027630247623 started by @aarjava