{"id":1076238,"date":"2026-04-21T14:40:46","date_gmt":"2026-04-21T18:40:46","guid":{"rendered":"https:\/\/www.finder.com\/ca\/?p=1076238"},"modified":"2026-04-21T16:44:35","modified_gmt":"2026-04-21T20:44:35","slug":"options-profit-calculator","status":"publish","type":"post","link":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator","title":{"rendered":"Options profit calculator"},"content":{"rendered":"<p>Evaluating the risk\/reward profile of a trade is an important part of trading options, helping you optimize your strategies and make informed investment decisions.<\/p><p>Our investment calculator helps you estimate profits and losses for call options and put options by considering various factors, such as strike price, premium, share price and the number of contracts.<\/p><p>Input your details to quickly see the potential outcomes of your options trades.<\/p><style>\n.calculator {\n    background-color: #fff;\n    padding: 20px;\n    border-radius: 5px;\n    width: 600px; \/* Wider width *\/\n}\n\n.calculator-title {\n    text-align: center;\n}\n\n.calculator-subtitle {\n    text-align: center;\n}\n\n.form {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 10px; \/* Space between inputs *\/\n}\n\n.input-error {\n    border: 2px solid red;\n}\n\n.form-group {\n    display: flex;\n    flex-direction: column;\n    flex: 1 1 calc(50% - 10px); \/* Takes 50% of the row minus the gap *\/\n    min-width: 250px; \/* Prevents inputs from being too small *\/\n}\n\n.form-group.centered {\n    display: flex;\n    flex-direction: column;\n    align-items: center; \/* Centers the content horizontally *\/\n}\n\n.label-op {\n    margin-top: 10px;\n}\n\n.input-wrapper {\n    position: relative;\n}\n\n.input-dollar {\n    padding-left: 25px; \/* Space for the $ symbol *\/\n}\n\n.input-dollar, .input-select {\n    padding-right: 8px; \/* Keep right padding consistent *\/\n    height: 36px; \/* Ensure consistent height *\/\n    width: 100%; \/* Keep full width *\/\n    border: 1px solid #0A41ee !important;\n    border-radius: 4px;\n    box-sizing: border-box; \/* Ensures padding and border are included *\/\n}\n\n.input-select {\n    padding-left: 5px; \/* Added padding to the right of the options input field *\/\n}\n\n.input-wrapper.dollar-input::before {\n    content: '$';\n    position: absolute;\n    left: 10px;\n    top: 50%;\n    transform: translateY(-50%);\n    color: #333; \/* Darker gray color *\/\n    font-weight: 600;\n}\n\n.calc-profit-button {\n    padding: 10px;\n    margin-top: 20px;\n    margin-left: 35%; \/* Added 35% margin to the left *\/\n    margin-right: 35%; \/* Added 35% margin to the right *\/\n    border: 1px solid #0A41ee;\n    border-radius: 4px;\n    width: 30%; \/* Adjusted width to keep it centered with the margins *\/\n}\n\n.result {\n    margin-top: 20px;\n    text-align: center;\n    flex-basis: 100%; \/* Ensures the result takes full width *\/\n}\n\n.main-calc-container {\n    display: flex;\n    justify-content: center;\n    align-items: baseline; \/* Aligns to baseline *\/\n    \/*min-height: 100vh;*\/\n}\n<\/style>\n\n<div class=\"u-grid u-grid--alignMiddle main-calc-container\">\n    <div class=\"calculator luna-card luna-card--shadow\">\n        <h1 class=\"calculator-title\">Options Investment Calculator<\/h1>\n        <form id=\"calculatorForm\" class=\"form\">\n            <div class=\"form-group\">\n                <label class=\"label-op\" for=\"optionType\">Option Type:<\/label>\n                <select id=\"optionType\" name=\"optionType\" class=\"input-select\">\n                    <option value=\"call\">Call Option<\/option>\n                    <option value=\"put\">Put Option<\/option>\n                <\/select>\n            <\/div>\n\n            <div class=\"form-group\">\n                <label class=\"label-op\" for=\"strikePrice\">Strike Price:<\/label>\n                <div class=\"input-wrapper dollar-input\">\n                    <input type=\"number\" id=\"strikePrice\" name=\"strikePrice\" required class=\"input-dollar\">\n                <\/div>\n            <\/div>\n\n            <div class=\"form-group\">\n                <label class=\"label-op\" for=\"premiumPaid\">Premium Paid:<\/label>\n                <div class=\"input-wrapper dollar-input\">\n                    <input type=\"number\" id=\"premiumPaid\" name=\"premiumPaid\" required class=\"input-dollar\">\n                <\/div>\n            <\/div>\n\n            <div class=\"form-group\">\n                <label class=\"label-op\" for=\"sharePrice\">Share Price:<\/label>\n                <div class=\"input-wrapper dollar-input\">\n                    <input type=\"number\" id=\"sharePrice\" name=\"sharePrice\" required class=\"input-dollar\">\n                <\/div>\n            <\/div>\n\n            <div class=\"form-group centered\">\n                <label class=\"label-op\" for=\"numberOfContracts\">Number of Contracts<span class=\"hasPopover table-popover\" title=\"\" data-placement=\"right\" data-content=\"Each contract is 100 shares\"><\/span>:<\/label>\n                <div class=\"input-wrapper\">\n                    <input type=\"number\" id=\"numberOfContracts\" name=\"numberOfContracts\" required class=\"input-dollar\">\n                <\/div>\n            <\/div>\n\n            <button class=\"luna-button luna-button--primary calc-profit-button\" type=\"button\" onclick=\"calculateProfit()\">Calculate Profit<\/button>\n        <\/form>\n\n        <div class=\"result\" id=\"result\">\n            <h2 class=\"calculator-subtitle\">Estimated Profit: <span id=\"profitDisplay\">$0.00<\/span><\/h2>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\nfunction calculateProfit() {\n    const fields = [\n        { id: 'strikePrice', name: 'Strike Price' },\n        { id: 'premiumPaid', name: 'Premium Paid' },\n        { id: 'sharePrice', name: 'Share Price' },\n        { id: 'numberOfContracts', name: 'Number of Contracts' }\n    ];\n\n    let allFieldsFilled = true;\n\n    \/\/ Check all fields and highlight empty ones\n    fields.forEach(field => {\n        const inputElement = document.getElementById(field.id);\n        if (inputElement.value === \"\") {\n            inputElement.classList.add('input-error');\n            allFieldsFilled = false;\n        } else {\n            inputElement.classList.remove('input-error');\n        }\n    });\n\n    if (!allFieldsFilled) {\n        alert(\"Please fill out all fields before calculating the profit.\");\n        return;\n    }\n\n    const optionType = document.getElementById('optionType').value;\n    const strikePriceNum = parseFloat(document.getElementById('strikePrice').value);\n    const premiumPaidNum = parseFloat(document.getElementById('premiumPaid').value);\n    const sharePriceNum = parseFloat(document.getElementById('sharePrice').value);\n    const numberOfContractsNum = parseInt(document.getElementById('numberOfContracts').value);\n\n    let profit;\n\n    if (optionType === 'call') {\n        profit = (sharePriceNum - strikePriceNum - premiumPaidNum) * numberOfContractsNum * 100;\n    } else if (optionType === 'put') {\n        profit = (strikePriceNum - sharePriceNum - premiumPaidNum) * numberOfContractsNum * 100;\n    }\n\n    \/\/ Format the profit with commas and two decimal places\n    document.getElementById('profitDisplay').textContent = `$${profit.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`;\n}\n\n\/\/ Add event listeners to remove error class when the user enters data\ndocument.querySelectorAll('input').forEach(input => {\n    input.addEventListener('input', function() {\n        if (this.value !== \"\") {\n            this.classList.remove('input-error');\n        }\n    });\n});\n<\/script>\n<h3>How to use this calculator<\/h3><p>Enter the following details to estimate your options profit or loss:<\/p><ul><li><strong>Option Type<\/strong>. Choose between a call option or a put option, depending on your strategy.<\/li><li><strong>Strike Price<\/strong>. Enter the option contract\u2019s strike price, which is the price you can buy or sell the stock.<\/li><li><strong>Premium Paid<\/strong>. Enter the premium, which is the price you pay for the contract.<\/li><li><strong>Share Price<\/strong>. Enter the stock\u2019s projected share price at expiration.<\/li><li><strong>Number of Contracts<\/strong>. Enter the number of contracts you\u2019d like to purchase.<\/li><\/ul><h3>Call options profit formula<\/h3><p>Use the following formula to calculate the potential profit from a call option, assuming it\u2019s in the money at expiration:<\/p><p><strong>Profit = (Stock Price at Expiration \u2013 Strike Price \u2013 Premium Paid) \u00d7 Number of Contracts \u00d7 100<\/strong><\/p><p>If the stock price at expiration is below or equal to the strike price, the option expires out of the money. The profit is the negative of the premium paid because the option expires worthless.<\/p><h3>Put options profit formula<\/h3><p>Use the following formula to calculate the potential profit from a put option, assuming it\u2019s in the money at expiration:<\/p><p><strong>Profit = (Strike Price \u2013 Stock Price at Expiration \u2013 Premium Paid) \u00d7 Number of Contracts \u00d7 100<\/strong><\/p><p>If the stock price at expiration is above or equal to the strike price, the option expires out of the money. The profit is the negative of the premium paid since the option expires worthless.<\/p><h3>The basics of options trading<\/h3><p>Options trading is a strategy that gives you the flexibility to buy or sell a stock at a set price within a specific timeframe, which can be a powerful tool for both managing risk and pursuing bigger returns.<\/p><p>It\u2019s different from regular stock trading because it lets you speculate on price movements or protect your investments with more precision.<\/p><p>You might buy a call option if you believe the price of a stock will rise above the option\u2019s strike price before the option expires. This allows you to purchase the stock at a lower price and potentially sell it at a higher market value for a profit.<\/p><p>On the other hand, you might buy a put option if you believe the price of a stock will decline before the option expires. This gives you the right to sell the stock at a higher strike price, which can either protect your investment from losses or allow you to profit from the drop in the stock\u2019s value.<\/p><p>If you\u2019re looking to <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/options-trading\">understand options trading<\/a>, finding the right platform and exploring <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/options-strategies\">options trading strategies<\/a> are key to getting started.<\/p><h3>Compare options trading platforms in Canada<\/h3><div class=\"content tableWithFilters\n        \n        \n         -table-container\" id=\"comparison-table\" data-section=\"table\">\n    <div class=\"tableWithFilters__tableTop\">\n            <\/div>\n            <div class=\"contentWrapper tableWithFilters__contentWrapper \">\n        <div class=\"tableWithFilters__table content\">\n        <script type=\"text\/javascript\">\nvar getEventToListenTo = () => {\n  if (window.matchMedia('(any-hover:none)').matches) {\n    if (window.matchMedia('(max-width: 450px)').matches) {\n      return \"scroll\";\n    }\n  }\n  return \"DOMContentLoaded\";\n};\nvar eventToWatch = getEventToListenTo();\nconst loadFinderScoreModalcafst = () => {\n  setTimeout(function(){\n   window.loadOnTheFly.html(\n      'partial', {\n          id: 'finder-score-cafst-modal-optimized',\n      },\n      function (response) {\n          document.getElementsByTagName(\"body\")[0].appendChild(response);\n          var modal = document.getElementById('finderScoreModal-cafst');\n          var closeButton = modal.querySelector(\"#closeButton\");\n          closeButton.onclick = function (event) {\n            modal.classList.add(\"elementHidden\");\n          };\n          var btnReadMethodology = modal.querySelector(\"#btnReadMethodology\");\n          btnReadMethodology.addEventListener(\"click\", function(e) {\n            modal.classList.add(\"elementHidden\");\n          });\n          window.onclick = function (event) {\n            if (event.target == modal) {\n              modal.classList.add(\"elementHidden\");\n            }\n          };\n      }\n  );\n  },1000);\n  window.removeEventListener(eventToWatch, loadFinderScoreModalcafst);\n};\nwindow.addEventListener(eventToWatch, loadFinderScoreModalcafst);\nvar showFinderScoreModal = (niche) => {\n  var existCondition = setInterval(function() {\n    const modalLoaded = document.getElementById('finderScoreModal-cafst');\n    if (modalLoaded) {\n      clearInterval(existCondition);\n      modalLoaded.classList.remove('elementHidden');\n    }\n  }, 500); \/\/ check every 0.5s\n}\n<\/script><div class=\"js-comparison-calculator comparison-calculator comparison-calculator--paginationNav f1   \" data-category=\"36db0cb6-8688-4d53-8c38-a0a499584f64\" data-template=\"comparison\" data-niche=\"CAFST\" data-site=\"CAFST\" data-auto-recalculate=\"true\" data-post-country=\"ca\" data-fieldset=\"share-trading\" data-post-id=\"1076238\" data-mobile-template=\"\" data-origin=\"straightforward-niche\" data-side-filters=\"false\" data-sort=\"\" data-enable-top-filters=\"false\" data-mobile-data-layout=\"grid\" data-redirect-tracking-params='{\"placement_type\":\"table\",\"site\":\"CAFST\",\"fieldset\":\"share-trading\",\"template\":\"comparison\",\"category_id\":\"36db0cb6-8688-4d53-8c38-a0a499584f64\",\"category_name\":\"Options Trading\",\"is_sorted\":0,\"is_filtered\":0,\"cta_render_ts\":1776830560}' data-disable-alternative-products=\"true\" data-force-enable-alternative-products=\"false\" data-niche-default-category=\"\" data-niche-default-path=\"\" data-experiment-flags=\"\"><section class=\"comparison-calculator--container\"><div class=\"comparison-actions\"><div class=\"mobileSort__root\"><\/div><div class=\"u-grid u-grid--gutterCollapse templateTable__dateAndCounterContainer\"><div class=\"u-grid__col \"><small class=\"templateTable__counterContainer\"><span id=\"js-current_product_count-36db0cb6-8688-4d53-8c38-a0a499584f64\">7 of 7 results<\/span><\/small><\/div><\/div><\/div><form action=\"\" name=\"compareForm\" method=\"post\" class=\"js-compare-bar\" data-compareinfobox=\"\" data-niche=\"CAFST\" data-site=\"CAFST\" data-table-id=\"1818\" data-origin=\"straightforward-niche\" data-record-type=\"product\" data-leadform-modal=\"\" data-redirect-tracking-params='{\"placement_type\":\"table\",\"site\":\"CAFST\",\"fieldset\":\"share-trading\",\"template\":\"comparison\",\"category_id\":\"36db0cb6-8688-4d53-8c38-a0a499584f64\",\"category_name\":\"Options Trading\",\"is_sorted\":0,\"is_filtered\":0,\"cta_render_ts\":1776830560}'><div class=\"comparisonHistory__root\"><\/div><table class=\"comparison-table f1-clarity-header has-sidepeek js-paginated-table-sorter paginated-table-sorter    has-combined-column-header  combined-column-header-grid js-calculator-table rewards--container loyalty-rewards--container\" id=\"comparison-table-0000000000\" data-has-sidepeek=\"true\" data-rendered-as=\"table\" data-loadmore=\"true\" data-loadmore-version=\"1\" data-loadmore-id=\"1009\" data-niche=\"cafst\" data-sorted=\"false\" data-sorting=\"\" data-pagination-nav=\"20\" data-pagination-nav-offset=\"0\" data-pagination-nav-next-offset=\"\" data-pagination-nav-prev-offset=\"0\" data-product-count=\"7\" data-manual-sponsored-count=\"\" data-include-inactive=\"false\" data-table-filter-presets=\"8a43995ccbe7d2498e3e781407f324e67aa975075bd7ec1deb1942e59a807748\" data-table-record-type=\"product\" data-table-record-ids='[\"7752f221-897b-460c-99e2-d0ab161d963d\",\"4683c389-dc2c-4956-85ea-16ae67f2aa37\",\"40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\",\"640c5498-6f16-411b-b038-998827a3a524\",\"d599fb3a-3477-4063-87f4-1540c26e9cad\",\"975d70ce-a17f-4df3-a20b-5979922c8032\",\"1f60143b-0440-4c50-9fb7-8cbd88131889\"]' data-total-data=\"7\" data-enable-top-filters=\"false\" data-total-product-count=\"7\" data-sponsored-placements=\"3\" data-sponsored-field-code=\"DERIVED.AD_RANK\" data-sponsored-max-per-provider=\"1\" data-override-table-position-configuration=\"false\"><thead class=\"u-bg--background-secondary u-color--foreground-main\"><tr class=\"grid-column-count-5\"><th data-mobile=\"hide\" data-ajax-table-sorter-column=\"CAFST.PRODUCT.DATAPOINT_CAFST_FINDER_SCORE\" class=\"comparison-table__feature default-sort-descending tablesorter-header tablesorter-headerUnSorted comparison-table__sortable th-combined-column-header\" data-field-targetable=\"\" data-sorter-title=\"finder_score\" data-ajax-table-sorter-default-direction=\"DESCENDING\"><span class=\"comparison-table__nameTooltip\" rel=\"popover\" data-tooltip-type=\"Finder Score\" data-content=\"The Finder Score is designed to make it easier to compare trading accounts.\">\n                    Finder Score\n                    <svg class=\"luna-icon\"><use xlink:href=\"#info\"><\/use><\/svg><\/span><svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"PRODUCT.DETAILS.ASSET_TYPES\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"available_asset_types\">\n                                                        Available Asset Types\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"PRODUCT.DETAILS.ACCOUNT_TYPES\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"account_types\">\n                                                        Account Types\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"PRODUCT.FEES.STOCK_FEE\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"stock_trading_fee\">\n                                                        Stock Trading Fee\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><th data-ajax-table-sorter-column=\"PRODUCT.FEES.ACCOUNT_FEE\" class=\"comparison-table__feature  tablesorter-header tablesorter-headerUnSorted comparison-table__sortable \" data-field-targetable=\"\" data-sorter-title=\"monthly_account_fee\">\n                                                        Monthly Account Fee\n                                                      <svg class=\"luna-icon comparison-table__sortIcon\"><use href=\"#chevron-up-down\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--asc luna-icon\"><use href=\"#arrow-up\"><\/use><\/svg><svg class=\"comparison-table__sortIcon--desc luna-icon\"><use href=\"#arrow-down\"><\/use><\/svg><\/th><\/tr><\/thead><tbody><style>\n\t.rewards-infobox .deals-banner { display:flex; flex-direction: row; border-radius: 16px; border:1px solid #000; overflow: hidden; }\n\t.rewards-infobox .deals-left { background:#FFD238; display:flex; flex-direction: column; align-items:center; justify-content:space-between; position: relative; width: 110px; cursor:pointer; }\n\t@media (min-width: 768px) { .rewards-infobox .deals-left { width: 110px; } }\n\t.rewards-infobox .deals-right { background:#1a50ff; color:#fff; padding: 8px; display:flex; flex-direction: column; gap:2px; justify-content:center; flex: 1; }\n\t@media (min-width: 768px) { .rewards-infobox .deals-right { padding: 8px; } }\n\t.rewards-infobox .deals-phone { position: absolute; top: 8px; left: 12px; }\n\t.rewards-infobox .deals-ends { color:#000; font-weight:800; font-size:12px; line-height:12px; padding:6px 10px; font-style: italic; border-radius: 9999px; display:inline-flex; align-items:center; text-transform: uppercase; display: none; }\n\t.rewards-infobox .deals-ends-text { padding-top: 2px; }\n\t.rewards-infobox .deals-header { display:flex; align-items:center; flex-wrap: nowrap; gap:4px; cursor:pointer; }\n\t.rewards-infobox .deals-amount { background:#FFD23B; color:#232320; font-size:32px; line-height:28px; letter-spacing: -0.75px; text-transform: uppercase; padding: 2px 4px 0 2px; border-radius: 4px; font-style: italic; font-weight: bold; font-size: 30px; }\n\t.rewards-infobox .deals-title { color: white; text-transform: uppercase; font-style:italic; font-weight:bold; font-size:16px; flex: 1; }\n\t.rewards-infobox .deals-list { display:flex; flex-direction: column; flex-wrap: wrap; gap:2px; margin: 4px 0 2px; cursor:pointer; }\n\t@media (min-width: 768px) { .rewards-infobox .deals-list { flex-direction: row; row-gap: 4px; column-gap: 20px; } }\n\t.rewards-infobox .deals-step { display:flex; align-items: baseline; gap:4px; }\n\t.rewards-infobox .deals-step-num { background:#FFD23B; color:#000; display:inline-flex; align-items:center; justify-content:center; font-weight:bold; font-style: italic; border-radius:2px; font-size:12px; margin-top:2px; line-height: 12px; padding-top: 2px; min-width: 11px; }\n\t.rewards-infobox .deals-step-text { color:#fff; font-size:12px; line-height:16px; font-weight: bold; }\n\t.rewards-infobox .deals-disclaimer { color:#E8EEFF; font-size:12px; margin-top: 4px; width: fit-content; }\n\t.rewards-infobox .deals-disclaimer a { color:#BFD0FF; text-decoration: underline; font-size: 12px; }\n\t.rewards-infobox .rewards-end-date { font-size: 12px; }\n\t\n\t\t.rewards-infobox .deals-countdown {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tmargin-top: 8px;\n\t\tflex-wrap: wrap;\n\t}\n\n\t.rewards-infobox .deals-countdown__label {\n\t\tcolor: #fff;\n\t\tfont-size: 12px;\n\t\tfont-weight: 800;\n\t\tpadding-right: 6px;\n\t\twhite-space: nowrap;\n\t}\n\n\t.rewards-infobox .deals-countdown__timer {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tgap: 4px;\n\t}\n\n\t.rewards-infobox .deals-countdown__unit {\n\t\tdisplay: inline-flex;\n\t\talign-items: center;\n\t}\n\n\t.rewards-infobox .deals-countdown__value {\n\t\tbackground: #FFD238;\n\t\tcolor: #000;\n\t\tfont-size: 12px;\n\t\tfont-weight: 800;\n\t\ttext-align: center;\n\t\tfont-style: italic;\n\t\tmin-width: 24px;\n\t\tmin-height: 14px;\n\t\tline-height: 100%;\n\t\tletter-spacing: -0.025em;\n\t\tfont-feature-settings: 'tnum' on, 'lnum' on;\n\t\tpadding: 2px;\n\t}\n\n\t.rewards-infobox .deals-countdown__separator {\n\t\tcolor: #fff;\n\t\tfont-size: 16px;\n\t\tfont-weight: 600;\n\t}\n\n\t@media (max-width: 600px) {\n\t\t.rewards-infobox .deals-countdown__value {\n\t\t\tpadding: 2px;\n\t\t}\n\t}\n\n\t\ttd.comparison-table__feature--longtext div.comparison-table__cellWrapper { width: 100%; }\n\n\t\t@media (max-width: 600px) {\n\t\t.reward-col-order-3 { grid-row: 3 !important; }\n\t\t.reward-col-order-4 { grid-row: 4 !important; }\n\t\t.reward-col-order-5 { grid-row: 5 !important; }\n\t\t.reward-col-order-6 { grid-row: 6 !important; }\n\t\t.reward-col-order-7 { grid-row: 7 !important; }\n\t\t.reward-col-order-8 { grid-row: 8 !important; }\n\t\t.reward-col-order-neg-3 { grid-row: -3 !important; }\n\t\t.reward-col-order-neg-4 { grid-row: -4 !important; }\n\t\t.reward-col-order-neg-5 { grid-row: -5 !important; }\n\t\t.reward-col-order-neg-6 { grid-row: -6 !important; }\n\t\t.reward-col-order-neg-7 { grid-row: -7 !important; }\n\t\t.reward-col-order-neg-8 { grid-row: -8 !important; }\n\t}\n<\/style><style>\n  \/* Gold gradient on minimal UX reward rows (desktop only) *\/\n  @media (min-width: 601px) {\n    tr[data-minimal-ux=\"true\"][data-should-show-rewards=\"true\"] {\n      background: linear-gradient(45deg, rgba(255, 210, 59, 0) 76%, rgba(255, 210, 59, 0.5) 100%), #fff;\n      background-repeat: no-repeat;\n      background-size: 50% 50%;\n      background-position: top right;\n    }\n  }\n\n  tr[data-minimal-ux=\"true\"][data-should-show-rewards=\"true\"] > td.comparison-table__cta {\n    gap: 4px;\n    margin-top: 0 !important;\n  }\n\n  \/* Pill wrapper centered in CTA cell (td is display:grid with 3 columns) *\/\n  .rewards-pill-wrapper {\n    z-index: 3;\n    align-self: flex-end;\n    justify-self: flex-end;\n\n    @media (max-width: 600px) {\n      grid-column: 1 \/ -1;\n      text-align: center;\n      justify-self: unset;\n    }\n  }\n\n  .rewards-pill {\n    display: inline-flex;\n    align-items: center;\n    gap: 6px;\n    background: #FFD23B;\n    border: 1px solid #E6B40F;\n    border-radius: 999px;\n    padding: 0px 8px 0px 2px;\n    cursor: pointer;\n    position: relative;\n    overflow: visible;\n    transition: filter 0.15s ease;\n    height: 24px;\n    box-sizing: border-box;\n\n    @media (max-width: 600px) {\n      box-shadow: 0 0 24px 0 rgba(255, 210, 59, 0.75);\n    }\n  }\n\n  .rewards-pill__shimmer {\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    width: 100%;\n    height: 100%;\n    border-radius: 999px;\n    overflow: hidden;\n    pointer-events: none;\n  }\n\n  .rewards-pill__shimmer::after {\n    content: '';\n    position: absolute;\n    top: 0;\n    width: 50%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent 0%,\n      rgba(255, 255, 255, 0.5) 50%,\n      transparent 100%\n    );\n    animation: rewards-pill-shimmer 4s infinite;\n  }\n\n  .rewards-pill__icon {\n    z-index: 2;\n    display: flex;\n    align-items: center;\n    flex-shrink: 0;\n    position: relative;\n  }\n\n  .rewards-pill__icon-svg {\n    width: 48.5px;\n    height: 34.6px;\n    overflow: visible;\n  }\n\n  .rewards-pill__star {\n    position: absolute;\n    z-index: 4;\n    opacity: 0;\n    pointer-events: none;\n    width: 22px;\n    height: 22px;\n    top: 50%;\n    left: 50%;\n    margin-top: -19px;\n    margin-left: -6px;\n    animation: rewards-pill-star-rotate 4s infinite;\n  }\n\n  .rewards-pill__text {\n    font-size: 16px;\n    font-style: italic;\n    font-weight: 900;\n    text-transform: uppercase;\n    letter-spacing: 0px;\n    color: #232320;\n    z-index: 1;\n    line-height: 24px;\n    white-space: nowrap;\n  }\n\n  @keyframes rewards-pill-shimmer {\n    0% {\n      transform: translateX(100%);\n    }\n    20% {\n      transform: translateX(-100%);\n    }\n    100% {\n      transform: translateX(-100%);\n    }\n  }\n\n  \/* Rewards Pill Countdown - wrapper layout for countdown + pill *\/\n  .rewards-pill-wrapper:has(.rewards-pill-countdown:not([hidden])) {\n    display: flex;\n    align-items: center;\n\n    @media (min-width: 601px) {\n      flex-direction: row;\n      gap: 10px;\n      margin-bottom: 6px;\n    }\n\n    @media (max-width: 600px) {\n      flex-direction: column;\n      gap: 12px;\n    }\n  }\n\n  .rewards-pill-countdown[hidden] {\n    display: none !important;\n  }\n\n  .rewards-pill-countdown {\n    font-family: 'Modern Era', Arial, sans-serif;\n    font-weight: 800;\n    font-size: 12px;\n    line-height: 100%;\n    letter-spacing: -0.025em;\n    font-variant-numeric: lining-nums tabular-nums;\n    color: #232320;\n    white-space: nowrap;\n    display: flex;\n    align-items: center;\n\n    @media (min-width: 601px) {\n      order: -1;\n    }\n\n    @media (max-width: 600px) {\n      justify-content: center;\n      margin-bottom: 8px;\n    }\n  }\n\n  .rewards-pill-countdown__timer {\n    display: inline;\n  }\n\n  .rewards-pill-countdown__sep {\n    margin: 0 1px;\n  }\n\n  @keyframes rewards-pill-star-rotate {\n    0% {\n      opacity: 0;\n      transform: rotate(0deg) scale(0);\n    }\n    5% {\n      opacity: 1;\n      transform: rotate(45deg) scale(1);\n    }\n    15% {\n      opacity: 1;\n      transform: rotate(135deg) scale(1);\n    }\n    20% {\n      opacity: 0;\n      transform: rotate(180deg) scale(0);\n    }\n    100% {\n      opacity: 0;\n      transform: rotate(180deg) scale(0);\n    }\n  }\n<\/style><tr data-product-id=\"7752f221-897b-460c-99e2-d0ab161d963d\" data-provider-id=\"454d7252-dbd4-40b4-a44c-d96e4a110307\" data-product-name=\"Questrade\" data-provider-name=\"Questrade\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  heroInTable__featuredProduct heroInTable__featuredProduct--yellow\"><td class=\"comparison-table__name combined-column-header sponsored-row  f1-clarity-header\"><div class=\"table-disclaimer__cellWrapper\"><button class=\"table-disclaimer\" data-target=\"#disclaimer_popup\" data-toggle=\"modal\" title=\"Important information about this website\" type=\"button\"><span class=\"table-disclaimer__text\"><span class=\"badge-text\">Promoted<\/span><\/span><svg class=\"luna-icon\" aria-hidden=\"true\"><use xlink:href=\"#info\"><\/use><\/svg><\/button><\/div><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/questrade-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/67c7503bd54ab.png\" alt=\"Questrade logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/67c7503bd54ab.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/67c7503bd54ab.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/67c7503bd54ab.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/67c7503bd54ab.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/67c7503bd54ab.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.6<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/questrade-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Questrade<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.6<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Bonds, Options, Mutual Funds, Index Funds, ETFs, Forex, GICs, Precious Metals, IPOs\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Bonds, Options, Mutual Funds, Index Funds, ETFs, Forex, GICs, Precious Metals, IPOs\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,RESP,RRIF,TFSA,Personal,Joint,FHSA,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           RESP,           RRIF,           TFSA,           Personal,           Joint,           FHSA,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$0\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__feature--longtext comparison-table__feature--offer sorter-false \" data-sortvalue=\"\"><div class=\"comparison-table__cellWrapper comparison-table__product-offer js-calculator-table-value\" data-heading=\"Default Offer\"><svg class=\"luna-icon\" role=\"img\" aria-label=\"Special offer\"><use href=\"#gift\"><\/use><\/svg><span class=\"offer-content\"><b>Finder exclusive:<\/b> Get $50 cash back with the Questrade promo code <b>FINDER100<\/b>. Offer ends May 13, 2026. T&amp;Cs apply.\n      <\/span><\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a data-component-props='{\"finderScore\":9.6,\"badges\":[],\"productId\":\"7752f221-897b-460c-99e2-d0ab161d963d\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/share-trading\/questrade-ca-share-trading-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFST%22%2C%22fieldset%22%3A%22share-trading%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2236db0cb6-8688-4d53-8c38-a0a499584f64%22%2C%22category_name%22%3A%22Options%2BTrading%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221776830560%22%2C%22sponsored%22%3A%221%22%2C%22position%22%3A%221%22%2C%22offer_id%22%3A%2223803%22%2C%22niche_code%22%3A%22CAFST%22%2C%22product_id%22%3A%227752f221-897b-460c-99e2-d0ab161d963d%22%2C%22product_name%22%3A%22Questrade%22%2C%22post_id%22%3A%221076238%22%2C%22post_path%22%3A%22stock-trading%252Foptions-profit-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium button--cta\" title=\"Go to Questrade's site\">Go to site<\/a><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about Questrade\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.6,\"badges\":[],\"productId\":\"7752f221-897b-460c-99e2-d0ab161d963d\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-7752f221-897b-460c-99e2-d0ab161d963d\" value=\"7752f221-897b-460c-99e2-d0ab161d963d\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     9.6                    Excellent                                            Questrade            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.6,\"badges\":[],\"productId\":\"7752f221-897b-460c-99e2-d0ab161d963d\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-7752f221-897b-460c-99e2-d0ab161d963d\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"4683c389-dc2c-4956-85ea-16ae67f2aa37\" data-provider-id=\"14cd3df6-5687-41d6-8bfe-b94515e6e4b2\" data-product-name=\"Qtrade Direct Investing\" data-provider-name=\"Qtrade\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  heroInTable__featuredProduct heroInTable__featuredProduct--yellow\"><td class=\"comparison-table__name combined-column-header sponsored-row  f1-clarity-header\"><div class=\"table-disclaimer__cellWrapper\"><button class=\"table-disclaimer\" data-target=\"#disclaimer_popup\" data-toggle=\"modal\" title=\"Important information about this website\" type=\"button\"><span class=\"table-disclaimer__text\"><span class=\"badge-text\">Promoted<\/span><\/span><svg class=\"luna-icon\" aria-hidden=\"true\"><use xlink:href=\"#info\"><\/use><\/svg><\/button><\/div><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/qtrade-direct-investing-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/66db5e0aa0f81.png\" alt=\"Qtrade logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/66db5e0aa0f81.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/66db5e0aa0f81.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/66db5e0aa0f81.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/66db5e0aa0f81.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/66db5e0aa0f81.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.1<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/qtrade-direct-investing-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Qtrade Direct Investing<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.1<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Bonds, Options, Mutual Funds, ETFs, GICs, IPOs\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Bonds, Options, Mutual Funds, ETFs, GICs, IPOs\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,RESP,RRIF,TFSA,Personal,Joint,FHSA,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           RESP,           RRIF,           TFSA,           Personal,           Joint,           FHSA,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$0\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__feature--longtext comparison-table__feature--offer sorter-false \" data-sortvalue=\"\"><div class=\"comparison-table__cellWrapper comparison-table__product-offer js-calculator-table-value\" data-heading=\"Default Offer\"><svg class=\"luna-icon\" role=\"img\" aria-label=\"Special offer\"><use href=\"#gift\"><\/use><\/svg><span class=\"offer-content\">\n        Earn up to $5,000 in cashback when opening and funding a new Qtrade account.  Valid until <b>April 30, 2026.<\/b>. T&amp;Cs apply.\n      <\/span><\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a data-component-props='{\"finderScore\":9.1,\"badges\":[],\"productId\":\"4683c389-dc2c-4956-85ea-16ae67f2aa37\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/share-trading\/qtrade-ca-stock-trading-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFST%22%2C%22fieldset%22%3A%22share-trading%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2236db0cb6-8688-4d53-8c38-a0a499584f64%22%2C%22category_name%22%3A%22Options%2BTrading%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221776830560%22%2C%22sponsored%22%3A%221%22%2C%22position%22%3A%222%22%2C%22offer_id%22%3A%2221989%22%2C%22niche_code%22%3A%22CAFST%22%2C%22product_id%22%3A%224683c389-dc2c-4956-85ea-16ae67f2aa37%22%2C%22product_name%22%3A%22Qtrade%2BDirect%2BInvesting%22%2C%22post_id%22%3A%221076238%22%2C%22post_path%22%3A%22stock-trading%252Foptions-profit-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium button--cta\" title=\"Go to Qtrade's site\">Go to site<\/a><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about Qtrade Direct Investing\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.1,\"badges\":[],\"productId\":\"4683c389-dc2c-4956-85ea-16ae67f2aa37\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-4683c389-dc2c-4956-85ea-16ae67f2aa37\" value=\"4683c389-dc2c-4956-85ea-16ae67f2aa37\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     9.1                    Excellent                                            Qtrade Direct Investing            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.1,\"badges\":[],\"productId\":\"4683c389-dc2c-4956-85ea-16ae67f2aa37\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-4683c389-dc2c-4956-85ea-16ae67f2aa37\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\" data-provider-id=\"ba443728-02c5-48e2-8f37-f03f1cd8e4e6\" data-product-name=\"Wealthsimple\" data-provider-name=\"Wealthsimple\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/wealthsimple-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/67e5830d85c2f.png\" alt=\"Wealthsimple logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/67e5830d85c2f.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/67e5830d85c2f.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/67e5830d85c2f.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/67e5830d85c2f.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/67e5830d85c2f.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.6<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/wealthsimple-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Wealthsimple<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.6<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Options, ETFs, Cryptocurrency\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Options, ETFs, Cryptocurrency\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,TFSA,Personal,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           TFSA,           Personal,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$0\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__feature--longtext comparison-table__feature--offer sorter-false \" data-sortvalue=\"\"><div class=\"comparison-table__cellWrapper comparison-table__product-offer js-calculator-table-value\" data-heading=\"Default Offer\"><svg class=\"luna-icon\" role=\"img\" aria-label=\"Special offer\"><use href=\"#gift\"><\/use><\/svg><span class=\"offer-content\">\n        Get up to 3% of your deposit matched in a new Wealthsimple account.  <b>Valid until April 30, 2026<\/b>. T&amp;Cs apply.\n      <\/span><\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a data-component-props='{\"finderScore\":8.6,\"badges\":[],\"productId\":\"40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\"}' data-component-id=\"1026\" data-component-version=\"1\" target=\"_blank\" rel=\"sponsored\" href=\"https:\/\/www.finder.com\/redirect\/ca\/share-trading\/wealthsimple-trade-ca-stock-trading-secure.html?nb=1&amp;src_country=ca&amp;redirect_tracking_params=%7B%22placement_type%22%3A%22table%22%2C%22site%22%3A%22CAFST%22%2C%22fieldset%22%3A%22share-trading%22%2C%22template%22%3A%22comparison%22%2C%22category_id%22%3A%2236db0cb6-8688-4d53-8c38-a0a499584f64%22%2C%22category_name%22%3A%22Options%2BTrading%22%2C%22is_sorted%22%3A%220%22%2C%22is_filtered%22%3A%220%22%2C%22cta_render_ts%22%3A%221776830560%22%2C%22position%22%3A%223%22%2C%22offer_id%22%3A%2227031%22%2C%22niche_code%22%3A%22CAFST%22%2C%22product_id%22%3A%2240d8f33d-0ae2-4ee4-9ffa-8b288dd3a606%22%2C%22product_name%22%3A%22Wealthsimple%22%2C%22post_id%22%3A%221076238%22%2C%22post_path%22%3A%22stock-trading%252Foptions-profit-calculator%22%2C%22post_country%22%3A%22ca%22%7D\" class=\"luna-button luna-button--success luna-button--medium button--cta\" title=\"Go to Wealthsimple's site\">Go to site<\/a><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about Wealthsimple\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.6,\"badges\":[],\"productId\":\"40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\" value=\"40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     8.6                    Great                                            Wealthsimple            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.6,\"badges\":[],\"productId\":\"40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-40d8f33d-0ae2-4ee4-9ffa-8b288dd3a606\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"640c5498-6f16-411b-b038-998827a3a524\" data-provider-id=\"832c5f71-bb6f-4e24-88e0-f3d9910fcc5e\" data-product-name=\"BMO InvestorLine\" data-provider-name=\"BMO\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/bmo-investorline-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/69a8760f8d4cb.png\" alt=\"BMO logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/69a8760f8d4cb.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/69a8760f8d4cb.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/69a8760f8d4cb.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/69a8760f8d4cb.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/69a8760f8d4cb.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.2<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/bmo-investorline-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">BMO InvestorLine<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.2<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Bonds, Options, Mutual Funds, ETFs, GICs\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Bonds, Options, Mutual Funds, ETFs, GICs\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,RESP,RRIF,TFSA,Personal,Joint,FHSA,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           RESP,           RRIF,           TFSA,           Personal,           Joint,           FHSA,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$3.95\u2013$9.95\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        $3.95\u2013$9.95\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0 if conditions met, otherwise $50 - $100 per year\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0 if conditions met, otherwise $50 - $100 per year\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__feature--longtext comparison-table__feature--offer sorter-false \" data-sortvalue=\"\"><div class=\"comparison-table__cellWrapper comparison-table__product-offer js-calculator-table-value\" data-heading=\"Default Offer\"><svg class=\"luna-icon\" role=\"img\" aria-label=\"Special offer\"><use href=\"#gift\"><\/use><\/svg><span class=\"offer-content\">\n        Win up to $100,000. Open and fund a new BMO InvestorLine account for your chance to win one of 11 cash prizes. <b>T&amp;Cs apply. Valid until June 1, 2026<\/b>.\n      <\/span><\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about BMO InvestorLine\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.2,\"badges\":[],\"productId\":\"640c5498-6f16-411b-b038-998827a3a524\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-640c5498-6f16-411b-b038-998827a3a524\" value=\"640c5498-6f16-411b-b038-998827a3a524\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     8.2                    Great                                            BMO InvestorLine            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.2,\"badges\":[],\"productId\":\"640c5498-6f16-411b-b038-998827a3a524\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-640c5498-6f16-411b-b038-998827a3a524\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"d599fb3a-3477-4063-87f4-1540c26e9cad\" data-provider-id=\"7f832116-0814-489c-af71-1bc4f6109d6e\" data-product-name=\"CIBC Investor's Edge\" data-provider-name=\"CIBC\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/cibc-investors-edge-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/67f2de2fc2a4f.png\" alt=\"CIBC logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/67f2de2fc2a4f.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/67f2de2fc2a4f.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/67f2de2fc2a4f.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/67f2de2fc2a4f.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/67f2de2fc2a4f.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">7.9<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/cibc-investors-edge-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">CIBC Investor's Edge<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">7.9<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Bonds, Options, Mutual Funds, ETFs, GICs, Precious Metals, IPOs\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Bonds, Options, Mutual Funds, ETFs, GICs, Precious Metals, IPOs\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,RESP,RRIF,TFSA,Personal,Joint,Business,FHSA,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           RESP,           RRIF,           TFSA,           Personal,           Joint,           Business,           FHSA,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$6.95\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        $6.95\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0 if conditions met, or $100\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0 if conditions met, or $100\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about CIBC Investor's Edge\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":7.9,\"badges\":[],\"productId\":\"d599fb3a-3477-4063-87f4-1540c26e9cad\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-d599fb3a-3477-4063-87f4-1540c26e9cad\" value=\"d599fb3a-3477-4063-87f4-1540c26e9cad\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     7.9                    Great                                            CIBC Investor's Edge            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":7.9,\"badges\":[],\"productId\":\"d599fb3a-3477-4063-87f4-1540c26e9cad\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-d599fb3a-3477-4063-87f4-1540c26e9cad\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"975d70ce-a17f-4df3-a20b-5979922c8032\" data-provider-id=\"af17af70-1c29-48c0-af25-157752af193f\" data-product-name=\"Interactive Brokers\" data-provider-name=\"Interactive Brokers\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/interactive-brokers-share-trading\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/67cb374726403.png\" alt=\"Interactive Brokers logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/67cb374726403.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/67cb374726403.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/67cb374726403.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/67cb374726403.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/67cb374726403.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.4<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/interactive-brokers-share-trading\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Interactive Brokers<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--excellent\"><span class=\"score__value\">9.4<\/span><\/span><span class=\"score__text-wrapper score__text score__text--excellent\">        Excellent      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Bonds, Options, Index Funds, ETFs, Forex, Currencies, Futures\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Bonds, Options, Index Funds, ETFs, Forex, Currencies, Futures\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,TFSA,Personal,Joint,Business,FHSA,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           TFSA,           Personal,           Joint,           Business,           FHSA,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$1.00,0.5%\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        Min $1.00, Max 0.5%\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about Interactive Brokers\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.4,\"badges\":[],\"productId\":\"975d70ce-a17f-4df3-a20b-5979922c8032\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-975d70ce-a17f-4df3-a20b-5979922c8032\" value=\"975d70ce-a17f-4df3-a20b-5979922c8032\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     9.4                    Excellent                                            Interactive Brokers            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":9.4,\"badges\":[],\"productId\":\"975d70ce-a17f-4df3-a20b-5979922c8032\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-975d70ce-a17f-4df3-a20b-5979922c8032\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><tr data-product-id=\"1f60143b-0440-4c50-9fb7-8cbd88131889\" data-provider-id=\"d8b8e637-3c62-44a9-b442-888edbcaa88e\" data-product-name=\"Moomoo\" data-provider-name=\"Moomoo\" class=\"grid-column-count-5  mobile-column-count-4 mobile-row-count-7  js-comparison-table__row  \"><td class=\"comparison-table__name combined-column-header   f1-clarity-header\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/moomoo-review\" data-component-id=\"1003\" data-component-version=\"1\"><img decoding=\"async\" border=\"0\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/niche-builder\/65ca9a9c51e92.png\" alt=\"Moomoo logo\" class=\"lazysizes\" srcset=\"https:\/\/www.finder.com\/niche-builder\/65ca9a9c51e92.png?fit=180 180w, https:\/\/www.finder.com\/niche-builder\/65ca9a9c51e92.png?fit=360 360w, https:\/\/www.finder.com\/niche-builder\/65ca9a9c51e92.png?fit=600 600w, https:\/\/www.finder.com\/niche-builder\/65ca9a9c51e92.png?fit=900 900w, https:\/\/www.finder.com\/niche-builder\/65ca9a9c51e92.png?fit=1200 1200w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\"><\/a><div class=\"finder-score-container\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.6<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><div class=\"product-info_name combined-column-header\"><span class=\"nameLink\"><a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/moomoo-review\" target=\"_blank\" data-component-id=\"1014\" data-component-version=\"1\">Moomoo<\/a><\/span><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                                                                                                                                                                                                            first-row\n                                                                                                                        default-sort-descending\" data-mobile=\"hide\" data-sortvalue=\"\" data-column-index=\"1\" data-decorator=\"text,cafst.product.datapoint_cafst_finder_score\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Finder Score\"><style>@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}<\/style><div class=\"finder-score-detail-heading\">  Finder Score<\/div><div class=\"detail-info \" style=\"cursor: pointer;\"><a class=\"scoreCombined score__container finder-score\" onclick=\"showFinderScoreModal('cafst')\"><span class=\"score__badge score__badge--great\"><span class=\"score__value\">8.6<\/span><\/span><span class=\"score__text-wrapper score__text score__text--great\">        Great      <\/span><\/a><\/div><\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                                                rounded-top-left\n                                                                                                                                                                                                                                                                    \" data-sortvalue=\"Stocks, Options, ETFs\" data-column-index=\"2\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Available Asset Types\">\n                        Stocks, Options, ETFs\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                                                                                                                                                                                                                        \" data-sortvalue=\"RRSP,TFSA,Personal,FHSA,Margin\" data-column-index=\"3\" data-decorator=\"text,global.value.list\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Account Types\">\n                        RRSP,           TFSA,           Personal,           FHSA,          Margin\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        border-top\n                                                            border-left\n                                                                                rounded-top-right\n                                                                                                                                                                                                                                                \" data-sortvalue=\"$1.49\/stock\" data-column-index=\"4\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Stock Trading Fee\">\n                        $1.49\/stock\n                                          <\/div><\/td><td class=\"comparison-table__feature\n                                        \n                                        span-last-row\n                                                                                                                        rounded-bottom-left\n                                                            rounded-bottom-right\n                                                                                                                                                                            span-2\n                                                                                                                                                                            \" data-sortvalue=\"$0\" data-column-index=\"5\" data-decorator=\"text\"><div class=\"comparison-table__cellWrapper js-calculator-table-value\n                                                            \" data-heading=\"Monthly Account Fee\">\n                        $0\n                                          <\/div><\/td><td class=\"comparison-table__feature comparison-table__feature--longtext comparison-table__feature--offer sorter-false \" data-sortvalue=\"\"><div class=\"comparison-table__cellWrapper comparison-table__product-offer js-calculator-table-value\" data-heading=\"Default Offer\"><svg class=\"luna-icon\" role=\"img\" aria-label=\"Special offer\"><use href=\"#gift\"><\/use><\/svg><span class=\"offer-content\">\n        Get up to $4,600+ in trading perks <b>T&amp;Cs apply.<\/b>.\n      <\/span><\/div><\/td><td class=\"comparison-table__feature comparison-table__cta coa-data cta-column-count-5 \"><div class=\"comparison-table__cellWrapper\"><a href=\"#\" class=\"js-comparison-table__view-details-button comparison-table__view-details-button\" title=\"Read more about Moomoo\" data-component-id=\"1003\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.6,\"badges\":[],\"productId\":\"1f60143b-0440-4c50-9fb7-8cbd88131889\"}'><svg class=\"luna-icon\"><use href=\"#info\"><\/use><\/svg> View details                <\/a><div class=\"luna-form__selection comparison-table__compareField\"><fieldset><legend class=\"compare-box__legend\">Compare product selection<\/legend><input class=\"luna-checkbox\" type=\"checkbox\" id=\"compare-product-0000000002-1f60143b-0440-4c50-9fb7-8cbd88131889\" value=\"1f60143b-0440-4c50-9fb7-8cbd88131889\" name=\"productID\" _productname=\"@media (max-width: 600px) {    .comparison-table tr td {        order: 3;     }     .comparison-table td.comparison-table__name {        order: 1 !important;         flex-basis: 100% !important;    }    .comparison-table td.comparison-table__product {        order: 2 !important;         flex-basis: 33.33% !important;        padding: .5rem .45rem;    }}    Finder Score                                     8.6                    Great                                            Moomoo            \" _productimg=\"\/product\/\" data-custom-event-active=\"true\" data-component-id=\"1004\" data-component-version=\"1\" data-component-props='{\"finderScore\":8.6,\"badges\":[],\"productId\":\"1f60143b-0440-4c50-9fb7-8cbd88131889\"}'><label class=\"luna-label\" for=\"compare-product-0000000002-1f60143b-0440-4c50-9fb7-8cbd88131889\">Compare<\/label><\/fieldset><\/div><\/div><\/td><td class=\"comparison-table__expander js-comparison-table__expander hide sidepeek-modal-slider\" aria-hidden=\"true\"><div class=\"sidepeek-modal-slider__overlay\"><\/div><div class=\"sidepeek-modal-slider__content\"><div class=\"sidepeek-modal-slider__close-wrapper\"><button type=\"button\" class=\"sidepeek-modal-slider__close js-expander-trigger\" aria-label=\"Close modal\"><svg class=\"luna-icon sidepeek-modal-slider__close-icon\"><use href=\"#x\"><\/use><\/svg><\/button><\/div><div class=\"comparison-table__cellWrapper\"><div class=\"comparison-table__expander--fetching center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><\/div><\/div><\/td><\/tr><script>\n(function () {\n  window.isInfoBoxMutationObserverInitialized ??= false;\n  if (window.isInfoBoxMutationObserverInitialized) return;\n  window.isInfoBoxMutationObserverInitialized = true;\n\n  document.addEventListener(\"DOMContentLoaded\", () => {\n    function getLinkParams(anchor) {\n      const redirectUrl =\n        anchor.getAttribute(\"data-redirect-url\") || anchor.href || \"\";\n\n      try {\n        const url = new URL(redirectUrl);\n        const rawParams = url.searchParams.get(\"redirect_tracking_params\");\n\n        if (!rawParams) return;\n        const decoded = decodeURIComponent(rawParams);\n        const parsed = JSON.parse(decoded);\n        const { offer_id, niche_code, site, product_name, product_id } = parsed;\n\n        return {\n          redirectUrl,\n          offerId: offer_id,\n          niche: niche_code || site,\n          productName: product_name,\n          productId: product_id,\n        };\n      } catch (e) {\n        console.error(\"Failed to parse redirect_tracking_params\", e);\n      }\n    }\n\n    function initCountdownTimer(rewardsProduct, endDateStr) {\n      const countdownEl = rewardsProduct.querySelector(\".deals-countdown\");\n      \n      if (!countdownEl || !endDateStr) return;\n\n      const daysEl = countdownEl.querySelector(\"[data-countdown-days]\");\n      const hoursEl = countdownEl.querySelector(\"[data-countdown-hours]\");\n      const minutesEl = countdownEl.querySelector(\"[data-countdown-minutes]\");\n      const secondsEl = countdownEl.querySelector(\"[data-countdown-seconds]\");\n\n      let countdownInterval;\n\n      const updateCountdown = () => {\n        const now = new Date().getTime();\n        const endTime = new Date(endDateStr).getTime();\n        const distance = endTime - now;\n\n        if (distance < 0) {\n          \/\/ Countdown finished\n          if (daysEl) daysEl.textContent = \"00d\";\n          if (hoursEl) hoursEl.textContent = \"00h\";\n          if (minutesEl) minutesEl.textContent = \"00m\";\n          if (secondsEl) secondsEl.textContent = \"00s\";\n          if (countdownInterval) {\n            clearInterval(countdownInterval);\n          }\n          return;\n        }\n\n        const days = Math.floor(distance \/ (1000 * 60 * 60 * 24));\n        const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n        const minutes = Math.floor((distance % (1000 * 60 * 60)) \/ (1000 * 60));\n        const seconds = Math.floor((distance % (1000 * 60)) \/ 1000);\n\n        if (daysEl) daysEl.textContent = days.toString().padStart(2, \"0\") + \"d\";\n        if (hoursEl) hoursEl.textContent = hours.toString().padStart(2, \"0\") + \"h\";\n        if (minutesEl) minutesEl.textContent = minutes.toString().padStart(2, \"0\") + \"m\";\n        if (secondsEl) secondsEl.textContent = seconds.toString().padStart(2, \"0\") + \"s\";\n      };\n\n      \/\/ Update immediately\n      updateCountdown();\n\n      \/\/ Update every second\n      countdownInterval = setInterval(updateCountdown, 1000);\n\n      \/\/ Store interval ID to clear it later if needed\n      rewardsProduct.dataset.countdownInterval = countdownInterval;\n    }\n\n    const initRewards = (table) => {\n      if (!table) return;\n\n      const recordIdsAttr = table.getAttribute(\"data-table-record-ids\");\n      if (!recordIdsAttr) return;\n\n      let productIds = [];\n      try {\n        const decoded = recordIdsAttr.replace(\/&quot;\/g, '\"');\n        productIds = JSON.parse(decoded);\n      } catch (e) {\n        return;\n      }\n\n      if (!productIds.length) return;\n\n      productIds.forEach((productId) => {\n        \/\/ Handle pill clicks (minimal UX variant) - independent of infobox\n        const pill = table.querySelector(\n          `tr[data-product-id=\"${productId}\"] .rewards-pill`\n        );\n        if (pill && !pill.dataset.bound) {\n          pill.dataset.bound = \"true\";\n          pill.addEventListener(\"click\", () => {\n            const row = pill.closest(\"tr\");\n            if (!row) return;\n\n            const cta = row.querySelector(\".rewards--cta\");\n            if (!cta) return;\n\n            const linkParams = getLinkParams(cta);\n            if (!linkParams) return;\n\n            const pillModalParams = {\n              productId: linkParams.productId,\n              campaignName: row.getAttribute(\"data-rewards-campaign-name\") || \"\",\n              redirectUrl: linkParams.redirectUrl,\n              productName: linkParams.productName,\n              providerName: row.getAttribute(\"data-provider-name\") || \"\",\n              niche: linkParams.niche,\n              offerId: linkParams.offerId,\n              component: \"infobox\",\n            };\n\n            if (\n              window.rewards &&\n              typeof window.rewards.displayModal === \"function\"\n            ) {\n              window.rewards.displayModal(pillModalParams, false, cta);\n            }\n          });\n        }\n\n        const rewardsProduct = table.querySelector(\n          `div[data-rewards-product-id=\"${productId}\"]:not([data-rewards-banner-attached])`\n        );\n        if (!rewardsProduct) return;\n\n        const endDateStr = rewardsProduct.getAttribute(\"data-end-date\");\n        if (!endDateStr) return;\n\n        \/\/ Format date for Australian locale (dd MMM yyyy)\n        const formattedDate = new Intl.DateTimeFormat(\"en-AU\", {\n          day: \"2-digit\",\n          month: \"short\",\n          year: \"numeric\",\n        }).format(new Date(endDateStr));\n\n        const endDateEl = rewardsProduct.querySelector(\".rewards-end-date\");\n        if (endDateEl && endDateEl.textContent !== formattedDate) {\n          endDateEl.textContent = ` ${formattedDate}`;\n        }\n\n        \/\/ Calculate days remaining\n        const days = Math.ceil((new Date(endDateStr) - new Date()) \/ 86400000);\n\n        \/\/ Show \"Ends Soon\" badge if campaign ends within 7 days\n        if (days <= 7 && days > 0) {\n          const dealsEndsEl = rewardsProduct.querySelector(\".deals-ends\");\n          const dealsPhoneEl = rewardsProduct.querySelector(\".deals-phone\");\n\n          if (dealsEndsEl && dealsEndsEl.style.display !== \"inline-flex\") {\n            dealsEndsEl.style.display = \"inline-flex\";\n          }\n          if (dealsPhoneEl && dealsPhoneEl.style.top !== \"23px\") {\n            dealsPhoneEl.style.top = \"23px\";\n          }\n        }\n\n        \/\/ Initialize countdown timer\n        initCountdownTimer(rewardsProduct, endDateStr);\n\n        const dealsLeftEl = rewardsProduct.querySelector(\".deals-left\");\n        const dealsList = rewardsProduct.querySelector(\".deals-list\");\n        const dealsHeader = rewardsProduct.querySelector(\".deals-header\");\n\n        const handleClick = (triggerEl) => {\n          const row = triggerEl.closest(\"tr\");\n\n          if (!row) return;\n\n          const cta = row.querySelector(\".rewards--cta\");\n\n          if (!cta) return;\n\n          const linkParams = getLinkParams(cta);\n          if (!linkParams) return;\n\n          const { productId, redirectUrl, productName, niche, offerId } = linkParams;\n\n          const modalParams = {\n            productId,\n            campaignName: row.getAttribute(\"data-rewards-campaign-name\") || \"\",\n            redirectUrl,\n            productName,\n            providerName: row.getAttribute(\"data-provider-name\") || \"\",\n            niche,\n            offerId,\n            component: \"infobox\",\n          };\n\n          if (\n            window.rewards &&\n            typeof window.rewards.displayModal === \"function\"\n          ) {\n            window.rewards.displayModal(modalParams, false, cta);\n          }\n        };\n\n        if (dealsLeftEl && !dealsLeftEl.dataset.bound) {\n          dealsLeftEl.dataset.bound = \"true\";\n          dealsLeftEl.addEventListener(\"click\", () => handleClick(dealsLeftEl));\n        }\n\n        if (dealsList && !dealsList.dataset.bound) {\n          dealsList.dataset.bound = \"true\";\n          dealsList.addEventListener(\"click\", () => handleClick(dealsList));\n        }\n\n        if (dealsHeader && !dealsHeader.dataset.bound) {\n          dealsHeader.dataset.bound = \"true\";\n          dealsHeader.addEventListener(\"click\", () => handleClick(dealsHeader));\n        }\n\n        rewardsProduct.dataset.rewardsBannerAttached = \"true\";\n      });\n    };\n\n    const tables = document.querySelectorAll(\n      \"table.rewards--container[data-table-record-ids]\"\n    );\n\n    tables.forEach((table) => {\n      const tableObserver = new MutationObserver(() => {\n        setTimeout(() => initRewards(table), 0);\n      });\n\n      tableObserver.observe(table, {\n        childList: true,\n        subtree: true,\n      });\n\n      initRewards(table);\n    });\n\n    \/\/ Pill countdown timers (minimal UX)\n    function initPillCountdowns() {\n      const countdowns = document.querySelectorAll(\"[data-rewards-pill-countdown]:not([data-pill-countdown-bound])\");\n\n      countdowns.forEach((el) => {\n        el.dataset.pillCountdownBound = \"true\";\n        const endDateStr = el.getAttribute(\"data-end-date\");\n        if (!endDateStr) return;\n\n        const endTime = new Date(endDateStr).getTime();\n        if (Number.isNaN(endTime)) return;\n        const now = new Date().getTime();\n        const distance = endTime - now;\n        const sevenDaysMs = 7 * 24 * 60 * 60 * 1000;\n\n        if (distance <= 0) {\n          const wrapper = el.closest(\".rewards-pill-wrapper\");\n          if (wrapper) wrapper.style.display = \"none\";\n          return;\n        }\n\n        if (distance > sevenDaysMs) {\n          return;\n        }\n\n        el.removeAttribute(\"hidden\");\n\n        const daysEl = el.querySelector(\"[data-pill-countdown-days]\");\n        const hoursEl = el.querySelector(\"[data-pill-countdown-hours]\");\n        const minutesEl = el.querySelector(\"[data-pill-countdown-minutes]\");\n        const secondsEl = el.querySelector(\"[data-pill-countdown-seconds]\");\n\n        let interval;\n        const updatePillCountdown = () => {\n          if (!el.isConnected) {\n            if (interval) clearInterval(interval);\n            return;\n          }\n\n          const remaining = endTime - new Date().getTime();\n\n          if (remaining <= 0) {\n            if (daysEl) daysEl.textContent = \"0d\";\n            if (hoursEl) hoursEl.textContent = \"0h\";\n            if (minutesEl) minutesEl.textContent = \"0m\";\n            if (secondsEl) secondsEl.textContent = \"0s\";\n            if (interval) clearInterval(interval);\n            \/\/ Hide pill wrapper on expiry\n            const wrapper = el.closest(\".rewards-pill-wrapper\");\n            if (wrapper) wrapper.style.display = \"none\";\n            return;\n          }\n\n          const days = Math.floor(remaining \/ (1000 * 60 * 60 * 24));\n          const hours = Math.floor((remaining % (1000 * 60 * 60 * 24)) \/ (1000 * 60 * 60));\n          const minutes = Math.floor((remaining % (1000 * 60 * 60)) \/ (1000 * 60));\n          const seconds = Math.floor((remaining % (1000 * 60)) \/ 1000);\n\n          if (daysEl) daysEl.textContent = days + \"d\";\n          if (hoursEl) hoursEl.textContent = hours + \"h\";\n          if (minutesEl) minutesEl.textContent = minutes + \"m\";\n          if (secondsEl) secondsEl.textContent = seconds + \"s\";\n        };\n\n        updatePillCountdown();\n        interval = setInterval(updatePillCountdown, 1000);\n      });\n    }\n\n    initPillCountdowns();\n\n    const allTables = document.querySelectorAll(\"table\");\n    allTables.forEach((table) => {\n      const observer = new MutationObserver(() => {\n        setTimeout(initPillCountdowns, 0);\n      });\n      observer.observe(table, { childList: true, subtree: true });\n    });\n  });\n})();\n<\/script><\/tbody><\/table><div class=\"comparison-table__loadingIndicator center-over\"><div class=\"relativeloading-pulse__box loading-pulse__box-notext\"><span class=\"loading-pulse loading-pulse--medium loading-pulse--primary\">loading<\/span><\/div><\/div><div class=\"comparison-table__paginationContainer comparison-table__loadMoreContainer hide-comparison-table__paginationContainer\"><div class=\"comparison-table__loadMore comparison-table__paginationNav\"><button class=\"luna-button luna-button--primary js-comparison-table__showMore\" type=\"button\" data-offset=\"\">Load More<\/button><div class=\"js-show-more-data_count-36db0cb6-8688-4d53-8c38-a0a499584f64 comparison-table__dataCount\">Showing\n\t\t\t7\n\t\t\tof\n\t\t\t7\n\t\t\tresults\t\t<\/div><\/div><\/div><\/form><\/section><\/div><div id=\"compare-bar-v2\" class=\"compareBarV2__root rewards--container loyalty-rewards--container\" data-niche=\"CAFST\" data-rewards-component=\"compare-products\"><\/div><div class=\"finder-score-methodology\"><h3 data-toc=\"false\" id=\"finder-score-methodology\">Finder Score for stock trading platforms<\/h3>\n\n<p>To make comparing even easier we came up with the <a href=\"https:\/\/www.finder.com\/ca\/finder-score\">Finder Score<\/a>. Trading costs, account fees and features across 10+ stock trading platforms and apps are all weighted and scaled to produce a score out of 10. The higher the score, the better the platform\u2014it's that simple.<\/p>\n\n<p style=\"text-align: center;\"><a class=\"luna-button luna-button--primary\" href=\"https:\/\/www.finder.com\/ca\/stock-trading\/trading-platforms-ratings-methodology\">Read the full methodology<\/a><\/p><\/div>\n    <\/div>\n<\/div>\n    <\/div>\n<h2>Frequently asked questions<\/h2><ul class=\"luna-accordionGroup accordionGroup\">\n\t<li class=\"luna-accordion\" data-accordion=\"accordion\">\n    <div class=\"luna-accordion__summary\">\n        <h4 class=\"luna-accordion__heading\">\n            <button class=\"luna-accordion__action collapsed\" aria-expanded=\"false\" aria-controls=\"faq-builder-0000000003\" data-toggle=\"collapse\" data-target=\"#faq-builder-0000000003\">\n                <span class=\"luna-accordion__title\">What is the break-even price for an option?<\/span>\n                <svg class=\"luna-icon\" aria-hidden=\"true\">\n                    <use xlink:href=\"#chevron-down\" data-accordion-icon=\"show\"><\/use>\n                    <use xlink:href=\"#chevron-up\" data-accordion-icon=\"hide\" class=\"is-hidden\"><\/use>\n                <\/svg>\n            <\/button>\n        <\/h4>\n    <\/div>\n    <div class=\"luna-accordion__details collapse\" aria-hidden=\"true\" id=\"faq-builder-0000000003\" data-accordion=\"details\">\n        <div class=\"accordionContent\">\n            <div>\n                <p>The break-even price is the stock price at expiration where your option trade results in zero profit or loss (ignoring commissions). For a long call, the break-even price is the strike price plus the premium you paid. For a long put, the break-even price is the strike price minus the premium you paid.<\/p><p>The stock must move beyond this point in your favor for the trade to become profitable.<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/li>\n<li class=\"luna-accordion\" data-accordion=\"accordion\">\n    <div class=\"luna-accordion__summary\">\n        <h4 class=\"luna-accordion__heading\">\n            <button class=\"luna-accordion__action collapsed\" aria-expanded=\"false\" aria-controls=\"faq-builder-0000000004\" data-toggle=\"collapse\" data-target=\"#faq-builder-0000000004\">\n                <span class=\"luna-accordion__title\">What happens if an option expires out of the money?<\/span>\n                <svg class=\"luna-icon\" aria-hidden=\"true\">\n                    <use xlink:href=\"#chevron-down\" data-accordion-icon=\"show\"><\/use>\n                    <use xlink:href=\"#chevron-up\" data-accordion-icon=\"hide\" class=\"is-hidden\"><\/use>\n                <\/svg>\n            <\/button>\n        <\/h4>\n    <\/div>\n    <div class=\"luna-accordion__details collapse\" aria-hidden=\"true\" id=\"faq-builder-0000000004\" data-accordion=\"details\">\n        <div class=\"accordionContent\">\n            <div>\n                <p>It expires worthless. As the buyer, you lose only the premium you paid. No further action is required.<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/li>\n<li class=\"luna-accordion\" data-accordion=\"accordion\">\n    <div class=\"luna-accordion__summary\">\n        <h4 class=\"luna-accordion__heading\">\n            <button class=\"luna-accordion__action collapsed\" aria-expanded=\"false\" aria-controls=\"faq-builder-0000000005\" data-toggle=\"collapse\" data-target=\"#faq-builder-0000000005\">\n                <span class=\"luna-accordion__title\">Is options trading legal in Canada?<\/span>\n                <svg class=\"luna-icon\" aria-hidden=\"true\">\n                    <use xlink:href=\"#chevron-down\" data-accordion-icon=\"show\"><\/use>\n                    <use xlink:href=\"#chevron-up\" data-accordion-icon=\"hide\" class=\"is-hidden\"><\/use>\n                <\/svg>\n            <\/button>\n        <\/h4>\n    <\/div>\n    <div class=\"luna-accordion__details collapse\" aria-hidden=\"true\" id=\"faq-builder-0000000005\" data-accordion=\"details\">\n        <div class=\"accordionContent\">\n            <div>\n                <p>Yes, options trading is legal in Canada. A number of Canadian investment platforms support options trading, including Questrade, Qtrade, Wealthsimple, BMO InvestorLine and CIBC Investor's Edge.<\/p>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/li>\n\n<\/ul>\n<div id=\"sources\" style=\"position: relative;\"><h3 style=\"position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;\">Sources<\/h3>\n<div id=\"lazy0000000006\"><\/div>\n<script type=\"application\/json\" id=\"lazyloaded-assets-json-lazy0000000006\" class=\"lazyloaded-assets-json\">{\"critical-scripts\":[],\"scripts\":[\"https:\\\/\\\/www.finder.com\\\/parent-theme\\\/shortcodes\\\/article-source\\\/prod\\\/article-source.de087a0da9824e407767.js\"],\"styles\":[\"https:\\\/\\\/www.finder.com\\\/parent-theme\\\/shortcodes\\\/article-source\\\/prod\\\/article-source.87684078d471e76125dd.css\"]}<\/script><\/div><article class=\"luna-card luna-card--alt\"><div class=\"luna-card__block has-padding-small\"><b>Important information:<\/b> Powered by <a href=\"https:\/\/www.finder.com\/ca\/\">Finder.com<\/a>. This information is general in nature and is no substitute for professional advice. It does not take into account your personal situation. This information should not be interpreted as an endorsement of futures, stocks, ETFs, CFDs, options or any specific provider, service or offering. It should not be relied upon as investment advice or construed as providing recommendations of any kind. Futures, stocks, ETFs and options trading involves substantial risk of loss and therefore are not appropriate for most investors. You do not own or have any interest in the underlying asset. Capital is at risk, including the risk of losing more than the amount originally put in, market volatility and liquidity risks. Past performance is no guarantee of future results. Tax on profits may apply. Consider the Product Disclosure Statement and Target Market Determination for the product on the provider's website. Consider your own circumstances, including whether you can afford to take the high risk of losing your money and possess the relevant experience and knowledge. We recommend that you obtain independent advice from a suitably licensed financial advisor before making any trades.<\/div><\/article>\n<div class=\"contentFeed contentFeed--relatedPosts\">\n            <h3 class=\"contentFeed__title\">Learn more about investing<\/h3>\n        <div class=\"contentFeed__carousel\" data-post-count=\"3\">\n                                    <div class=\"fin-carousels fin-carousels--multiple-items-in-view\" id=\"fin-carousel0000000000\" data-items-in-view=\"3\" style=\"--items-in-view: 3\">\n    <div class=\"fin-carousels__container\">\n        <div class=\"fin-carousels__slides\">\n                                <div class=\"fin-carousel-item\">\n                <article class=\"luna-card luna-card--stretch\">        <figure class=\"luna-card__figure\">        <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/buy-spacex-stock\">            <picture>                <source type=\"image\/webp\" data-srcset=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg?fit=180&amp;webp=1 180w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg?fit=360&amp;webp=1 360w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg?fit=450&amp;webp=1 450w\" data-sizes=\"(max-width: 600px) 100vw, 35vw\"><\/source>                <img decoding=\"async\" class=\"luna-image\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg\" data-srcset=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg?fit=180 180w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg?fit=360 360w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2026\/04\/SpaceX-3_Supplied_450x250.jpg?fit=450 450w\" data-sizes=\"(max-width: 600px) 100vw, 35vw\" alt=\"SpaceX\" loading=\"lazy\">            <\/picture>        <\/a>    <\/figure>        <div class=\"luna-card__block\">                            <div class=\"contentFeed__pills\">                                                    <span class=\"contentFeed__pill contentFeed__pill--category\">Stock Trading<\/span>                            <\/div>                        <header>            <p class=\"luna-card__title luna-card__title--small\">                <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/buy-spacex-stock\">How to buy SpaceX stock in Canada when it goes public<\/a>            <\/p>        <\/header>        <p>Here\u2019s what we know about the SpaceX IPO plus information on how to buy in from Canada.<\/p>                    <\/div>        <\/article>            \n<\/div>\n                    <div class=\"fin-carousel-item\">\n                <article class=\"luna-card luna-card--stretch\">        <figure class=\"luna-card__figure\">        <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/ethereum-treasuries\">            <picture>                <source type=\"image\/webp\" data-srcset=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg?fit=180&amp;webp=1 180w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg?fit=360&amp;webp=1 360w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg?fit=450&amp;webp=1 450w\" data-sizes=\"(max-width: 600px) 100vw, 35vw\"><\/source>                <img decoding=\"async\" class=\"luna-image\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg\" data-srcset=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg?fit=180 180w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg?fit=360 360w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/09\/Ethereumlogo_Supplied_450x250.jpg?fit=450 450w\" data-sizes=\"(max-width: 600px) 100vw, 35vw\" alt=\"Ethereum\" loading=\"lazy\">            <\/picture>        <\/a>    <\/figure>        <div class=\"luna-card__block\">                            <div class=\"contentFeed__pills\">                                                    <span class=\"contentFeed__pill contentFeed__pill--category\">Stock Trading<\/span>                            <\/div>                        <header>            <p class=\"luna-card__title luna-card__title--small\">                <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/ethereum-treasuries\">Ethereum treasury companies<\/a>            <\/p>        <\/header>        <p>We break down which companies hold Ethereum, why they\u2019re doing it and what ETH treasuries mean for markets and investors.<\/p>                    <\/div>        <\/article>            \n<\/div>\n                    <div class=\"fin-carousel-item\">\n                <article class=\"luna-card luna-card--stretch\">        <figure class=\"luna-card__figure\">        <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/euro-stoxx-50\">            <picture>                <source type=\"image\/webp\" data-srcset=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg?fit=180&amp;webp=1 180w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg?fit=360&amp;webp=1 360w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg?fit=450&amp;webp=1 450w\" data-sizes=\"(max-width: 600px) 100vw, 35vw\"><\/source>                <img decoding=\"async\" class=\"luna-image\" src=\"data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjUiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiAjRjVGNkY3OyIvPg==\" data-src=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg\" data-srcset=\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg?fit=180 180w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg?fit=360 360w, https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/07\/STOXX_Supplied_450x250.jpg?fit=450 450w\" data-sizes=\"(max-width: 600px) 100vw, 35vw\" alt=\"STOXX\" loading=\"lazy\">            <\/picture>        <\/a>    <\/figure>        <div class=\"luna-card__block\">                            <div class=\"contentFeed__pills\">                                                    <span class=\"contentFeed__pill contentFeed__pill--category\">Stock Trading<\/span>                            <\/div>                        <header>            <p class=\"luna-card__title luna-card__title--small\">                <a href=\"https:\/\/www.finder.com\/ca\/stock-trading\/euro-stoxx-50\">How to invest in the EURO STOXX 50<\/a>            <\/p>        <\/header>        <p>Want to invest in the Euro Stoxx 50 in Canada? Explore investment platforms and popular Euro Stoxx 50 index funds.<\/p>                    <\/div>        <\/article>            \n<\/div>\n                \n        <\/div>\n    <\/div>\n    <div class=\"fin-carousels__controls\">\n        <button class=\"fin-carousels__nav fin-carousels__nav--prev fin-carousels__nav--disabled\" aria-label=\"Previous slide\">\n            <svg class=\"luna-icon\" style=\"--fill: var(--color-background-main)\">\n                <use href=\"#chevron-left\"><\/use>\n            <\/svg>\n        <\/button>\n        <button class=\"fin-carousels__nav fin-carousels__nav--next fin-carousels__nav--disabled\" aria-label=\"Next slide\">\n            <svg class=\"luna-icon\" style=\"--fill: var(--color-background-main)\">\n                <use href=\"#chevron-right\"><\/use>\n            <\/svg>\n        <\/button>\n    <\/div>\n\n    <div class=\"fin-carousels__dots\" role=\"tablist\" aria-label=\"Carousel navigation\"><!-- Dots will be generated by JavaScript -->\n    <\/div>\n<\/div>\n\n    <\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Use this calculator to quickly see the potential outcomes of your options trades.<\/p>\n","protected":false},"author":385,"featured_media":1076480,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"apple_news_api_created_at":"","apple_news_api_id":"","apple_news_api_modified_at":"","apple_news_api_revision":"","apple_news_api_share_url":"","apple_news_cover_media_provider":"image","apple_news_coverimage":0,"apple_news_coverimage_caption":"","apple_news_cover_video_id":0,"apple_news_cover_video_url":"","apple_news_cover_embedwebvideo_url":"","apple_news_is_hidden":"","apple_news_is_paid":"","apple_news_is_preview":"","apple_news_is_sponsored":"","apple_news_maturity_rating":"","apple_news_metadata":"\"\"","apple_news_pullquote":"","apple_news_pullquote_position":"","apple_news_slug":"","apple_news_sections":[],"apple_news_suppress_video_url":false,"apple_news_use_image_component":false,"nicheCode":"","productId":"","enableOptimizely":false,"_persistent_nav_menu_items":[],"blockTemplateId":"","_post_hreflang":"en","related_url":"\/options-profit-calculator","footnotes":""},"categories":[38411],"tags":[5460,1679],"asset_tag":[],"class_list":["post-1076238","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-stock-trading","tag-calculator","tag-calculators-2"],"apple_news_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.9 (Yoast SEO v24.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Options Profit Calculator: Estimate Returns of Options Trades<\/title>\n<meta name=\"description\" content=\"Use this calculator to estimate profits and losses for call options and put options to help you make smart trading decisions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Options profit calculator\" \/>\n<meta property=\"og:description\" content=\"Use this calculator to estimate profits and losses for call options and put options to help you make smart trading decisions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\" \/>\n<meta property=\"og:site_name\" content=\"Finder Canada\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-21T18:40:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1800\" \/>\n\t<meta property=\"og:image:height\" content=\"1000\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Finder\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Finder\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\"},\"headline\":\"Options profit calculator\",\"datePublished\":\"2026-04-21T18:40:46+00:00\",\"dateModified\":\"2026-04-21T16:44:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\"},\"wordCount\":805,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.finder.com\/ca\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg\",\"articleSection\":[\"Stock Trading\"],\"inLanguage\":{\"@type\":\"Language\",\"name\":\"English\",\"alternateName\":\"en\"},\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#respond\"]}],\"citation\":[{\"@type\":\"CreativeWork\",\"name\":\"Questrade: What is Options Trading?\",\"url\":\"https:\/\/www.questrade.com\/learning\/questrade-basics\/introduction-to-options-trading\/introduction-to-options-trading\"},{\"@type\":\"CreativeWork\",\"name\":\"Osgoode Hall Law School: Trading Options in a TFSA: The Blurred Line Between a Permitted Use and \\\"Carrying on a Business\\\"\",\"url\":\"https:\/\/tax.osgoode.yorku.ca\/2021\/03\/trading-options-in-a-tfsa-the-blurred-line-between-a-permitted-use-and-carrying-on-a-business\/\"}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\",\"url\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\",\"name\":\"Options Profit Calculator: Estimate Returns of Options Trades\",\"isPartOf\":{\"@id\":\"https:\/\/www.finder.com\/ca\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg\",\"datePublished\":\"2026-04-21T18:40:46+00:00\",\"dateModified\":\"2026-04-21T16:44:48+00:00\",\"description\":\"Use this calculator to estimate profits and losses for call options and put options to help you make smart trading decisions.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage\",\"url\":\"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg\",\"contentUrl\":\"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg\",\"width\":1800,\"height\":1000},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"CA\",\"item\":\"https:\/\/www.finder.com\/ca\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Stock Trading\",\"item\":\"https:\/\/www.finder.com\/ca\/stock-trading\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Options profit calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.finder.com\/ca\/#website\",\"url\":\"https:\/\/www.finder.com\/ca\/\",\"name\":\"Finder Canada\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.finder.com\/ca\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.finder.com\/ca\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.finder.com\/ca\/#organization\",\"name\":\"Finder\",\"url\":\"https:\/\/www.finder.com\/ca\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.finder.com\/ca\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/05\/Finder-Logo-696x696-1.png\",\"contentUrl\":\"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/05\/Finder-Logo-696x696-1.png\",\"width\":1392,\"height\":1392,\"caption\":\"Finder\"},\"image\":{\"@id\":\"https:\/\/www.finder.com\/ca\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/en.wikipedia.org\/wiki\/Finder_(website)\"],\"description\":\"Every month more than 2 million unique visitors turn to Finder to save money and time, and to make important life choices. We compare everything from bank accounts, personal loans, investing platforms and much more.\",\"email\":\"heythere@finder.com\",\"legalName\":\"Finder\",\"foundingDate\":\"2006-01-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"51\",\"maxValue\":\"200\"}},{\"@context\":\"https:\/\/schema.org\",\"@type\":\"FAQPage\",\"name\":\"Frequently Asked Questions\",\"mainEntity\":[{\"@type\":\"Question\",\"name\":\"What is the break-even price for an option?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\rThe break-even price is the stock price at expiration where your option trade results in zero profit or loss (ignoring commissions). For a long call, the break-even price is the strike price plus the premium you paid. For a long put, the break-even price is the strike price minus the premium you paid.\\r\\rThe stock must move beyond this point in your favor for the trade to become profitable.\\r\"}},{\"@type\":\"Question\",\"name\":\"What happens if an option expires out of the money?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\rIt expires worthless. As the buyer, you lose only the premium you paid. No further action is required.\\r\"}},{\"@type\":\"Question\",\"name\":\"Is options trading legal in Canada?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"\\rYes, options trading is legal in Canada. A number of Canadian investment platforms support options trading, including Questrade, Qtrade, Wealthsimple, BMO InvestorLine and CIBC Investor's Edge.\\r\"}}]}]}<\/script>\n<meta property=\"article:modified_time\" content=\"2026-04-21T16:44:48+00:00\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Options Profit Calculator: Estimate Returns of Options Trades","description":"Use this calculator to estimate profits and losses for call options and put options to help you make smart trading decisions.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator","og_locale":"en_US","og_type":"article","og_title":"Options profit calculator","og_description":"Use this calculator to estimate profits and losses for call options and put options to help you make smart trading decisions.","og_url":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator","og_site_name":"Finder Canada","article_published_time":"2026-04-21T18:40:46+00:00","og_image":[{"width":1800,"height":1000,"url":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg","type":"image\/jpeg"}],"author":"Finder","twitter_misc":{"Written by":"Finder","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#article","isPartOf":{"@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator"},"headline":"Options profit calculator","datePublished":"2026-04-21T18:40:46+00:00","dateModified":"2026-04-21T16:44:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator"},"wordCount":805,"commentCount":0,"publisher":{"@id":"https:\/\/www.finder.com\/ca\/#organization"},"image":{"@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage"},"thumbnailUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg","articleSection":["Stock Trading"],"inLanguage":{"@type":"Language","name":"English","alternateName":"en"},"potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#respond"]}],"citation":[{"@type":"CreativeWork","name":"Questrade: What is Options Trading?","url":"https:\/\/www.questrade.com\/learning\/questrade-basics\/introduction-to-options-trading\/introduction-to-options-trading"},{"@type":"CreativeWork","name":"Osgoode Hall Law School: Trading Options in a TFSA: The Blurred Line Between a Permitted Use and \"Carrying on a Business\"","url":"https:\/\/tax.osgoode.yorku.ca\/2021\/03\/trading-options-in-a-tfsa-the-blurred-line-between-a-permitted-use-and-carrying-on-a-business\/"}]},{"@type":"WebPage","@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator","url":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator","name":"Options Profit Calculator: Estimate Returns of Options Trades","isPartOf":{"@id":"https:\/\/www.finder.com\/ca\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage"},"image":{"@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage"},"thumbnailUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg","datePublished":"2026-04-21T18:40:46+00:00","dateModified":"2026-04-21T16:44:48+00:00","description":"Use this calculator to estimate profits and losses for call options and put options to help you make smart trading decisions.","breadcrumb":{"@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#primaryimage","url":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg","contentUrl":"https:\/\/cdn.finder.com.au\/finder-us\/wp-uploads\/sites\/5\/2024\/08\/calculator_Supplied_1800x1000.jpg","width":1800,"height":1000},{"@type":"BreadcrumbList","@id":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"CA","item":"https:\/\/www.finder.com\/ca\/"},{"@type":"ListItem","position":2,"name":"Stock Trading","item":"https:\/\/www.finder.com\/ca\/stock-trading"},{"@type":"ListItem","position":3,"name":"Options profit calculator"}]},{"@type":"WebSite","@id":"https:\/\/www.finder.com\/ca\/#website","url":"https:\/\/www.finder.com\/ca\/","name":"Finder Canada","description":"","publisher":{"@id":"https:\/\/www.finder.com\/ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.finder.com\/ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.finder.com\/ca\/#organization","name":"Finder","url":"https:\/\/www.finder.com\/ca\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.finder.com\/ca\/#\/schema\/logo\/image\/","url":"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/05\/Finder-Logo-696x696-1.png","contentUrl":"https:\/\/www.finder.com\/finder-us\/wp-uploads\/sites\/5\/2025\/05\/Finder-Logo-696x696-1.png","width":1392,"height":1392,"caption":"Finder"},"image":{"@id":"https:\/\/www.finder.com\/ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/en.wikipedia.org\/wiki\/Finder_(website)"],"description":"Every month more than 2 million unique visitors turn to Finder to save money and time, and to make important life choices. We compare everything from bank accounts, personal loans, investing platforms and much more.","email":"heythere@finder.com","legalName":"Finder","foundingDate":"2006-01-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"51","maxValue":"200"}},{"@context":"https:\/\/schema.org","@type":"FAQPage","name":"Frequently Asked Questions","mainEntity":[{"@type":"Question","name":"What is the break-even price for an option?","acceptedAnswer":{"@type":"Answer","text":"\rThe break-even price is the stock price at expiration where your option trade results in zero profit or loss (ignoring commissions). For a long call, the break-even price is the strike price plus the premium you paid. For a long put, the break-even price is the strike price minus the premium you paid.\r\rThe stock must move beyond this point in your favor for the trade to become profitable.\r"}},{"@type":"Question","name":"What happens if an option expires out of the money?","acceptedAnswer":{"@type":"Answer","text":"\rIt expires worthless. As the buyer, you lose only the premium you paid. No further action is required.\r"}},{"@type":"Question","name":"Is options trading legal in Canada?","acceptedAnswer":{"@type":"Answer","text":"\rYes, options trading is legal in Canada. A number of Canadian investment platforms support options trading, including Questrade, Qtrade, Wealthsimple, BMO InvestorLine and CIBC Investor's Edge.\r"}}]}]},"article_modified_time":"2026-04-21T16:44:48+00:00"},"hrefLangLinks":[{"region":"USA","locale":"en-us","url":"https:\/\/www.finder.com\/stock-trading\/options-profit-calculator","isCurrentSite":false},{"region":"Canada","locale":"en-ca","url":"https:\/\/www.finder.com\/ca\/stock-trading\/options-profit-calculator","isCurrentSite":true}],"custom_fields":{"_masthead_variant":["{\"id\":\"standard-blue\",\"showFeaturedImage\":false,\"presetId\":\"\",\"shouldUsePrimaryCTAFieldName\":false,\"shouldUseSecondaryCTAFieldName\":false,\"primaryCTA\":null,\"secondaryCTA\":null,\"widgetShortcode\":\"\",\"widgetHeading\":\"\",\"widgetStats\":\"\",\"hasPrioritizedWidget\":false,\"hasMaximizedWidget\":false,\"shouldUseOverrideCTALabel\":false,\"overrideCTA\":null,\"cleanTopPicks\":\"\",\"tilesMenuId\":\"\"}"],"_masthead_subheading":["{\"text\":\"Use our options calculator to estimate profits and losses for call options and put options.\"}"],"_content_type":["niche-content\/information\/calculator"],"custom_post_template":["single-masthead-two-column.php"]},"amp_enabled":false,"_links":{"self":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts\/1076238"}],"collection":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/users\/385"}],"replies":[{"embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/comments?post=1076238"}],"version-history":[{"count":3,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts\/1076238\/revisions"}],"predecessor-version":[{"id":1076482,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/posts\/1076238\/revisions\/1076482"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/media\/1076480"}],"wp:attachment":[{"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/media?parent=1076238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/categories?post=1076238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/tags?post=1076238"},{"taxonomy":"asset_tag","embeddable":true,"href":"https:\/\/www.finder.com\/ca\/wp-json\/wp\/v2\/asset_tag?post=1076238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}