Tatu Pesonen

Results 4 comments of Tatu Pesonen

Experiencing the same issue.

Hey, sorry for the super late reply. I will look into creating a PR for this today!

I changed the `SoapResponse` to this: ```rust #[derive(Deserialize, Debug, Serialize)] #[serde(rename = "soapenv:Envelope")] pub struct SoapResponse { #[serde(rename = "@xmlns:soapenc")] soapenc: String, #[serde(rename = "@xmlns:soapenv")] soapenv: String, #[serde(rename = "@xmlns:xsd")]...

Here's an example of Kraken Exchange's export format: ``` "txid","ordertxid","pair","time","type","ordertype","price","cost","fee","vol","margin","misc","ledgers" "ANONYMIZED","ANONYMIZED","XETHZEUR","2021-07-23 11:22:54.9881","buy","limit",1648.83000,1648.83000,4.28696,1.00000000,0.00000,"","ANONYMIZED, ANONYMIZED" ``` Ledgers field can safely be ignored in this case. How to interpret the asset codes: https://support.kraken.com/hc/en-us/articles/360001185506-How-to-interpret-asset-codes...