main
Bel LaPointe 2023-10-27 17:21:59 -06:00
parent 8a0b42ee77
commit 284011b345
2 changed files with 4 additions and 4 deletions

View File

@ -60,17 +60,17 @@
<span>
<label for="zoomStart">zoomStart</label>
<input name="zoomStart" type="text" value="2001-01"/>
<input name="zoomStart" type="text" value="2023-06"/>
</span>
<span>
<label for="prediction">prediction</label>
<input name="prediction" type="text" value="contributions=&prediction=interest=AssetAccount:Cash \$ 0.02"/>
<input name="prediction" type="text" value="autoContributions=&prediction=interest=AssetAccount:Cash \$ 0.02"/>
</span>
<span>
<label for="predictFixedGrowth">predictFixedGrowth</label>
<input name="predictFixedGrowth" type="text" value="VBTLX=0.02"/>
<input name="predictFixedGrowth" type="text" value="VBTLX=0.02&predictFixedGrowth=GLD=0.02&predictFixedGrowth=FXAIX=0.03&predictFixedGrowth=FSPSX=0.03"/>
</span>
<span>

View File

@ -113,7 +113,7 @@ func main() {
panic(err)
}
prediction = append(prediction, ana.NewInterestPredictor(fields[0], fields[1], apy))
case "contributions":
case "autoContributions":
prediction = append(prediction, ana.NewContributionPredictor(register))
default:
panic(k)