backend redesign

This commit is contained in:
2026-03-11 18:47:11 -04:00
parent 8ff277c8c6
commit e99ef5d2dd
210 changed files with 12147 additions and 155 deletions

38
doc.old/trendspider.md Normal file
View File

@@ -0,0 +1,38 @@
Four Main Functions
* Charting and Analysis
* Strategy Development and Testing
* Idea Generation
* Trade Timing and Execution
# Charting and Analysis
* "Smart Charts" autodetects chart patterns, trendlines, and plots them
* Multi-timeframe plots on same chart (e.g. 200 SMA from the daily)
* Multi-symbol view
* Sidebar data
* Mobile app
* Browser extension detects symbols across pages
# Strategy Development and Testing
* Strategies seem to be lego components:
* "Price Close" "Less than" "Wedge Falling (Top)"
* "Any of the following" "happened within" "15 candles" on "Current symbol"
* The rest is obvious
# Idea Generation
* Scanners provided filtered symbol lists according to whatever conditions
* News feeds like recent halts, WallStBets symbols, retail flow alerts, social media chatter
# Trade Timing and Execution
* Alerts on chart elements have "cadence":
* "Break Through" Trigger when price opens & closes, or closes & opens on different sides of the buffer area.
* "Touch" Trigger when price touches or trades through the buffer area, but does not Break Through it.
* "Bounce" Triggers when price Touches the buffer area but does not Break Through on the next candle.
* Alerts on any visual element
* Bots can either trade or sent alerts
* Condition tree structure of strategies allows a quick red/green view of what sections are currently true/false, allowing a discretionary trader to maybe make an exceptional decision
# Assistant
* "Quick Commands" finds UI elements
* Quick search box basically with minor AI assistance for "add to chat" etc
* Maybe use lightweight model agent to choose from a range of UI actions like "add indicator" etc.
*