HackerTrans
TopNewTrendsCommentsPastAskShowJobs

softcane

no profile record

Submissions

[untitled]

1 points·by softcane·3 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by softcane·4 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by softcane·4 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by softcane·4 เดือนที่ผ่านมา·0 comments

Show HN: SpotVortex helps SRE teams push more Kubernetes capacity onto Spot

github.com
1 points·by softcane·4 เดือนที่ผ่านมา·2 comments

Show HN: Self-hosted DCF workspace using Damodaran datasets, LLM narratives

1 points·by softcane·4 เดือนที่ผ่านมา·1 comments

Open-source DCF engine based on Damodaran's datasets with LLM narratives

github.com
2 points·by softcane·4 เดือนที่ผ่านมา·2 comments

I built a local-first stock valuation tool based on Damodaran's methodology

github.com
3 points·by softcane·4 เดือนที่ผ่านมา·2 comments

comments

softcane
·3 เดือนที่ผ่านมา·discuss
[dead]
softcane
·3 เดือนที่ผ่านมา·discuss
Certainly not the best result compared to mempalace but I was thinking something similar trough my project https://github.com/softcane/contextgc
softcane
·4 เดือนที่ผ่านมา·discuss
https://github.com/softcane/spot-vortex-agent
softcane
·4 เดือนที่ผ่านมา·discuss
Runs fully local: https://github.com/stockvaluation-io/stockvaluation_io
softcane
·4 เดือนที่ผ่านมา·discuss
We kept decisions at the node-pool level and focused on operational safety signals like PDB slack, critical workload concentration, restart time, evictability, zone spread, and On-Demand headroom.

If you want to push on safety, failure modes, rollout, or supported AWS scope, those are the right questions.
softcane
·4 เดือนที่ผ่านมา·discuss
Runs fully local:

https://github.com/stockvaluation-io/stockvaluation_io
softcane
·4 เดือนที่ผ่านมา·discuss
For years, I've wanted to automate Damodaran's valuation methodology industry betas, ERP, country risk premiums, the whole thing.

His data is free on the NYU page, but turning it into an actual valuation takes hours per stock.

StockValuation.io does it in minutes: - Pulls live financials via yFinance - Uses Damodaran's published datasets for cost of capital inputs - Runs deterministic DCF math (every assumption is visible) - Layers an LLM on top for bull/bear narratives and assumption overrides

The math never changes based on AI mood. The LLM only touches research and storytelling.

Self-host: https://github.com/stockvaluation-io/stockvaluation_io (one Docker command, MIT license)

Happy to discuss the methodology, assumption choices, or why I think Deterministic math + probabilistic narratives is the right architecture for this.
softcane
·4 เดือนที่ผ่านมา·discuss
One thing I noticed while building this: LLMs are terrible at doing valuation math but surprisingly good at critiquing assumptions. When you let them read transcripts and compare assumptions to industry data, they often act like a skeptical analyst pointing out inconsistencies.
softcane
·4 เดือนที่ผ่านมา·discuss
Building a DCF model isn’t actually the hard part. The painful part is everything around it: finding industry averages, checking current risk-free rates, and digging through earnings transcripts to justify assumptions.

After repeating that process too many times, I started building a small tool to automate parts of the workflow while keeping the valuation model itself deterministic.

The core idea is to separate two very different problems:

1. Deterministic valuation math DCF calculations should be reproducible and deterministic. The model handles the financial logic and keeps the valuation mechanics consistent.

2. Qualitative research and narrative building Things like reading filings, summarizing earnings calls, or challenging assumptions are much more open-ended. That’s where LLMs are useful.

The tool is local-first and runs entirely on your machine. There are no accounts or hosted services — you just bring your own API keys if you want to use LLM features.

It also comes pre-seeded with Professor Damodaran’s public datasets (industry margins, risk metrics, failure rates, etc.) so you don’t have to manually assemble those inputs each time you build a model.

One design constraint was making sure the AI never touches the core valuation math. LLMs are allowed to suggest assumptions or critique them, but the underlying calculations remain deterministic.

A useful side effect is that the AI often behaves more like a skeptical analyst than an oracle. For example, it might flag things like:

“This margin expansion assumption is outside the historical range for this industry.”

Which is often exactly the kind of pushback you want when building a valuation narrative.

Curious if others building investing tools have experimented with a similar separation between hard financial models and AI-assisted research.

Repo: https://github.com/stockvaluation-io/stockvaluation_io