Up Like a Rocket, Down Like a Feather
Five price signals, five right triangles, one angle that tells you when the (asset) rocket is too vertical to stay aloft. A trader's intuition expressed in tangents.
Stock and commodity pit traders have always invented language for things that resist language. A stock (or energy contract) that surges and then bleeds back down is said to go up like a rocket and down like a feather. The image is vivid — a near-vertical climb on a thin column of euphoria, then a slow, sideways drift back to earth — but the saying carries a mathematical claim hidden inside it: that steepness on the way up predicts weakness at the top.
You have just been hired as a research assistant at Tangent Point Partners, a quantitative hedge fund that trades a single commodity. Your desk has noticed something the floor already knew: when the most recent rally has been almost vertical, the mean reversion afterward is unusually strong — strong enough to short. Your job is to write the rule down.
The trading-floor archive gives you the five most recent qualifying rallies in the commodity. Each signal records a directional move (how far price travelled, in ticks) and the time the move took (in seconds). Together they describe the slope of the climb — and the slope is where the geometry lives.
Dataset
| Signal | Directional move (ticks) | Time (seconds) |
|---|---|---|
| S1 | 572 | 501 |
| S2 | 286 | 204 |
| S3 | 144 | 164 |
| S4 | 106 | 17 |
| S5 | 91 | 37 |
Each signal can be drawn as a right triangle whose horizontal leg is the elapsed time and whose vertical leg is the directional move. The angle θ between the hypotenuse and the time axis — the launch angle of the rally — is what the floor is really reacting to. A larger θ is a steeper climb.
The challenge
- For each of the five signals, compute the launch angle θi from the dataset.
- The desk's rule of thumb is that a rally only qualifies as rocket-like — and therefore worth shorting — when its launch angle clears θ ≥ 60°. Which signals qualify?
- The fund will short only the single best opportunity each window. Among the qualifying signals, which one offers both the steepest climb (highest θ) and the most remaining time inside the trading window for the feather descent to play out? Give that signal and the exact value of its launch angle θ.
Express each launch angle to two decimal places. State the trigonometric identity you used so the desk can audit your work.
Explore this puzzle visually with an interactive diagram — drag sliders, watch the geometry update in real time, and build intuition before you solve.
Each signal is a right triangle. The directional move is the vertical leg (opposite the angle θ). The time is the horizontal leg (adjacent to θ). Which of the three basic trigonometric ratios connects "opposite over adjacent" to an angle?
The ratio is the tangent: tan θ = opposite / adjacent = move / time. To recover θ from the ratio, take the inverse tangent (sometimes written arctan or tan−1): θ = arctan(move / time).
Compute move / time for each signal first. A ratio above tan 60° ≈ 1.732 means the angle clears 60°. That alone tells you which signals are rockets without having to evaluate the inverse tangent for the ones that obviously don't qualify.
For the final part, remember the desk wants two things at once: the steepest climb and the most time left in the window after the signal fires. Which signal economises on time spent climbing?
Step 1 — Recognise the right triangle
Each signal is described by two numbers, a rise and a run. Drawn on time-versus-price axes, every signal is the hypotenuse of a right triangle whose legs are the directional move (vertical) and the elapsed time (horizontal). The launch angle θ sits at the origin, between the hypotenuse and the time axis.
The relationship is the classical definition of the tangent:
tan θ = opposite adjacent = directional move time
Inverting gives the angle directly:
θ = arctan directional move time
Step 2 — Compute the launch angle for each signal
| Signal | Move | Time | tan θ = move / time | θ = arctan(·) |
|---|---|---|---|---|
| S1 | 572 | 501 | 1.1417 | 48.79° |
| S2 | 286 | 204 | 1.4020 | 54.50° |
| S3 | 144 | 164 | 0.8780 | 41.28° |
| S4 | 106 | 17 | 6.2353 | 80.89° |
| S5 | 91 | 37 | 2.4595 | 67.87° |
Step 3 — Apply the 60° threshold
The desk's rule says a rally qualifies as rocket-like when θ ≥ 60°. Equivalently, since the tangent is monotonically increasing on (0°, 90°), the rule becomes tan θ ≥ tan 60° = √3 ≈ 1.732. Checking the column above:
- S1 — 1.14 < 1.732 no
- S2 — 1.40 < 1.732 no
- S3 — 0.88 < 1.732 no
- S4 — 6.24 ≥ 1.732 yes
- S5 — 2.46 ≥ 1.732 yes
Two signals qualify: S4 and S5.
Step 4 — Pick the single best signal
Between the two qualifying signals, the desk wants the one that is steeper and uses less of the window climbing. Both criteria point the same direction:
- S4 climbs higher per unit time (slope of 6.24 versus 2.46) and so its launch angle is larger (80.89° versus 67.87°).
- S4 finishes climbing in only 17 seconds, leaving far more time inside the window for the feather descent to capture the short profit, compared to S5's 37 seconds.
S4 is the signal to trade. Its launch angle is θ = arctan(106 / 17) = arctan(6.2353) ≈ 80.89°.
Short story
What if you looked at the launch of the rocket as the open or an arbitrary price that was above the mean and the time decay was duration to revert to the mean? The geometry flips but the angles remain the same making the consideration of short strategies dependent on your ability to implement something quickly. Assuming that you needed to max duration to capture the highest amount of a high probability return, the short you want to trade may actually be S3 at 41.28° - while not the longest time, it yields the longest reversion. Reproducible returns may not always follow the shortest path.
The deeper lesson
The trader's saying compresses a real geometric idea: at launch angles approaching 90° the tangent function blows up, meaning the price is moving almost infinitely fast relative to time. No market behaves that way for long. The closer a rally's angle pushes toward the vertical asymptote of the tangent function, the more the rally is borrowing from its own future — and the larger the snap-back the desk can expect when it arrives.
What looks at first like a colourful piece of trading-floor slang is, at heart, a statement about the behaviour of tan θ near θ = 90°. The rocket metaphor is the asymptote.