I want to forecast what next semester's finances may look like, regarding my campus job. I get paid bi-weekly, and have eight past data points: 358.75, 476.50, 482.50, 479.50, 253.50, 484.00, 475.00, 391.50. I removed the outlier 253.50 because it was due to a week school break, which won't happen this semester, leaving me with $n=7$. The least and most I could make back then were \$242 and \$484. This time, I predict that will be \$270 and \$540, because I have better jobs and know how much I can work each one.
I have written a Python script that takes a paycheck estimator (my main concern), and adds up 8 paychecks I know are coming millions of times, histograms them, and highlights the 10th percentile (So as to say, "I have a 90% probability I will make more than this", for a safe budgeting strategy). I believe what I've made is called a "Monte-Carlo Simulation" but please correct me if that's not quite it.
I have used three different estimators so far:
- A histogram with 3 bins, made in Excel, after scaling the old data by $\frac {\max_{new}} {\max_{old}}$ so the maxima would be where I expect.

- Truncated Kernel-Density-Estimation with Scott bandwidth choice.
- Beta distribution with method of moments, normalizing the sample set to [0, 1], finding $\mu$ and $\sigma^2$ and solving for $\alpha$ and $\beta$ from these, then scaling to [270, 540]
Below are the histograms and 10th percentiles produced by each of these, with 1 million trials, again each involving adding 8 paychecks together:
- Histogram PDF. 10th percentile: \$3344

- Truncated KDE. 10th percentile: \$3559

- Beta method of moments. 10th percentile: \$3855

I will say, the Beta looks ridiculously confident in very high values and plotting it looks like an infinite spike at \$540, though its mean and variance are the same as the past samples.
The histogram was my own idea, it seemed intuitive to me, and it is apparently a legitimate estimator. Regarding KDE and Beta, however, this is my first time even hearing about them. Could I get some help understanding what to do in this situation, and what may have the least bias and MSE against the truth for my case? My estimators are kind of agreeing, but they are different, and I want to know the truth. Thank you.