-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPSRoboAdvisor.psm1
139 lines (124 loc) · 3.77 KB
/
PSRoboAdvisor.psm1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
function Get-SP500Summary {
[CmdletBinding()]
$response = invoke-webrequest "https://www.slickcharts.com/sp500"
$table = $response.parsedhtml.body.childnodes[6].childnodes[1].childnodes[0].childnodes[0].childnodes[1].childnodes[0]
# Column Headers
$columns = foreach ($node in $table.childnodes[0].childnodes[0].childnodes) {$node.innertext.trim()}
$stockrows = $table.childnodes[1].childnodes
$stocks = foreach ($row in $stockrows) {
$attributes = @{}
for ($i=0; $i -lt $($columns.count); $i++) {
$attributes.Add($columns[$i],$row.childnodes[$i].innertext.trim())
}
[PSCustomObject]$attributes
}
$stocks
}
$stocks = Get-SP500Summary
function Get-SharesInAmount {
[CmdletBinding()]
param (
$stock,
$amount,
$transactionCost = 5,
$maxCostRatio = 0.02
)
begin {
}
process {
$sharesToConsider = [Math]::floor(($amount * ($stock.Weight)/100) / ($stock.Price) )
$purchasePrice = ($sharesToConsider * $stock.Price) + $transactionCost
if ($transactionCost/$purchasePrice -gt $maxCostRatio) {
$sharesToConsider = 0
$purchasePrice = 0
}
[PSCustomObject]@{
Symbol = $stock.Symbol
Company = $stock.Company
Shares = $sharesToConsider
Cost = $purchasePrice
}
}
end {
}
}
function Get-RawPortfolio {
[CmdletBinding()]
param (
$amount,
$transactionCost = 5,
$maxCostRatio = 0.02
)
begin {
}
process {
if ($null -eq $stocks) {
$stocks = Get-SP500Summary
}
$purchases = @()
foreach ($stock in $stocks) {
$purchase = Get-SharesInAmount -stock $stock -amount $amount -transactionCost $transactionCost -maxCostRatio $maxCostRatio
if ($purchase.Shares -gt 0) {
$purchases += $purchase
}
}
}
end {
[PSCustomObject]@{
'portfolio' = $purchases
'cost' = CostOfPurchases($purchases)
}
}
}
function CostOfPurchases {
param(
$purchases
)
$cost = 0
foreach ($stock in $purchases) {
$cost += $stock.Cost
}
$cost
}
function Get-PercentageFit {
[CmdletBinding()]
param(
$initialAmount,
$transactionCost = 5,
$maxCostRatio = 0.02
)
$rawPortfolio = Get-RawPortfolio -amount $initialAmount -transactionCost $transactionCost -maxCostRatio $maxCostRatio
$costOfRawPortfolio = $rawPortfolio.cost
$percentageFit = $costOfRawPortfolio/$initialAmount
$percentageFit
}
function Get-BestFitPortfolio {
[CmdletBinding()]
param(
$amount,
$transactionCost = 5,
$maxCostRatio = 0.02
)
$currentAmount = $amount
do {
$currentAmount += 10000
} while((Get-RawPortfolio -amount $currentAmount -transactionCost $transactionCost -maxCostRatio $maxCostRatio).cost -lt $amount )
$currentAmount = $currentAmount - 10000
do {
$currentAmount += 1000
} while((Get-RawPortfolio -amount $currentAmount -transactionCost $transactionCost -maxCostRatio $maxCostRatio).cost -lt $amount )
$currentAmount = $currentAmount - 1000
do {
$currentAmount += 100
} while((Get-RawPortfolio -amount $currentAmount -transactionCost $transactionCost -maxCostRatio $maxCostRatio).cost -lt $amount )
$currentAmount = $currentAmount - 100
do {
$currentAmount += 10
} while((Get-RawPortfolio -amount $currentAmount -transactionCost $transactionCost -maxCostRatio $maxCostRatio).cost -lt $amount )
$currentAmount = $currentAmount - 10
do {
$currentAmount += 1
} while((Get-RawPortfolio -amount $currentAmount -transactionCost $transactionCost -maxCostRatio $maxCostRatio).cost -lt $amount )
$portfolio = Get-RawPortfolio -amount ($currentAmount - 1) -transactionCost $transactionCost -maxCostRatio $maxCostRatio
$portfolio
}