Find a Branch | Financial Services | Brokerage Firm (2024)

'; break; case 'subscribe': contentTitle = 'Subscribe'; contentWidth = 'width: 320px;'; contentString = '

'; break; default: contentTitle = 'Email to a Friend'; contentString = '

'; } var finalStringStart = '

' + contentTitle + '

'; var finalStringEnd = '

Close

'; $(this).after(finalStringStart + contentString + finalStringEnd); if ($('.overlayProx').height() > availTopSpace) { verticalString = 'top: 42px;'; arrowString += 'top: -52px;'; arrowDirection = 'Up'; } else { verticalString = 'top:-' + ($('.overlayProx').height() + 13) + 'px;'; arrowString += 'bottom:-17px;'; arrowDirection = 'Down'; } var arrowHString = 'left: ' + ($triggerObj.offset().left - $('.overlayProx').offset().left - 31 + $triggerObj.width() / 2 - 11) + 'px; '; $('.overlayArrow').attr('style', arrowString + arrowHString).addClass('overlayArrow' + arrowDirection); $('.overlayProx').attr('style', $('.overlayProx').attr('style') + ';' + verticalString + "right:-10px;").focus(); $('.overlayClose, .cs_gr_btn').on("click", function () { $('.overlayProx').prev().focus(); $triggerObj.attr('aria-expanded', 'false'); $('.overlayProx').remove(); }); if ($.browser.mozilla) { $('.overlayClose, .cs_gr_btn').keypress(checkForEnter); } else { $('.overlayClose, .cs_gr_btn').keydown(checkForEnter); } $('.newWindowOverlay').click(function () { window.open($(this).attr('href')); $('.overlayProx').remove(); $triggerObj.attr('aria-expanded', 'false'); return false; }); setupClickTracking('.overlayProx [data-tracking]'); $('.share-icon-cntr p').click(function () { var $currObj = $(this); var currIndex = $('.share-icon-cntr p').index($currObj); var parent4 = $currObj.parent().parent().parent().parent(); var parent5 = parent4.parent().parent().parent(); if ($(parent4).hasClass('subscribeCntr')) { var targetIndex = $('.share-icon-cntr p').length - 1 - currIndex; $($('.subscribeCntr > [data-tracking]')[targetIndex]).click(); } else { var targetIndex = currIndex; if ($(parent5).hasClass('shareFooterCntr')) { $($('.shareFooterCntr .iconShare')[targetIndex]).click(); } else { $($('.pageUtilities .iconShare')[targetIndex + 1]).click(); } } }); event.stopPropagation(); $('.overlayProx').on("click", function (e1) { e1.stopPropagation(); }); $('.overlayClose').on(($.browser.mozilla ? 'keypress' : 'keydown'), function (e) { if (e.keyCode == 9) { if (!e.shiftKey) { $('.overlayProx').prev().focus(); $triggerObj.attr('aria-expanded', 'false'); $('.overlayProx').remove(); } } }); $('#Send').on('click', function () { if (checkInput(document.getElementById('EmailForm'))) { var dataString = 'sender_name=' + $('#sender_name').val() + '&sender_email=' + $('#sender_email').val() + '&recipients=' + $('#recipients').val() + '&article_url=' + window.location.href + '&sharevalidationtoken=' + encodeURIComponent($('#sharevalidationtoken').val()); $.ajax({ type: "POST", url: "/secure/asset?cmsid=CC-EMAILFRIEND-CONFIRM", data: dataString, success: function (data) { var successMsg; if (data.indexOf('Your e-mail message has been sent.') != -1) { successMsg = "

Thank you.

Your email message has been sent.

"; } else { successMsg = "

Thank you.

EC.

