-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zero labor income for LUCAS0 population #208
Comments
One way to think about this is that the LAP model of the microeconomic consumer's choice as the ratio of wealth to permanent income goes to infinity. If you have labor income of a penny a year, and wealth of $5 billion, only an infinitesimal amount of your future consumption will be financed by your income. PerfForesightCRRA has solutions to the non-normalized perfect foresight model and for which labor income can be zero. @alanlujan91 should be able to help you figure out what to do |
PS. You should also do a deep dive into Lucas-Asset-Pricing-Model. After the deep dive, you might consult Mateo about any further questions. |
It does not look like that LAPM notebook uses HARK AgentType agents at all. So that is not terribly helpful. The issue is that we need to have ConsPortfolioModel agents with no labor income. So while it may be useful to know the math, it won't help us unless there is a new HARK AgentType written to implement it. What if we just set |
Yes, that's probably the right solution. It means that we will have to make sure the |
As we have noted elsewhere, we would like to initialize agent wealth at the mNrmStE, which is the ratio of wealth to permanent income. Are you saying that we should choose parameters such that mNrmStE is infinite? |
No. In the Lucas model, target wealth is not infinity. There is no target level of wealth. The definition of an "equilibrium" is that the consumer wants to consume neither more than all the fruit, nor less than all the fruit. C=D. This is because in the Lucas model, the fruit rots so there's no point in leaving any of it unconsumed. And it is not possible, in aggregate, to consume more than all the fruit. At the individual level, this just means that each consumer will want to consume an amount exactly equal to their (nonstochastic) income. But we can have consumers at different levels of income. So, for a consumer with income of This all will be more interesting when we introduce permanent income uncertainty and the corresponding amount of impatience to make the aggregate amount of wealth match the aggregate |
@alanlujan91 's idea earlier was that wealth would be computed in terms of the total price of one's assets (trees). It looks like the notes from section 4 onward normalize population and tree quantity both to 1. So the wealth would be Think that in your above comment, you are using 'income' to refer to both dividends and labor income. So I suppose the ratio of wealth to dividend income is just the price/dividend ratio. But I was reserving 'permanent income' for labor income. Now I'm seeing two different recommendations: Proposal 1: Close-to-zero income.
Proposal 2:
I'm confused by Proposal 2 because I thought that LAP wants labor income to be 0. Setting wealth to be I agree that some consideration of the aggregates seems important here. |
I see. The pLvl is arbitrary and 1 is both simple and small. Ok, makes sense. #205 is for the starting wealth level. |
Fixed with 95da6e5 |
Because each unit of HARK money can be worth many AMMPS dollars ('dollars per hark money unit'), a constant income of 1 HMU has been shown to lead to large quarterly purchases of stocks. These purchases markedly exceed the normal daily trades from retail investors due to rebalancing, and so create a lot of distortion. So it looks like we will need to address this issue of making labor income small. |
income = 1; dollars_per_hark = 1500 -> simulation income = 1500 |
I like the elegance of that, but want to think it through...
... |
Seb,
I think you need to think harder about this, maybe with Alan's assistance.
It is clear to me that you are confused about something, but not clear what
you are confused about.
…On Tue, May 23, 2023 at 9:08 PM Sebastian Benthall ***@***.***> wrote:
I like the elegance of that, but want to think it through...
- If pLvlInitMean = log ( 1 / dphm ) ...
- And aNrm is chosen as the steady state equilibrium...
- Then the total wealth of agents, measured in dollars, will be (1 /
dphm) * aNrm * dphm = aNrm ...
- ... meaning, that we would no longer be varying the relative size of
the retail investor activity with the dphm parameter...
...
—
Reply to this email directly, view it on GitHub
<#208 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAKCK74CDDSURBLNW55DJCLXHVNPXANCNFSM6AAAAAAW5LFNUQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
--
- Chris Carroll
|
@llorracc You're right. Setting @alanlujan91 , I think that... ... essentially, what we would like is a working version of the PortfolioConsumerType with 0 income. That currently does not exist in HARK.
Implementing an entirely new consumer household model at this stage is not something I'm eager to have as part of the project scope, but I don't see alternative strategies this point. |
@alanlujan91 I suppose the alternative is to only consider the 'solution' at normalized Is either the consumption function or portfolio share function asymptotic? |
After our team meeting this morning, my hunch now is that:
It also occurs to me, albeit hesitantly, that if building this new model in HARK is too burdensome, that prototyping new models like this is exactly what BARK is for. Once BARK is able to reproduce HARK results (the plan is to have that by the end of this month), I might try this out and see if it goes anywhere. |
A much clearer analysis is now here: https://github.com/sbenthall/SHARKFin/blob/master/macro/Lucas%20Portfolio%20Agent%20Type.ipynb Essentially, if we think of the problem in terms of a "staged" PortfolioConsumer problem, our problem is the same as before but with the labor income stage removed. Because there's no permanent income growth, there's no normalization step (as that is "part of" the labor income stage). Everything else is essentially as before, because what matters are the returns on the risky asset, and these are well defined in terms of the dividend shock, growth rate, and price-dividend ratio. With either BARK or DARK, this should be easy to implement. It is less complex than the version of the portfolio agent with stochastic income shocks. |
Matt White says this problem has easy mathematical solutions that could be hacked into HARK. Hacking up a HARK agent that does this is an option. But it wouldn't improve the HARK technology to do so. |
Aha. Maybe we can just use the SequentialPortfolioConsumerType, but with an unemployment probability of 1.0 and employment income of 0. That should get us the asymptotic consumption and share functions. @alanlujan91 can you think of any reason why that wouldn't work? It seems easy to try. With those as a function of only the expectations, then I think we'd expect very low trade volume. Basically fluctuating around the size of the dividend income itself. (until strange expectations set in.) |
We are just going to go with the consumers having labor income and see what happens. |
According the the LAP model, consumers should have no labor income. (see notes)
We have 'tried' to do this, by setting the initial pLvl values to 0 and the shocks to 0. (I think @alanlujan91 did this a couple months ago)
https://github.com/sbenthall/SHARKFin/blob/master/simulate/parameters.py#L93-L98
But according to HARK, the
pLvlInitMean
parameters is the mean of log of the initial level of income. So currently, the LUCAS0 population has an income of 1.https://github.com/econ-ark/HARK/blob/876ede3a8de0ba2606a27f6b9b6d2ae42076f580/HARK/Calibration/Income/IncomeTools.py#L547
I've tried swapping in
-float('inf')
for this value, but perhaps predictably the resulting simulation throws a lot of errors.We need to compute not-normalized asset holdings of consumers to compute demand for shares, and this involves multiplying
aNrm
by thepLvl
. So it's no wonder that having zero valued income levels causes problems.ERROR: Agent desires nan shares
@llorracc I know HARK has been used to model the LAP case before. How has it dealt with the labor income?
The text was updated successfully, but these errors were encountered: