Skip to content

Commit

Permalink
Implementing formulas
Browse files Browse the repository at this point in the history
  • Loading branch information
JVerstry committed Feb 29, 2024
1 parent d9f6d8b commit e941514
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,35 +468,35 @@
i_Unemployment = windValue(arrUnemploymentElem.innerHTML);
i_UsRate = windValue(arrUsRateElem.innerHTML);

x_BTC = i_ETH;
x_ETH = i_BTC;
x_BTC = i_ETH + 0.5 * i_M2; // add Us Debt + inflation?
x_ETH = i_BTC + 0.5 * i_M2; // add Us Debt + inflation?
x_BankLending = 0;
x_FedBalanceSheet = 0;
x_Gold = 0;
x_GovernmentBorrowing = 0;
x_Infl = 0;
x_Gold = 0.5 * i_M2 - i_RealInterest;
x_GovernmentBorrowing = 0 - i_UsRate;
x_Infl = i_M2;
x_M2 = i_BankLending + i_GovernmentBorrowing + i_FedBalanceSheet - i_ReverseRepo;
x_Oil = 0;
x_RealEstate = 0;
x_RealInterest = 0;
x_Oil = 0; // Add GDP
x_RealEstate = i_Infl - i_UsRate;
x_RealInterest = i_UsRate - i_Infl;
x_ReverseRepo = 0;
x_Sentiment = 0;
x_Sentiment = 0 - i_Infl - i_Unemployment;
x_Unemployment = 0;
x_UsRate = 0;

x2_BTC = x_ETH;
x2_ETH = x_BTC;
x2_BTC = x_ETH + 0.5 * x_M2;
x2_ETH = x_BTC + 0.5 * x_M2;
x2_BankLending = 0;
x2_FedBalanceSheet = 0;
x2_Gold = 0;
x2_GovernmentBorrowing = 0;
x2_Infl = 0;
x2_Gold = 0.5 * x_M2 - x_RealInterest;
x2_GovernmentBorrowing = 0 - x_UsRate;
x2_Infl = x_M2;
x2_M2 = x_BankLending + x_GovernmentBorrowing + x_FedBalanceSheet - x_ReverseRepo;
x2_Oil = 0;
x2_RealEstate = 0;
x2_RealInterest = 0;
x2_RealEstate = x_Infl - x_UsRate;
x2_RealInterest = x_UsRate - x_Infl;
x2_ReverseRepo = 0;
x2_Sentiment = 0;
x2_Sentiment = 0 - x_Infl - x_Unemployment;
x2_Unemployment = 0;
x2_UsRate = 0;

Expand Down

0 comments on commit e941514

Please sign in to comment.