"; } $('#EmailForm').html(successMsg); } }); scatShareLinkTrack('o', 'emailShare'); return false; } }); $("#EmailForm .cs_gr_btn").on('click', function () { $("#EmailForm span.cs_error").html(""); $("#EmailForm input").removeClass("cs_error"); $("#EmailForm input").attr('value', ''); }); }); if ($.browser.mozilla) { $('.overlayShareTrigger').keypress(checkForEnter); } else { $('.overlayShareTrigger').keydown(checkForEnter); } var qs = (function (a) { if (a == "") return {}; var b = {}; for (var i = 0; i < a.length; ++i) { var p = a[i].split('='); if (p.length != 2) continue; b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " ")); } return b; })(window.location.search.substr(1).split('&')); $('#article_url').val(qs["csUrl"]); function checkInput(f) { debugger; var recAddress = f.recipients.value.split(","); var senderAddress = f.sender_email.value; var sender = f.sender_name.value; var error = false; var i = recAddress.length; $("#standproxoverlay span.cs_error").html(""); $("#standproxoverlay form input").removeClass("cs_error"); if (i > 3) { i = 3; $("#cs_error_recipients").html("This page can be sent to a maximum of three recipients."); $("#recipients").addClass("cs_error"); f.recipients.value = recAddress; error = true; } if (f.recipients.value === "") { $("#cs_error_recipients").html("Please enter the recipient's email address."); $("#recipients").addClass("cs_error"); error = true; } else if (i > 0) { for (var j = 0; j < i; j++) { if ((recAddress[j].indexOf("@") === -1) || (recAddress[j].indexOf(".") === -1)) { $("#cs_error_recipients").html("Please use the following format for each recipient's email address: name@example.com"); $("#recipients").addClass("cs_error"); error = true; } } } if (sender === "") { $("#cs_error_name").html("Please enter your name."); $("#sender_name").addClass("cs_error"); error = true; } if (senderAddress === "") { $("#cs_error_email").html("Please enter your email address."); $("#sender_email").addClass("cs_error"); error = true; } else if ((senderAddress.indexOf("@") === -1) || (senderAddress.indexOf(".") === -1)) { $("#cs_error_email").html("Please enter your email address using the following format: name@example.com"); $("#sender_email").addClass("cs_error"); error = true; } if (f.article_url.value === "") { f.article_url.value = parent.window.location.href; } if (error === true) { return false; } else { return true; } } function checkInput(f) { debugger; var recAddress = f.recipients.value.split(","); var senderAddress = f.sender_email.value; var sender = f.sender_name.value; var error = false; var i = recAddress.length; var regex = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; var regexSchwab = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@schwab(?:\.com)*$/; var errorDetails = ""; $("#EmailForm span.cs_error").html(""); $("#EmailForm input").removeClass("cs_error"); $("#cs_complete_error").html(""); $("#cs_complete_error").removeAttr("aria-label"); if (sender === "") { var senderErrorMessage = "Please enter your name."; $("#cs_error_name").html(senderErrorMessage); $("#sender_name").addClass("cs_error"); errorDetails += senderErrorMessage; error = true; } if (senderAddress === "") { var senderAddressErrorMessage = "Please enter your email address."; $("#cs_error_email").html(senderAddressErrorMessage); $("#sender_email").addClass("cs_error"); errorDetails += senderAddressErrorMessage; error = true; } else if (!regex.test(senderAddress) || regexSchwab.test(senderAddress)) { var senderAddressInValidErrorMessage = "Please enter your email address using the following format: name@example.com other than: @schwab.com"; $("#cs_error_email").html(senderAddressInValidErrorMessage); $("#sender_email").addClass("cs_error"); errorDetails += senderAddressInValidErrorMessage; error = true; } if (i > 3) { i = 3; var recipientsInvalidCountErrorMessage = "This page can be sent to a maximum of three recipients." $("#cs_error_recipients").html(recipientsInvalidCountErrorMessage); $("#recipients").addClass("cs_error"); errorDetails += recipientsInvalidCountErrorMessage; f.recipients.value = recAddress; error = true; } if (f.recipients.value === "") { var recipientsInvalidErrorMessage = "Please enter the recipient's email address." $("#cs_error_recipients").html(recipientsInvalidErrorMessage); $("#recipients").addClass("cs_error"); errorDetails += recipientsInvalidErrorMessage; error = true; } else if (i > 0) { for (var j = 0; j < i; j++) { if (!regex.test(recAddress[j].trim()) || regexSchwab.test(recAddress[j].trim())) { var recipientsInvalidEmailErrorMessage = "Please use the following format for each recipient's email address: name@example.com other than: @schwab.com" $("#cs_error_recipients").html(recipientsInvalidEmailErrorMessage); $("#recipients").addClass("cs_error"); errorDetails += recipientsInvalidEmailErrorMessage; error = true; } } } if (f.article_url.value === "") { f.article_url.value = parent.window.location.href; } if (error === true) { $("#cs_complete_error").attr("aria-label", errorDetails); $("#cs_complete_error").focus(); return false; } else { return true; } } if (qs["csUrl"]) { document.domain = 'schwab.com'; }; if (qs["shc"]) { var hideClose = qs["shc"].toLowerCase(); if (hideClose === "n") { $('.cs_gr_btn').hide(); } } } /* check for console and write if there. for older browsers */ function logConsole(strWrite) { if (window.console) { console.log(strWrite) } } function setupShareOverlay() { /* Setting the Social Media Links Dynamically */ function parseUri(str) { var o = parseUri.options, m = o.parser[o.strictMode ? "strict" : "loose"].exec(str), uri = {}, i = 14; while (i--) { uri[o.key[i]] = m[i] || ""; } uri[o.q.name] = {}; uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { if ($1) { uri[o.q.name][$1] = $2; } }); return uri; } parseUri.options = { strictMode: false, key: ["source", "protocol", "authority", "userInfo", "user", "password", "host", "port", "relative", "path", "directory", "file", "query", "anchor"], q: { name: "queryKey", parser: /(?:^|&)([^&=]*)=?([^&]*)/g }, parser: { strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ } } function adjustURL(sm) { var omitList = ["SM", "cmsid", "lvl1", "lvl2", "goback"]; var parsed = parseUri(document.URL); var rurl = parsed.protocol; rurl += "://"; rurl += parsed.host; if (parsed.port) { rurl += ":"; rurl += parsed.port; } rurl += parsed.path; if (parsed.queryKey) { rurl += "?"; for (p in parsed.queryKey) { var ok = true; for (var i = 0; i < omitList.length; i++) { if (omitList[i] == p) { ok = false; break; } } if (ok) { rurl += p + "=" + parsed.queryKey[p] + "&"; } } } var last = rurl.charAt(rurl.length - 1); if (last != "&" && last != "?") rurl += "?"; rurl += "SM=" + sm; if (sm == 'facebookInvestingInsight') { return rurl } else { return escape(rurl); } } function adjustFacebookURL() { $(document).ready(function () { var shareImage, shareImageURL; if (document.getElementById('shareImage')) { shareImage = document.getElementById('shareImage').src; shareImageURL = shareImage.replace(new RegExp("&", "g"), "%26"); } var url = "http://www.facebook.com/sharer.php" + "?u=" + adjustURL("Facebook"); /* if shareImage exists, we are using new model for specified parameters */ if (location.href.toLowerCase().indexOf("/public/schwab/resource_center/investing_ideas") != -1) { var fbTitle = ''; var fbDescription = ''; var fbURL = adjustURL("facebookInvestingInsight"); url = 'http://www.facebook.com/sharer.php?s=100&p[title]=' + encodeURIComponent(fbTitle) + '&p[summary]=' + encodeURIComponent(fbDescription) + '&p[url]=' + fbURL; if (shareImage) { url += '&p[images][0]=' + (shareImageURL) }; } $(".iconFacebook").attr("href", url); $(".iconFacebook").attr("id", "&lid=global_share_facebook"); $(".iconFacebook").attr("name", "&lid=global_share_facebook"); }); } function adjustLinkedInURL() { var url = "http://www.linkedin.com/shareArticle" + "?mini=true&url=" + adjustURL("LinkedIn") + "&title=" + escape(document.title) + "&summary=" + "&source=Charles+Schwab"; $(".iconLinkedin").attr("href", url); $(".iconLinkedin").attr("id", "&lid=global_share_linkedin"); $(".iconLinkedin").attr("name", "&lid=global_share_linkedin"); } function adjustTwitterURL() { title = escape("Share: "); var url = "http://twitter.com/home" + "?status=" + title + adjustURL("Twitter"); $(".iconTwitter").attr("href", url); $(".iconTwitter").attr("id", "&lid=global_share_twitter"); $(".iconTwitter").attr("name", "&lid=global_share_twitter"); } function adjustGooglePlusURL() { var url = "https://plus.google.com/share" + "?url=" + adjustURL("GooglePlus"); $(".iconGooglePlus").attr("href", url); $(".iconGooglePlus").attr("id", "&lid=global_share_google+"); $(".iconGooglePlus").attr("name", "&lid=global_share_google+"); } adjustFacebookURL(); adjustLinkedInURL(); adjustTwitterURL(); adjustGooglePlusURL(); $(".email").attr("id", "&lid=global_share_email"); $(".email").attr("name", "&lid=global_share_email"); } function setupButton() { $('.btn').each(function () { $(this).append(''); }); } function setupNewWindow() { $('.newWindow').on("click", function () { window.open($(this).attr('href')); return false; }); }

  • Print

