I am looking into estimating a markov regime switching model with time varying probs. Please help me if you know a simpler way to estimate such model.
Markov Regime Switching Regression Models - Time Varying Probabiliites
442 views Asked by Alaz At
2
You can easyily implement this model with MarSwitching.jl package in Julia language: https://github.com/m-dadej/MarSwitching.jl
Just use:
model = MSModel(y, k, exog_tvtp = df)
wherey
is target variable,k
is number of states anddf
is a variable explaining the process of transition probabilities.