shyam gupta commited on
Commit
dff09ad
1 Parent(s): 560e15d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -4
README.md CHANGED
@@ -47,23 +47,32 @@ Mean-Variance Portfolio Optimization is a widely used method in finance for cons
47
  Methodology
48
  1. Basic Concepts
49
 
50
- Expected Return: The anticipated gain or loss from an investment, based on historical data or other factors.
51
- Risk (Variance): A measure of the dispersion of returns. In portfolio optimization, we seek to minimize the variance of the portfolio returns.
52
 
53
- 2. Optimization Algorithm
 
 
54
 
55
  Our implementation utilizes the following steps:
 
56
  Input Data: Historical returns for each asset in the portfolio.
 
57
  Objective Function: Construct an objective function that combines the expected return and variance.
 
58
  Optimization Algorithm: We employ a mean-variance optimization algorithm that iteratively adjusts the weights to find the optimal combination.
 
59
  Convergence Criteria: The algorithm iterates over a specified number of iterations (e.g., 5000) or until convergence is achieved.
60
 
61
- 3. Implementation
62
 
63
  In our project, we have implemented the Mean-Variance Portfolio Optimization method with 5000 iterations. The process involves:
 
64
  Input: Historical return data for each equity in the Indian market.
 
65
  Objective: Maximize expected return while minimizing portfolio variance.
 
66
  Optimization: Utilize an iterative approach, adjusting weights to find the optimal allocation.
 
67
  Output: The final set of weights that represent the optimal portfolio allocation.
68
 
69
  #### Contributing
 
47
  Methodology
48
  1. Basic Concepts
49
 
50
+ Expected Return: The anticipated gain or loss from an investment, based on historical data or other factors.
 
51
 
52
+ Risk (Variance): A measure of the dispersion of returns. In portfolio optimization, we seek to minimize the variance of the portfolio returns.
53
+
54
+ 3. Optimization Algorithm
55
 
56
  Our implementation utilizes the following steps:
57
+
58
  Input Data: Historical returns for each asset in the portfolio.
59
+
60
  Objective Function: Construct an objective function that combines the expected return and variance.
61
+
62
  Optimization Algorithm: We employ a mean-variance optimization algorithm that iteratively adjusts the weights to find the optimal combination.
63
+
64
  Convergence Criteria: The algorithm iterates over a specified number of iterations (e.g., 5000) or until convergence is achieved.
65
 
66
+ 4. Implementation
67
 
68
  In our project, we have implemented the Mean-Variance Portfolio Optimization method with 5000 iterations. The process involves:
69
+
70
  Input: Historical return data for each equity in the Indian market.
71
+
72
  Objective: Maximize expected return while minimizing portfolio variance.
73
+
74
  Optimization: Utilize an iterative approach, adjusting weights to find the optimal allocation.
75
+
76
  Output: The final set of weights that represent the optimal portfolio allocation.
77
 
78
  #### Contributing