Find a Branch Find a Consultant

Attend one of our complimentary workshops. Findworkshops

List View

Map View

Branches near you

Need another kind of assistance?

For support 24/7, please call 800-435-4000.


We think you are trying to enter an international address.

This branch locator works only for locations inside the U.S. For information on Schwab services in other countries or regions, please see the list below. If you are searching for a U.S. location, please enter a valid zip code OR city and state.

Get the assistance you need—wherever you are.

Securities, products, and services are not available in all countries and are subject to country-specific restrictions.

For support 24/7, please call 800-435-4000.

Charles Schwab & Co., Inc. and Charles Schwab Bank are separate but affiliated companies and wholly owned subsidiaries of The Charles Schwab Corporation.

Find a Branch | Financial Services | Brokerage Firm (2024)

FAQs

Find a Branch | Financial Services | Brokerage Firm? ›

The biggest firms in the U.S. are Charles Schwab, Fidelity, Vanguard, and JPMorgan. These companies provide brokerage services to millions of clients.

What are the top 3 brokerage firms? ›

The biggest firms in the U.S. are Charles Schwab, Fidelity, Vanguard, and JPMorgan. These companies provide brokerage services to millions of clients.

Did TD Ameritrade get bought out? ›

Welcome to Schwab—we're glad you're here. TD Ameritrade, Inc. has been acquired by Charles Schwab, and all accounts have been moved.

