Skip to content

Commit

Permalink
Merge pull request #56 from charvam/ET-971_Coinbase_CSV_extension_quotes
Browse files Browse the repository at this point in the history
ET-971 Coinbase CSV parser extension - var. with quotation marks
  • Loading branch information
generalbytes authored Jul 12, 2021
2 parents a2446f0 + 009b28c commit 0ae050d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
projectVersion=3.4.0
projectVersion=3.5.0
pf4jVersion=3.4.0
xchangeVersion=5.0.4
requiredEverytradeVersion=>=20210427
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,14 @@ public class EverytradeCsvMultiParser implements ICsvParser {
SupportedExchange.COINBASE
)
);
EXCHANGE_PARSE_DETAILS.put(
"^\"Timestamp\",\"Transaction Type\",\"Asset\",\"Quantity Transacted\",\"[A-Z]{3} Spot Price at Transaction\",\"[A-Z]{3} " +
"Subtotal\",\"[A-Z]{3} Total \\(inclusive of fees\\)\",\"[A-Z]{3} Fees\",\"Notes\"$",
new ExchangeParseDetail(
CoinbaseExchangeSpecificParser::new,
SupportedExchange.COINBASE
)
);
}

public static final ParserDescriptor DESCRIPTOR = new ParserDescriptor(
Expand Down

0 comments on commit 0ae050d

Please sign in to comment.