QUOTE:
Basically trying to predict future value based on current value.
You should take a look at the Kalman indicator in Wealth Lab.
The Kalman filter is a "general solution" where you pass a system of dynamic predictive equations (partial differential equations expressed in state-space form) into the filter. It then weights the coefficients of these equations by a covariant matrix so as to minimize the contribution of the unstable terms. Any type of time series with stochastic behavior (and that includes stock price modeling) is a good fit. It's commonly used in satellite and missile guidance systems.
https://en.wikipedia.org/wiki/Kalman_filterFor stocks, only one predictive equation has been employed (but you could craft others), and that's the Taylor series: first and second derivative terms are all that have been included (in the Taylor series) for stock trading so far. Recall, but the solution to these derivatives is an exponential, so you're on the right track by fitting your problem to an exponential model, but the Kalman can do it better because of the covariance weighting of the differential coefficients.
The bad news is that Wealth Lab's Kalman indicator doesn't attempt to predict the future, which is a big oversight in my opinion for the stock trading application. I thought about extending its solution to include the next bar, but that's another issue.
But what you can--and should--do is compare the last actual bar to the value the Kalman indicator computed for the last bar. This comparison will tell you if the stock is currently under or over valued (based on the weighted Taylor series) so you can plan an entry or exit action, respectively, in your strategy. The example the WL wiki gives for the WL Kalman indicator illustrates this for a buy-low entry strategy using the CMO indicator.
https://en.wikipedia.org/wiki/Kalman_filter