배당락일과 배당기준일 차이 비교
2024년 5월 T+1 결제 제도 도입 이후 배당락일(ex-dividend date)과 기준일(record date)이 동일하게 설정됩니다.
미국 T+1 결제 제도 하에서, 지난 12개월간 기록된 모든 배당 사례를 조사한 결과 99%의 비율로 배당의 권리락일(ex-dividend date)과 기준일(record date)이 같은 날에 발생했습니다. 이는 최근의 변화입니다. 수십 년 동안 권리락일은 기준일보다 영업일 기준 1~2일 앞서 결정되었으며, 온라인상의 대부분의 설명도 여전히 이러한 과거의 방식을 따르고 있습니다. 이 페이지에서는 각 날짜의 의미를 설명하고, 실제 배당 사례를 통해 네 가지 날짜의 흐름을 살펴봅니다. 또한 2024년 5월에 발생한 변화를 해당 주 단위까지 상세히 측정하며, 권리락일이 여전히 기준일 이후에 발생하는 유일한 사례도 다룹니다.
두 날짜에 대한 설명
배당기준일(record date)은 기업이 주주 명부를 확인하는 날입니다. 해당 영업일 종가 기준으로 명부에 등록된 주주가 선언된 배당금을 받습니다. 배당락일(ex-dividend date)은 주식 매수자가 해당 배당금을 받을 수 없는 첫 거래일입니다. 해당일 오전부터 주식은 배당금 없이(ex) 거래됩니다.
배당기준일은 기업의 회계 절차이며, 특정 시점의 소유 현황을 정의합니다. 배당락일은 배당기준일로부터 파생된 시장 관행입니다. 거래소는 배당기준일까지 주식 결제가 완료될 수 있는 마지막 거래일을 역산하여 배당락일을 결정합니다.
실질적인 배당 사례 확인
집계 데이터에는 기준점이 필요합니다. 배당 기록에서 추출한 Apple의 가장 최근 배당 완료 내역(배당 선언, 배당락일, 기준일, 지급일)은 다음과 같습니다.
모든 수치 뒤에 숨겨진 정확한 SQL
SELECT ticker,
formatDateTime(declaration_date, '%Y-%m-%d') AS declared,
formatDateTime(ex_dividend_date, '%Y-%m-%d') AS ex_date,
formatDateTime(record_date, '%Y-%m-%d') AS record,
formatDateTime(pay_date, '%Y-%m-%d') AS paid,
cash_amount AS dividend_per_share,
dateDiff('day', declaration_date, ex_dividend_date) AS declared_to_ex_days,
dateDiff('day', ex_dividend_date, record_date) AS ex_to_record_days,
dateDiff('day', record_date, pay_date) AS record_to_pay_days
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
AND currency = 'USD'
AND distribution_type = 'recurring'
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
AND pay_date IS NOT NULL
AND declaration_date IS NOT NULL
ORDER BY ex_dividend_date DESC
LIMIT 1Apple은 배당락일보다 11일 앞선 2026-04-30에 주당 0.27의 배당금을 지급하기로 선언했습니다. 배당락일과 기준일이 같은 날인 2026-05-11에 해당하여, 배당을 받을 수 있는 마지막 주식 매수일은 직전 거래일이었습니다. 현금은 등록 시점으로부터 3일 후인 2026-05-14에 지급되었습니다. 모든 배당 일정 항목은 이 네 가지 날짜로 구성되며, 주당 배당금은 해당 주식의 배당수익률(dividend yield)을 계산하는 기초 데이터가 됩니다.
2024년 5월의 변화: T+1 결제
결제는 체결된 거래에 대해 주식과 현금이 실제로 교환되는 단계입니다. 미국 주식은 2017년 9월까지 영업일 기준 3일(T+3) 내에 결제되었습니다. 2017년 9월부터는 영업일 기준 2일(T+2)로 단축되었으며, 2024년 5월 28일부터는 영업일 기준 1일(T+1)로 단축되었습니다. 결제 주기가 짧아질수록 배당 기준일과 배당락일 사이의 간격도 좁혀졌습니다. 결제 주기가 하루로 단축됨에 따라, 배당 기준일 전날에 매수한 경우에도 제때 결제가 완료됩니다. 따라서 배당을 받지 못하는 첫 번째 날은 배당 기준일 당일이 됩니다. 즉, 배당락일(ex-date)과 배당 기준일(record date)이 이제 일치하게 되었습니다.
12년간의 배당 데이터를 통해 세 가지 시대를 모두 확인할 수 있습니다:
모든 수치 뒤에 숨겨진 정확한 SQL
SELECT toYear(ex_dividend_date) AS year,
count() AS dividends,
round(100.0 * countIf(ex_dividend_date = record_date) / count(), 1) AS pct_ex_equals_record,
round(quantileDeterministic(0.5)(dateDiff('day', ex_dividend_date, record_date), cityHash64(id)), 0) AS median_gap_days
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND ex_dividend_date >= '2015-01-01'
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
GROUP BY year
ORDER BY yearT+3 체제였던 2015에는 배당락일과 배당 기준일 사이의 중앙값 간격이 2일이었으며, 배당락일과 배당 기준일이 동일한 경우는 0%에 불과했습니다. 2017에는 여전히 2일의 중앙값이 나타나는데, 이는 해당 9월에 T+2로 전환되었기 때문입니다. 2018에 이르러 중앙값은 1일로 정착되었으며, 2023까지 이 상태가 유지되었습니다. 이후 2024에는 5월의 제도 전환을 기점으로 해당 연도 배당의 65.1%이 동일한 날짜를 가졌습니다. 25057건의 이벤트를 포함한 2026 현재까지의 비율은 98.9%이며, 중앙값 간격은 0일입니다.
달력이 전환된 주간
연간 단위의 분류는 특정 시점을 모호하게 만듭니다. 2024년 봄과 여름 내내 매주 동일한 측정값이 나타납니다:
모든 수치 뒤에 숨겨진 정확한 SQL
SELECT toStartOfWeek(ex_dividend_date, 1) AS week_of,
count() AS dividends,
round(100.0 * countIf(ex_dividend_date = record_date) / count(), 1) AS pct_ex_equals_record
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND ex_dividend_date >= '2024-04-01'
AND ex_dividend_date < '2024-08-01'
AND record_date IS NOT NULL
GROUP BY week_of
ORDER BY week_of2024-05-20 주간에는 해당 주 587 배당금 중 0%의 날짜가 일치했습니다. 기존 달력이 그대로 유지된 상태였습니다. 그다음 주인 2024-05-27 주간(5월 28일 화요일 포함)에는 457개 이벤트에 걸쳐 주식 수치가 90.2%로 급증했으며, 마지막으로 표시된 주간에는 99.2%로 기록되었습니다. 단계적 도입이나 중첩 기간은 없었습니다. 한 주 만에 0에서 거의 전체로 전환되었습니다.
현재 날짜 간의 간격은 어느 정도인가?
지난 12개월간의 데이터를 살펴보면, 미국 배당금 중 99%은 배당락일(ex-date)과 기준일(record date) 사이의 간격이 0일입니다.
모든 수치 뒤에 숨겨진 정확한 SQL
SELECT dateDiff('day', ex_dividend_date, record_date) AS calendar_days_ex_to_record,
count() AS dividends,
round(100.0 * count() / sum(count()) OVER (), 1) AS pct
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND ex_dividend_date >= today() - INTERVAL 12 MONTH
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
GROUP BY calendar_days_ex_to_record
HAVING dividends >= 20
ORDER BY dividends DESC간격이 하루 이상인 나머지 소수 사례는 특수 상황이 주를 이룹니다. 결제 주기가 다른 외국 발행사, 불규칙한 배당, 그리고 결제 시계가 멈추는 주말 또는 시장 휴장일에 걸쳐 있는 날짜 등이 이에 해당합니다(결제는 달력이 아닌 영업일 기준으로 계산됩니다). 한 가지 유의할 점은, 발생 횟수가 20회 미만인 간격 크기는 통계에서 제외된다는 것입니다. 또한, 배당락일이 기준일보다 늦게 설정되는 아주 적은 수의 배당 사례도 존재하며, 해당 그룹은 별도의 섹션에서 다룹니다.
The big-dividend exception: ex-date after the record date
One rule survives every settlement change, and most explainers skip it. For very large cash distributions — 25% or more of the share's value, under FINRA and exchange rules — the ex-date is set on the first business day after the pay date, not before the record date. Shares keep trading with the right to the payment attached through the pay date; a buyer in that window collects it through an IOU stapled to the trade, called a due bill. The inversion is easy to miss: a shareholder of record who sells before the (late) ex-date hands the payment to the buyer — the record date stops being the operative date entirely.
The trailing twelve months of data show the pattern:
모든 수치 뒤에 숨겨진 정확한 SQL
SELECT distribution_type AS dividend_type,
count() AS dividends,
countIf(ex_dividend_date > record_date) AS ex_after_record,
round(100.0 * countIf(ex_dividend_date > record_date) / count(), 2) AS pct_ex_after_record,
round(quantileDeterministicIf(0.5)(dateDiff('day', record_date, ex_dividend_date), cityHash64(id), ex_dividend_date > record_date), 0) AS median_days_record_to_ex,
round(100.0 * countIf(ex_dividend_date > record_date AND ex_dividend_date > pay_date) / greatest(countIf(ex_dividend_date > record_date), 1), 0) AS pct_of_those_ex_after_pay
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND distribution_type IN ('special', 'recurring')
AND ex_dividend_date >= today() - INTERVAL 12 MONTH
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
AND pay_date IS NOT NULL
GROUP BY distribution_type
HAVING countIf(ex_dividend_date > record_date) > 0
ORDER BY indexOf(['special', 'recurring'], distribution_type)21 of 450 special distributions — 4.67% — went ex after their record date, with the median late ex-date landing 16 calendar days past the record snapshot. Among ordinary recurring dividends the same pattern shows up in 0.03% of 44297 events — a rounding error. The pay-date rule is legible too: 95% of the late-ex specials went ex after their pay date, exactly where the rule places the date.
배당금 수령 여부를 결정하는 날짜는 언제인가?
정기 배당의 경우, 기준이 되는 날은 ex-dividend date(배당락일)입니다. 배당락일 이전에 주식을 보유해야 배당금을 받을 수 있으며, 배당락일 당일 또는 그 이후에 매수하면 배당금은 매도자에게 지급됩니다. 두 날짜가 통합된 상황에서 적용되는 규칙은 간단합니다. 배당락일 또는 record date(주주명부 확정일)의 전날까지 매수를 완료해야 합니다. 당일 주가 변동 원인과 시장이 배당액만큼 호가를 낮추는 이유를 포함한 상세한 메커니즘은 배당락일 작동 원리 가이드에서 확인할 수 있습니다. 또한 향후 배당락 일정에서 며칠 내로 배당락이 예정된 종목 목록을 확인할 수 있습니다.
record date는 거래 마감 시한이 아닙니다. record date 당일에 이루어진 매수는 다음 영업일에 결제되므로, 주주명부 확정 시점보다 하루 늦게 처리되어 배당금을 받을 수 없습니다. "record date 이틀 전"에 매수하라고 설명하는 자료는 과거의 T+2 결제 주기를 기준으로 한 것입니다.
DRIP이 마감 기한을 변경하는가?
아니요. DRIP(Dividend Reinvestment Plan, 배당 재투자 계획)은 배당금 지급 이후의 현금 처리 방식을 변경하는 것입니다. 브로커는 지급된 현금을 사용하여 통상 지급일 전후로 주식을 추가 매수합니다. 배당 권리는 일반 현금 배당과 동일합니다. 즉, 배당락일 이전에 주식을 보유해야 합니다. 재투자 매수분은 해당 배당금을 지급한 회차가 아닌, 다음 배당의 주주명부 확정 시점에 반영됩니다.
ETF와 뮤추얼 펀드도 동일한 날짜를 따르는가?
ETF는 거래소에서 거래되며 T+1 결제가 이루어지므로, 일반 주식 배당과 동일한 선언/배당락/record date/지급 절차를 따릅니다. 뮤추얼 펀드는 다른 구조로 운영됩니다. 주식은 당일 종가인 NAV(순자산가치)로 펀드 자체와 거래됩니다. 하지만 펀드 역시 배당락일을 공시하며, 당일 아침에 NAV가 배당액만큼 하락합니다. 따라서 배당락일 이전에 주식을 보유해야 배당금을 받을 수 있다는 점은 동일합니다.
record date까지 매도 포지션(Short)을 유지한다면 어떻게 되는가?
공매도자는 주식을 빌려 매도했으며, 반대편의 매수자가 주주명부상의 보유자가 됩니다. 주식 대여자는 여전히 배당 수익을 기대하므로, 공매도자의 브로커는 공매도 계좌에서 배당금 전액을 차감하여 대여자에게 전달합니다. 이를 payment in lieu(대체 지급)라고 합니다. 배당락일 또는 record date까지 매도 포지션을 유지한다는 것은 배당금을 받는 것이 아니라 지불해야 함을 의미하며, 이 비용은 배당금 규모에 비례합니다. 대규모 특별 배당을 앞두고 매도 포지션을 유지하는 것은 비용 부담이 큽니다.
일정의 나머지: 배당 선언 및 지급
배당락일(ex-date)과 기준일(record date)은 더 긴 일정의 일부입니다. 지난 12개월 동안 발생한 44244건의 미국 배당금을 분석한 결과, 기업은 배당락일 기준 중앙값인 31일 전에 배당을 선언하며, 현금은 기준일로부터 중앙값인 5일 후에 지급됩니다.
모든 수치 뒤에 숨겨진 정확한 SQL
SELECT count() AS dividends,
round(quantileDeterministic(0.5)(dateDiff('day', declaration_date, ex_dividend_date), cityHash64(id)), 0) AS median_declared_to_ex_days,
round(quantileDeterministic(0.5)(dateDiff('day', record_date, pay_date), cityHash64(id)), 0) AS median_record_to_pay_days
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND distribution_type = 'recurring'
AND ex_dividend_date >= today() - INTERVAL 12 MONTH
AND ex_dividend_date <= today()
AND declaration_date IS NOT NULL
AND pay_date IS NOT NULL
AND record_date IS NOT NULL
AND pay_date >= record_date따라서 일반적인 분기 배당은 약 한 달 전에 공시되고, 배당락일/기준일에 주주 명부를 확정하며, 해당 시점으로부터 약 일주일 이내에 지급됩니다. 위의 Apple 사례는 정확히 이 과정을 따랐습니다.
Record date vs. ex-dividend date FAQ
Are the record date and the ex-dividend date the same day now?
For nearly all U.S. dividends, yes. Since the move to T+1 settlement on May 28, 2024, the ex-dividend date and the record date coincide for 98.9% of U.S. dividend events in 2026. The main exception is a special distribution worth 25% or more of the share price, which goes ex the business day after it is paid.
If I buy a stock on the record date, do I get the dividend?
No. A trade made on the record date settles the next business day, after the shareholder register snapshot is taken, and the dividend goes to the seller. To receive the dividend, the purchase must be made before the ex-dividend date — which today is the same day as the record date.
Why did the ex-dividend date used to be earlier than the record date?
Stock trades took longer to settle. Under T+2 settlement (2017–2024) a purchase needed two business days to reach the register, so the exchanges set the ex-date one business day before the record date. Each time the cycle shortened — T+3 to T+2 in 2017, T+2 to T+1 in 2024 — the ex-date moved closer to the record date.
What happens if I am short a stock on the record date?
You pay the dividend instead of receiving it. Your broker debits your account for the full amount and forwards it to the share lender as a payment in lieu. The charge applies to anyone short through the ex/record date and scales with the payout.
Which date should I actually watch?
The ex-dividend date. It decides who receives the payment, appears on every dividend calendar, and under T+1 doubles as the record date for almost every U.S. dividend. The payment arrives a median of 5 days later.
Every figure on this page is computed live from the dividend records in our warehouse — run the queries yourself, or explore your own holdings' dividend calendars, on the Strasmore terminal.