refactor(web): rename simple flow to trade plans

This commit is contained in:
root 2026-05-06 17:39:34 +00:00
parent a1a63cc945
commit f51172518e
3 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ const NAV = [
{ to: '/', icon: Home, label: 'Home', end: true },
{ to: '/portfolio', icon: Briefcase, label: 'Portfolio', end: false },
{ to: '/research', icon: FlaskConical, label: 'Research', end: false },
{ to: '/simple', icon: Target, label: 'Simple', end: false },
{ to: '/simple', icon: Target, label: 'Plans', end: false },
{ to: '/markets', icon: TrendingUp, label: 'Markets', end: false },
{ to: '/screener', icon: SlidersHorizontal, label: 'Screener', end: false },
{ to: '/watchlist', icon: Star, label: 'Watchlist', end: false },

View File

@ -941,8 +941,8 @@ export function SimpleView() {
return (
<div className="space-y-8">
<PageHeader
title="Simple"
description="Create saved dip-buy and profit-exit setups with the same workspace patterns used across Research, Markets, and Settings."
title="Trade Plans"
description="Create and manage short-term trade plans, then convert filled positions into long-term holds when you want to stop automated exits."
/>
<div className="grid gap-8 xl:grid-cols-[minmax(0,1.1fr)_minmax(0,0.9fr)]">

View File

@ -8,7 +8,7 @@ export function WatchlistView() {
<div>
<PageHeader
title="Watchlist"
description="Manage saved manual entries, simple setups, and symbols you want to monitor closely."
description="Manage saved manual entries and symbols you want to monitor closely."
/>
<EntriesTab botState={botState} />
</div>