What is Charles Schwab known for? ›

(born July 29, 1937) is an American investor and financial executive. He is the founder and chairman of the Charles Schwab Corporation. He pioneered discount sales of equity securities starting in 1975. His company became by far the largest discount securities dealer in the United States.

What bank is associated with Charles Schwab? ›

Charles Schwab & Co., Inc., Charles Schwab Bank, SSB, Charles Schwab Premier Bank, SSB and Charles Schwab Trust Bank are separate but affiliated companies and subsidiaries of The Charles Schwab Corporation.

What is the safest brokerage firm? ›

Summary of the best brokers for trading stocks:
  • Fidelity Investments.
  • Interactive Brokers.
  • Charles Schwab.
  • Webull.
  • J.P. Morgan Self-Directed Investing.
  • Robinhood.
  • SoFi Active Investing.
  • E*TRADE.
May 31, 2024

Which broker millionaires use? ›

Best Brokers for High Net Worth Individuals
  • Charles Schwab - Best for high net worth investors.
  • Merrill Edge - Best rewards program.
  • Fidelity - Best overall online broker.
  • Interactive Brokers - Great overall, best for professionals.
  • E*TRADE - Best web-based platform.
Mar 28, 2024

Which is better Fidelity or Charles Schwab? ›

Schwab and Fidelity offer similar customer experiences. As a result, most types of investors can find benefits to working with either. The choice between the two may prove a matter of preferred trading instruments: Schwab is better equipped for futures, and only Fidelity offers direct crypto trading.

