Inspired by fhqvst/avanza
```rust use avanza_rs::client:{Client, Credentials};
let username = "username"; let password = "password"; let totpsecret = "totpsecret";
let credentials = super::client::Credentials { username: String::from(username), password: String::from(password), totpsecret: String::from(totpsecret) };
let client = super::client::Client::authenticate(&credentials).await?;
let accounts = client.list_accounts().await?;
let account = client.get_acccount("1234567").await?;
let stockorder = StockOrder { orderbookid: String::from("5247"), account_id: account.id.clone(), price: 215.0, volume: 10, side: Side::BUY, };
let result = client.newstockorder(&stock_order).await?;
```
cargo install totp
.totp <TOTP_SECERT>
and enter the 6 digit code on Avanza.<TOTP_SECERT>
to .env