System.out.println("Balance CNY balance: " + balance.getCnyBalance());
System.out.println("Balance BTC balance: " + balance.getBtcBalance());
System.out.println("Balance CNY reserved: " + balance.getCnyReserved());
System.out.println("Balance BTC reserved: " + balance.getBtcReserved());
BTCTradeWallet wallet = accountService.getBTCTradeWallet();
System.out.println("Wallet address: " + wallet.getAddress());
}