mirror of
https://github.com/we-promise/sure.git
synced 2026-05-25 13:34:58 +00:00
* fix(exports): align CSV roundtrip contracts * fix(exports): version CSV export contract * fix(exports): stabilize CSV export values * fix(imports): preserve legacy CSV roundtrip contracts * fix(imports): escape pipe characters in CSV tags --------- Signed-off-by: Juan José Mata <juanjo.mata@gmail.com> Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
110 lines
3.0 KiB
Ruby
110 lines
3.0 KiB
Ruby
class TradeImport < Import
|
|
def import!
|
|
transaction do
|
|
mappings.each(&:create_mappable!)
|
|
|
|
trades = rows.map do |row|
|
|
mapped_account = if account
|
|
account
|
|
else
|
|
mappings.accounts.mappable_for(row.account)
|
|
end
|
|
|
|
# Try to find or create security with ticker only
|
|
security = find_or_create_security(
|
|
ticker: row.ticker,
|
|
exchange_operating_mic: row.exchange_operating_mic
|
|
)
|
|
|
|
Trade.new(
|
|
security: security,
|
|
qty: row.qty,
|
|
currency: row.currency.presence || mapped_account.currency,
|
|
price: row.price,
|
|
investment_activity_label: investment_activity_label_for(row.qty),
|
|
entry: Entry.new(
|
|
account: mapped_account,
|
|
date: row.date_iso,
|
|
amount: row.signed_amount,
|
|
name: row.name,
|
|
currency: row.currency.presence || mapped_account.currency,
|
|
import: self,
|
|
import_locked: true # Protect from provider sync overwrites
|
|
),
|
|
)
|
|
end
|
|
|
|
Trade.import!(trades, recursive: true)
|
|
end
|
|
end
|
|
|
|
def mapping_steps
|
|
base = []
|
|
base << Import::AccountMapping if account.nil?
|
|
base
|
|
end
|
|
|
|
def required_column_keys
|
|
%i[date ticker qty price]
|
|
end
|
|
|
|
def column_keys
|
|
base = %i[date ticker exchange_operating_mic currency qty price name]
|
|
base.unshift(:account) if account.nil?
|
|
base
|
|
end
|
|
|
|
def dry_run
|
|
mappings = { transactions: rows_count }
|
|
|
|
mappings.merge(
|
|
accounts: Import::AccountMapping.for_import(self).creational.count
|
|
) if account.nil?
|
|
|
|
mappings
|
|
end
|
|
|
|
def csv_template
|
|
template = <<~CSV
|
|
date*,ticker*,exchange_operating_mic,currency,qty*,price*,account,name
|
|
2024-05-15,AAPL,XNAS,USD,10,150.00,Trading Account,Apple Inc. Purchase
|
|
2024-05-16,GOOGL,XNAS,USD,-5,2500.00,Investment Account,Alphabet Inc. Sale
|
|
2024-05-17,TSLA,XNAS,USD,2,700.50,Retirement Account,Tesla Inc. Purchase
|
|
CSV
|
|
|
|
csv = CSV.parse(template, headers: true)
|
|
csv.delete("account") if account.present?
|
|
csv
|
|
end
|
|
|
|
private
|
|
def investment_activity_label_for(qty)
|
|
# Set activity label based on quantity signage
|
|
# Buy trades have positive qty, Sell trades have negative qty
|
|
return nil if qty.blank? || qty.to_d.zero?
|
|
qty.to_d.positive? ? "Buy" : "Sell"
|
|
end
|
|
|
|
def find_or_create_security(ticker: nil, exchange_operating_mic: nil)
|
|
return nil unless ticker.present?
|
|
|
|
# Avoids resolving the same security over and over again (resolver potentially makes network calls)
|
|
@security_cache ||= {}
|
|
|
|
cache_key = [ ticker, exchange_operating_mic ].compact.join(":")
|
|
|
|
security = @security_cache[cache_key]
|
|
|
|
return security if security.present?
|
|
|
|
security = Security::Resolver.new(
|
|
ticker,
|
|
exchange_operating_mic: exchange_operating_mic.presence
|
|
).resolve
|
|
|
|
@security_cache[cache_key] = security
|
|
|
|
security
|
|
end
|
|
end
|