Revert bank profiles to invertAmountSign: true

Huntington and Fidelity CSVs use positive for deposits (CREDIT) and
negative for withdrawals (DEBIT). The previous change to false was wrong.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-22 09:32:36 -04:00
parent a472749b21
commit 705a23c520

View File

@@ -52,7 +52,7 @@ export const bankProfiles: BankProfile[] = [
dateColumn: 'Date',
descriptionColumn: 'Description',
amountColumn: 'Amount',
invertAmountSign: false, // positive = DEBIT (withdrawal), negative = CREDIT (deposit)
invertAmountSign: true, // negative = DEBIT (withdrawal), positive = CREDIT (deposit)
detectColumns: ['Date', 'Description', 'Amount', 'Split', 'Tags'],
},
{
@@ -63,7 +63,7 @@ export const bankProfiles: BankProfile[] = [
dateColumn: 'Run Date',
descriptionColumn: 'Description',
amountColumn: 'Amount($)',
invertAmountSign: false, // positive = DEBIT (purchase/withdrawal), negative = CREDIT (deposit/dividend)
invertAmountSign: true, // negative = DEBIT (purchase/withdrawal), positive = CREDIT (deposit/dividend)
detectColumns: ['Run Date', 'Description', 'Amount($)'],
},
]