private void btnTradeConfirmations_Click(object sender, EventArgs e)
        {
            if (mCurrentAccount == null) return;

            ConfirmationForm confirmations = new ConfirmationForm(mCurrentAccount);
            confirmations.ShowDialog();
        }