Created
October 5, 2020 15:48
-
-
Save jeffmccune/2b0bee04bbfba0d4bdc93bb8a17355d2 to your computer and use it in GitHub Desktop.
Transform the holdings data from Personal Capital into CSV for spreadsheet processing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
# | |
# | |
require 'json' | |
def run! | |
h = Holdings.new; h.load("holdings.json") | |
h.table.each do |row| | |
puts row.join("\t") | |
end | |
end | |
class Assets | |
attr_reader :classes | |
def initialize(assets, classes) | |
@assets = assets | |
@classes = classes | |
end | |
## Return a table of asset rows | |
def table | |
@assets.collect() do |asset| | |
# Available keys | |
# ["cusip", "accountName", "description", "tradingRatio", "source", | |
# "type", "taxCost", "originalTicker", "originalCusip", "holdingType", | |
# "price", "percentOfParent", "fundFees", "percentOfTMV", "value", | |
# "originalDescription", "ticker", "quantity", "manualClassification", | |
# "oneDayValueChange", "change", "sourceAssetId", "feesPerYear", | |
# "external", "userAccountId", "priceSource", "costBasis", "exchange", | |
# "oneDayPercentChange"] | |
[ | |
asset["accountName"], | |
asset["description"], | |
classes[-3], # My Class | |
classes[-2], # One of the 7 Classes | |
classes[-1], # Sector | |
asset["ticker"], | |
asset["quantity"], | |
asset["price"], | |
asset["value"], | |
asset["cusip"], | |
asset["taxCost"], | |
asset["fundFees"], | |
asset["feesPerYear"], | |
asset["type"], | |
"EOL" | |
] | |
end | |
end | |
end | |
## Classifications are nested | |
class Classification | |
attr_reader :classification | |
attr_reader :classes | |
# Classes is a chain, starting with My Class, then the 7 Asset classes, then | |
# what I call the "Sector". For recursion, we just append values, but we | |
# only care about the first 3. | |
def initialize(classification, classes=[]) | |
@classification = classification | |
case classes.length | |
when 1 | |
@classes = [my_type(self.name), self.name] | |
else | |
@classes = [*classes, self.name] | |
end | |
end | |
def name | |
@classification["classificationTypeName"] | |
end | |
def assets | |
@classification["assets"] | |
end | |
def classifications | |
@classification["classifications"] | |
end | |
def table | |
table = [] | |
if classifications | |
classifications.each() do |c| | |
rows = Classification.new(c, classes).table | |
table.push(*rows) | |
end | |
end | |
if assets | |
rows = Assets.new(assets, classes).table | |
table.push(*rows) | |
end | |
return table | |
end | |
## | |
# Given one of their types, map it to my type | |
def my_type(type) | |
case type | |
when /bond/i | |
"Bonds" | |
when /stock/i | |
"Stocks" | |
when /alternative/i | |
"Alternatives" | |
else | |
"Unclassified" | |
end | |
end | |
end | |
class Holdings | |
attr_accessor :data | |
def load(file) | |
@data = JSON.parse(File.read(file)) | |
end | |
## Return the 7 classifications in the sole "allocationSevenBox" top level classification. | |
# There is only one top level classification: | |
# irb(main):011:0> h.classifications[0]["classificationTypeName"] | |
# => "allocationSevenBox" | |
def classifications | |
@data["spData"]["classifications"].first["classifications"] | |
end | |
# Returns the single classification entrypoint of type "allocationSevenBox" | |
def classification | |
Classification.new(@data["spData"]["classifications"].first) | |
end | |
def table | |
classification.table | |
end | |
## | |
# irb(main):004:0> h.types | |
# => ["Cash", "Intl Bonds", "U.S. Bonds", "Intl Stocks", "U.S. Stocks", "Alternatives", "Unclassified"] | |
def types | |
classifications.collect() do |c| | |
c["classificationTypeName"] | |
end | |
end | |
end | |
run! if __FILE__==$0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment