Ebay Calculate Sell Through Rate

eBay Sell-Through Rate Calculator .ebay-calc-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; color: #333; line-height: 1.6; } .calculator-box { background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 40px; } .calc-title { text-align: center; margin-bottom: 25px; color: #0064D2; /* eBay Blue */ font-size: 24px; font-weight: 700; } .input-group { margin-bottom: 20px; } .input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; } .input-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .input-group input:focus { border-color: #0064D2; outline: none; box-shadow: 0 0 0 3px rgba(0,100,210,0.1); } .calc-btn { width: 100%; padding: 14px; background-color: #0064D2; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } .calc-btn:hover { background-color: #0053a8; } .result-section { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #0064D2; border-radius: 4px; display: none; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .result-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .result-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .result-label { font-weight: 600; color: #666; } .result-value { font-weight: 800; font-size: 20px; color: #333; } .verdict-badge { display: inline-block; padding: 6px 12px; border-radius: 20px; color: white; font-weight: bold; font-size: 14px; text-transform: uppercase; } .content-section h2 { color: #333; margin-top: 30px; border-bottom: 2px solid #0064D2; padding-bottom: 10px; display: inline-block; } .content-section p { margin-bottom: 15px; font-size: 16px; } .content-section ul { margin-bottom: 20px; } .content-section li { margin-bottom: 8px; } .tooltip { font-size: 12px; color: #777; margin-top: 4px; }
eBay Sell-Through Rate Calculator
Total number of items sold in the last 3 months.
Current number of active listings available for sale.
Sell-Through Rate (STR): 0%
Demand Verdict:
Estimated Days to Sell:

What is eBay Sell-Through Rate?

The eBay Sell-Through Rate (STR) is the most critical metric for resellers to determine product demand. It represents the percentage of inventory that has sold over a specific period (usually 90 days) compared to the amount of inventory currently available.

A high sell-through rate indicates that an item is in high demand and sells quickly, while a low rate suggests the market is saturated or the item is undesirable. Mastering this calculation helps you avoid "death piles" of unsold inventory.

How to Calculate Sell-Through Rate

The formula for calculating the sell-through rate on eBay is straightforward:

(Sold Listings ÷ Active Listings) × 100 = STR %

To find these numbers, you can use eBay's Terapeak Product Research tool or manually filter search results by "Sold" and "Completed" listings versus current active listings.

Interpreting Your Results

Once you have your percentage, here is how to interpret the data for sourcing decisions:

  • Under 40% (Slow Mover): The market is saturated. Expect these items to sit for several months. You should only buy these if the profit margin is exceptionally high.
  • 40% – 100% (Steady Seller): This is healthy demand. Items typically sell within 1 to 3 months. These are safe, consistent flips.
  • Over 100% (Fast Mover): There are more buyers than available items. These items often sell within days or even hours of listing. These are "BOLO" (Be On The Lookout) items.

Why 90 Days?

eBay keeps sold listing data accessible for 90 days. Using this timeframe standardizes the metric across the reseller community. If you see 100 sold items and 100 active items, that means 100% of the current supply turns over every 90 days.

function calculateSTR() { var soldInput = document.getElementById('soldListings'); var activeInput = document.getElementById('activeListings'); var resultSection = document.getElementById('resultSection'); var strDisplay = document.getElementById('strResult'); var verdictDisplay = document.getElementById('verdictResult'); var daysDisplay = document.getElementById('daysResult'); var analysisDisplay = document.getElementById('analysisText'); var sold = parseFloat(soldInput.value); var active = parseFloat(activeInput.value); // Validation if (isNaN(sold) || isNaN(active)) { alert("Please enter valid numbers for both fields."); return; } if (sold < 0 || active 0) { str = 10000; // Arbitrary high number for display logic strDisplay.innerHTML = "> 1000%"; verdictText = "UNICORN"; verdictColor = "#9b59b6"; // Purple daysToSell = "Immediate"; analysis = "There are 0 active listings but recorded sales. This implies extreme scarcity and immediate sales potential."; } else { str = 0; strDisplay.innerHTML = "0%"; verdictText = "NO DATA"; verdictColor = "#7f8c8d"; // Grey daysToSell = "N/A"; analysis = "No sales and no active listings."; } } else { str = (sold / active) * 100; strDisplay.innerHTML = str.toFixed(1) + "%"; // Logic for estimated days to sell // If STR is monthly, we divide 30 / (STR/100). Since input is 90 days usually: // Sales per day = Sold / 90. // Days to clear current inventory = Active / (Sold/90). if (sold > 0) { var days = active / (sold / 90); daysToSell = Math.round(days) + " Days"; } else { daysToSell = "Indefinite"; } // Verdict Logic if (str >= 100) { verdictText = "FAST MOVER"; verdictColor = "#27ae60"; // Green analysis = "Great find! Demand exceeds supply. Expect a quick sale if priced competitively."; } else if (str >= 40) { verdictText = "STEADY SELLER"; verdictColor = "#f39c12"; // Orange analysis = "Solid item. There is healthy demand, but expect to wait a few weeks for a sale."; } else { verdictText = "SLOW MOVER"; verdictColor = "#c0392b"; // Red analysis = "High competition or low demand. Ensure your profit margins justify a long storage time."; } } // Apply Styles and Content verdictDisplay.innerHTML = verdictText; verdictDisplay.style.backgroundColor = verdictColor; daysDisplay.innerHTML = daysToSell; analysisDisplay.innerHTML = analysis; // Show Result resultSection.style.display = "block"; }

Leave a Comment