Travel Nurse Paycheck Calculator

Travel Nurse Paycheck Calculator shows real weekly take-home pay, not annual tax math. Enter contract rates, stipends, overtime, housing costs, and tax-home status to see net pay, risk scenarios, and true contract value based on real travel nurse pay behavior.

Usually lower to maximize stipend
Amortized into weekly calc
36 Hrs
Real Net Loss: $0.00
Used to calculate ‘Disposable Net’.
$0
Current Offer
Net: $0
Hrly: $0/hr
Saved Offer B
Net: $0
Hrly: $0/hr
Paycheck Results (Weekly Estimate)
๐Ÿ“‰ Net Pay Change
vs Last Calc
Rank: #1
Total Net Pay
$0.00
Taxable + Stipends
Net Per Shift
$0.00
Take Home / Shift
Gross Taxable
$0.00
W-2 Wages Only
Blended Hourly
$0.00/hr
Real Value of Contract
Effort vs Reward
Good
Ratio: Net / Hours
Rent Coverage
0%
๐Ÿง  Is OT Worth It? (Marginal Tax Sim)
๐Ÿšซ Missed Shift Impact
$0.00 Loss
CategoryAmount
Taxable Wages $0.00
+ Tax-Free Stipends $0.00
– Pre-Tax Benefits -$0.00
Federal Tax $0.00
Social Security $0.00
Medicare $0.00
Combined State Tax $0.00
Estimated Tax Shield (Stipends) $0.00
Total Take Home $0.00
๐Ÿ’ธ Deduction Stack

The Travel Nurse Paycheck Calculator is a web-based application designed to compute estimated weekly net pay based on specific contract variables, tax settings, and stipend allocations. This tool processes user-defined inputs regarding hourly wages, overtime hours, contract duration, and non-taxable allowances to generate a financial breakdown. It supports two primary calculation modes: a “Travel Contract” mode based on weekly stipends and a “Local Contract” mode based on hourly rates and pay frequency.

The calculator converts gross income and tax-free stipends into a projected “Total Net Pay” figure. It mathematically accounts for federal withholding, FICA taxes (Social Security and Medicare), state tax liabilities, and pre-tax deductions. Additionally, the tool provides derivative metrics such as the blended hourly rate and disposable net income, based strictly on the mathematical formulas defined in the underlying code.

Inputs Used by the Travel Nurse Paycheck Calculator

The calculator accepts specific numerical and boolean inputs to execute its payroll logic. Each input corresponds to a variable in the calculation engine.

Contract and Pay Inputs

  • Taxable Hourly Rate ($): The hourly wage subject to income tax. This value is multiplied by the “Contracted Hours/Week” to determine the base taxable gross pay.
  • Contracted Hours/Week: The number of hours worked per week at the standard taxable rate.
  • Contract Duration (Weeks): Used to amortize the “Completion Bonus” across the weekly pay periods.
  • Completion Bonus ($): A lump sum amount added to the contract. The code divides this value by the “Contract Duration” and adds the result to the weekly taxable gross.
  • Overtime Rate ($): The hourly rate applied to hours exceeding the contracted amount.
  • Projected OT Hours: The number of additional hours worked per week, multiplied by the Overtime Rate.
  • Local Contract Inputs: In “Local Contract” mode, the tool accepts an “Hourly Rate,” “Hours/Week,” “Overtime Hours,” and “Pay Frequency” (Weekly or Bi-Weekly). Bi-weekly inputs are normalized to a weekly basis for calculation.

Stipend and Allowance Inputs

  • Tax Home Maintained? (Checkbox): This boolean input determines the taxability of stipends. If checked, stipends remain tax-free. If unchecked, the code adds the housing and meal stipends to the taxable gross income.
  • Housing Stipend ($/wk): A monetary allowance for lodging.
  • M&IE Stipend ($/wk): A monetary allowance for meals and incidental expenses.

Tax and Deduction Inputs

  • Filing Status: Selects the specific federal tax bracket array (Single, Married Jointly, or Head of Household) used for withholding calculations.
  • Work State Tax %: The percentage of taxable income withheld for the state of employment.
  • Home State Tax %: The percentage of taxable income liable to the user’s resident state.
  • Reciprocal Agreement? (Checkbox): If checked, the logic applies only the Home State Tax. If unchecked, the logic calculates Work State Tax plus any differential owed to the Home State.
  • YTD Wages ($): Total year-to-date earnings, used to calculate the remaining limit for the Social Security tax cap.
  • 401(k) %: A percentage of the taxable gross deducted before federal tax calculations (but after FICA calculations).
  • Health Ins. (Weekly) $: A fixed dollar amount deducted from gross pay before federal and FICA taxes.
  • Extra Withholding ($): A fixed dollar amount added directly to the calculated federal tax liability.

Advanced Simulation Inputs

  • Census Drop Risk Slider: A range input (20โ€“36 hours) that overrides the total hours to simulate income loss from cancelled shifts.
  • Duplicate Housing Cost: Inputs for “Rent at Home” and “Rent on Assignment” used solely to calculate “Disposable Net.”

How the Travel Nurse Paycheck Calculator Works

