Web Editor

This tool allows you to quickly build your weightlifting programs, ensure you have proper weekly volume per muscle group, and balance it with the time you spend in a gym. You can build multi-week programs, plan your mesocycles, deload weeks, testing 1RM weeks, and see the weekly undulation of volume and intensity of each exercise on a graph.

Set the program name, create weeks and days, type the list of exercises for each day, putting each exercise on a new line, along with the number of sets and reps after slash (

/
) character, like this:

Squat / 3x3-5 Romanian Deadlift / 3x8

Autocomplete will help you with the exercise names. You can also create custom exercises if they're missing in the library.

On the right you'll see Weekly Stats, where you can see the number of sets per week per muscle group, whether you're in the recommended range (indicated by color), strength/hypertrophy split, and if you hover a mouse over the numbers - you'll see what exercises contribute to that number, and how much.

The exercise syntax supports RPEs , percentage of 1RM, rest timers, various progressive overload types, etc. Read more about the features in the docs!

When you're done, you can convert this program to Liftosaur program, and run what you planned in the gym, using the Liftosaur app!

To use this program:
  • Install Liftosaur app
  • Copy the link to this program by clicking on below
  • Import the link in the app, on the Choose Program screen.
QR code for app stores
Download on the App Store
Get it on Google Play

00:12
// Estimate-1RM-driven progression: updates rm1 from best set E1RM,
// then sets next weight to hit the programmed reps.
e1rm_progress / used: none / progress: custom() {~
// 1) Find best E1RM across completed sets using Epley (w * (1 + reps/30))
var.best = 0
for (var.i in completedReps) {
var.e1 = completedWeights[var.i] * (1 + completedReps[var.i] / 30)
if (var.e1 > var.best) {
var.best = var.e1
}
}

// 2) If we actually lifted, update rm1 upwards (never down)
if (var.best > 0 && var.best > rm1) {
rm1 = var.best
}

// 3) Set next session’s working weight from rm1 to target prescribed reps (first set’s reps)
// Works for both fixed reps and ranges — Liftosaur exposes reps[1] as a number on the plan.
var.target = reps[1]
var.next = rm1 / (1 + var.target / 30)

// 4) Snap to your available loading (plates/dumbbells) using increment()
weights = increment(var.next)
~}

Squat / 3x7 / 100kg / warmup: none / progress: custom() { ...e1rm_progress }

Week Stats

Total Sets: 3
Strength Sets: 3, 100%
Hypertrophy Sets: 0, 0%
Upper Sets: 0
Lower Sets: 3 (3s), 1d
Core Sets: 0
Push Sets: 0
Pull Sets: 0
Legs Sets: 3 (3s), 1d
Shoulders: 0↑
Triceps: 0↑
Back: 2↑ (2s), 1d
Abs: 2↑ (2s), 1d
Glutes: 3↑ (3s), 1d
Hamstrings: 2↑ (2s), 1d
Quadriceps: 3↑ (3s), 1d
Chest: 0↑
Biceps: 0↑
Calves: 2↑ (2s), 1d
Forearms: 0↑