StackTraceIsCallHistory
DRAFT
Observed

StackTraceIsCallHistory
Incorrect

A stack trace is the sequence of previously called methods

Correct

A stack trace only includes the currently active methods

Correction
Here is what's right.

It is correct that the elements of a stack trace represent methods that have been called in the program execution so far. However, the stack trace does not include all previously called methods. It only includes the methods that are currently still active: this means methods that have been called but that have not yet returned (methods for which there are activation records/frames on the call stack).