The calculation sequence executes in the following order when the “Calculate Paycheck” button is triggered or when specific inputs are modified:

  1. Gross Pay Calculation:
    • The code calculates taxableGross by multiplying the Taxable Hourly Rate by Contracted Hours.
    • If applicable, Overtime Pay (OT Rate ร— OT Hours) and the amortized Bonus (Total Bonus รท Weeks) are added to taxableGross.
    • For Local Contracts, the system normalizes bi-weekly entries by multiplying by 26 and dividing by 52 to establish a weekly baseline.
  2. Stipend Allocation:
    • The system sums the Housing Stipend and M&IE Stipend.
    • If “Tax Home Maintained” is true, this sum remains separate as stipend.
    • If “Tax Home Maintained” is false, this sum is added to taxableGross, treating the allowances as fully taxable wages.
  3. Pre-Tax Deduction Processing:
    • The 401(k) deduction is calculated as taxableGross multiplied by the 401(k) percentage.
    • The Health Insurance amount is added to the 401(k) amount to determine total pretax deductions.
  4. Tax Base Determination:
    • Federal Taxable Base: Calculated as taxableGross minus pretax deductions.
    • FICA Taxable Base: Calculated as taxableGross minus Health Insurance (401(k) contributions remain taxable for FICA).
  5. Social Security and Medicare Calculation:
    • The code calculates the remaining Social Security cap space by subtracting “YTD Wages” from the fixed constant of $176,100 (2026 cap).
    • Social Security Tax is 6.2% (0.062) of the FICA Taxable Base, limited by the remaining cap space.
    • Medicare Tax is calculated as 1.45% (0.0145) of the FICA Taxable Base, with no cap.
  6. Federal and State Tax Calculation:
    • Federal Tax: The Federal Taxable Base is compared against a hardcoded array of 2026 weekly tax brackets specific to the selected Filing Status. The code applies the marginal rate and adds the cumulative constant for the specific bracket. Any “Extra Withholding” value is added to this total.
    • State Tax:
      • If “Reciprocal Agreement” is checked: Tax equals Federal Taxable Base ร— Home State Tax %.
      • If unchecked: Tax equals (Federal Taxable Base ร— Work State Tax %) + Max(0, (Federal Taxable Base ร— Home State Tax %) – Work State Tax Liability).
  7. Net Pay Derivation:
    • Total Deductions are the sum of SS, Medicare, Federal Tax, State Tax, and Pre-tax benefits.
    • Total Net Pay is calculated as (taxableGross + stipend) minus Total Deductions.

Results and Metrics Explained

The tool outputs several defined financial metrics derived from the calculation logic:

  • Total Net Pay: The final weekly take-home amount after all taxes and deductions are subtracted from the sum of taxable wages and stipends.
  • Gross Taxable: The total amount of income reported on a W-2 form. This includes hourly wages, overtime, bonuses, and stipends if the tax home requirement is not met.
  • Blended Hourly Rate: This metric represents the total real value of the contract per hour worked.
    • Formula: (Taxable Gross + Stipend) รท Total Hours Worked.
  • Net Per Shift: The Total Net Pay divided by the number of shifts (calculated as Total Hours รท 12).
  • Estimated Tax Shield: A numerical estimate of the tax savings generated by the non-taxable stipends.
    • Formula: Total Stipend Amount ร— 0.25 (Assuming a flat 25% tax bracket).
  • Rent Coverage: The percentage of the weekly income required to cover duplicate housing costs.
  • Disposable Net: The Total Net Pay minus the weekly equivalent of the “Duplicate Housing Cost” inputs.

Interpreting the Calculation Output

The numerical outputs reflect the mathematical relationship between the inputs and the programmed tax logic.

  • Higher Blended Rate: A numeric increase in the Blended Hourly Rate indicates a higher ratio of total compensation (taxable + non-taxable) relative to the hours worked.
  • Stipend Ratio: If the stipend amount exceeds 50% of the total compensation (taxableGross + stipend), the code triggers a visible alert (#tvl-audit-warn). This is a mathematical threshold programmed into the tool.
  • Burnout Indicator: The tool displays a “High Risk” status if the total hours exceed 48 AND the calculated Net Per Hour is less than $50. Otherwise, it displays “Sustainable.”
  • Delta Panel: This section displays the numeric difference between the current calculation and the immediately preceding calculation (current Net - last Net), identifying if the change resulted from a stipend shift or tax/hour adjustment.

Assumptions and Calculation Limits

The code enforces specific constraints and constants that define the scope of the results:

  • Tax Year Constants: The calculator uses hardcoded 2026 tax constants:
    • Social Security Rate: 6.2%
    • Medicare Rate: 1.45%
    • Social Security Wage Base Limit: $176,100
  • Federal Brackets: Withholding is calculated using a simplified 2026 weekly bracket system. It does not account for standard deductions or specific tax credits/exemptions beyond the filing status.
  • State Tax Logic: State taxes are calculated as simple percentages of the federal taxable base. The tool does not use specific state tax tables or progressive state brackets.
  • Time Basis: All calculations assume a standard 52-week year. Monthly inputs (like rent) are converted using the formula: (Monthly Value * 12) / 52.
  • FICA Taxability: The code assumes 401(k) contributions are taxable for Social Security and Medicare purposes but exempt from Federal Income Tax. Health insurance premiums are treated as exempt from both.

Estimation Disclaimer

The results provided by this Travel Nurse Paycheck Calculator are estimates generated mathematically based on user inputs and fixed constants. Actual payroll processing may vary due to specific agency software, exact state tax bracket progression, local municipality taxes, and individual tax situations.

Related Tools & Calculators: