//+------------------------------------------------------------------+ //| Shutdown | //+------------------------------------------------------------------+ public void Shutdown() { if (m_deal_array != null) { m_deal_array.Dispose(); m_deal_array = null; } if (m_manager != null) { m_manager.Dispose(); m_manager = null; } if (m_user != null) { m_user.Dispose(); m_user = null; } if (m_account != null) { m_account.Dispose(); m_account = null; } SMTManagerAPIFactory.Shutdown(); }