Is there a solver that works like goal seek in excel, but can also be used for time series?
For example, lets say I have 3 timeseries variables df['Var1'], df['Var2'], df['Var3'] and an equation:(df['Var1'] / X ) + (X * df['Var2']) = df['Var3']. I want to solve it for X and have the solution as a timeseries as well (since my inputs are timeseries).
My actual equation is more complicated, so the equation I put above is just an example.