Skip to content

Commit

Permalink
Changed the weights
Browse files Browse the repository at this point in the history
  • Loading branch information
evanwporter committed Sep 25, 2023
1 parent 79bfc0c commit 4dcea08
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions RiskHandler/risk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ RiskHandler::RiskHandler(DataHandler *data_handler, Portfolio *p) {
portfolio = p;

weights["APPL"][0] = 0;
weights["APPL"][1] = .25;
weights["APPL"][1] = .5;

weights["GOOG"][0] = 0;
weights["GOOG"][1] = .25;
weights["GOOG"][1] = .5;

weights["MSFT"][0] = 0;
weights["MSFT"][1] = .25;
// weights["MSFT"][0] = 0;
// weights["MSFT"][1] = .25;

weights["BRK-B"][0] = 0;
weights["BRK-B"][1] = .25;
// weights["BRK-B"][0] = 0;
// weights["BRK-B"][1] = .25;

}

Expand Down

0 comments on commit 4dcea08

Please sign in to comment.