Is Charles Schwab owned by Bank of America? ›

In a little more than a decade, his company defies conventional wisdom by opening nearly 100 branches, offering 24-hour quotes, and even exploring online services. The company becomes "America's Largest Discount Broker," and later a subsidiary of Bank of America.

Which is better, Charles Schwab or Edward Jones? ›

Choosing between Edward Jones and Charles Schwab hinges on individual circ*mstances and financial objectives. While Edward Jones excels in personalized financial advising and strong client-advisor relationships, Charles Schwab stands out for its comprehensive range of financial services and transparent fee structures.

What is the Charles Schwab bank controversy? ›

Yield-hungry customers moved money into options like money-market funds. Since early 2022, Schwab has lost some $175 billion in bank deposits, or nearly 40% of what it held at its peak. Trading activity also stalled, since customers could make robust returns just parking their money in cash-like investments.

Is Schwab financially stable? ›

Charles Schwab has the Financial Strength Rank of 4.

GuruFocus Financial Strength Rank measures how strong a company's financial situation is.

What is the average account balance at Schwab? ›

The average account balance across all participant accounts finished at $273,412 for Q3, the Charles Schwab SDBA Indicators Q3 2022 Report found. That is lower than the $283,485 average value at the end of Q2 2022 and far lower than the average balance of $341,068 for 2021.

What are the top 5 brokerage company? ›

  • Paytm Money. Paytm Money is a relatively new entrant in the broking space, offering a simplified and user-friendly trading platform that caters to beginners and tech-savvy investors. ...
  • Zerodha. ...
  • Aditya Birla Capital. ...
  • Upstox. ...
  • ICICIdirect. ...
  • HDFC Securities. ...
  • Kotak Securities.

What are the top 5 investment firms? ›

5 Largest Brokerage Firms of 2024
Stock Brokerage FirmAssets under management*
Vanguard Group$8.6 trillion
Charles Schwab$8.5 trillion
Fidelity Investments$4.4 trillion
JPMorgan Chase & Co.$3.9 trillion
1 more row

Is Charles Schwab or Fidelity better? ›

Fidelity is the brokerage firm for you if you want to trade cryptocurrencies, while Schwab is the right choice if you want to trade futures. Schwab is the only brokerage firm of the two that offers futures, but that's not the only reason traders may want to consider Schwab over Fidelity.

Which is the most trusted brokerage in the world? ›

Best Online Brokerage Accounts and Trading Platforms of 2024
  • Best Overall: Fidelity.
  • Best for Low Costs: Fidelity.
  • Best for Beginners: Charles Schwab.
  • Best for Advanced Traders: Interactive Brokers.
  • Best for ETFs: Fidelity.
  • Best for Options Trading: tastytrade.
  • Best for International Trading: Interactive Brokers.

References

Top Articles
Latest Posts
Article information

Author: Roderick King

Last Updated:

Views: 6298

Rating: 4 / 5 (71 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Roderick King

Birthday: 1997-10-09

Address: 3782 Madge Knoll, East Dudley, MA 63913

Phone: +2521695290067

Job: Customer Sales Coordinator

Hobby: Gunsmithing, Embroidery, Parkour, Kitesurfing, Rock climbing, Sand art, Beekeeping

Introduction: My name is Roderick King, I am a cute, splendid, excited, perfect, gentle, funny, vivacious person who loves writing and wants to share my knowledge and understanding with you.