sbenthall / SHARKFin

Simulating Heterogeneous Agents with Finance
6 stars 5 forks source link

CRRA is too low, DiscFac too high. #261

Closed alanlujan91 closed 8 months ago

alanlujan91 commented 8 months ago

See dashboard.

alanlujan91 commented 8 months ago

The issue we saw the other day where Share == 1 always is happening because CRRA = 3 and DiscFac = .99.

If you move these two parameters around, you can get better non-trivial portfolio shares. For example try CRRA = 10, DiscFac = 0.9, everything else equal.

This is a well known result of portfolio choice models, they require an unreasonably high CRRA and low DiscFac to get close to matching observed data.

sbenthall commented 8 months ago

OK.

What happens when those values are plugged into the Lucas price/dividend ratio formula? https://github.com/sbenthall/SHARKFin/blob/master/sharkfin/utilities.py#L127-L164

I'm getting an error:

>>> ut.price_dividend_ratio_random_walk(0.9, 10, 1.000203, 0.011983, days_per_quarter=90)
subjective_return: 1.0034683918850338
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/sb/projects/ufm/SHARKFin/sharkfin/utilities.py", line 162, in price_dividend_ratio_random_walk
    assert subjective_return < 1
AssertionError

Recall that the price-dividend ratio is: image

Imposing the condition: image

I think what is happening is that when CRRA is increased, the effect of the variance of the dividend shock increases log-quadratically (?) which more than offsets how it dampens the risky asset average return.

image

Does this mean that DiscFac has to be taken down even lower? Can you incorporate this into your dashboard?

alanlujan91 commented 8 months ago

Correct, this is what I was seeing too with the subjective return > 1.

alanlujan91 commented 8 months ago
image

Yep... DiscFac has to be much lower

sbenthall commented 8 months ago

High CRRA, low discount factor -> low thorn.

What does this do to equilibrium wealth in the portfolio model? Do we retain that saddle region effect?

sbenthall commented 8 months ago

excuse me thorn is contracting towards 1 with increasing CRRA

sbenthall commented 8 months ago

tests are now fixed/passing on master, so a new update on this should pass also