Concept

Logistic Signal Calibration

Logistic Signal Calibration is a Machine Learning concept. The Library holds 3 implementations, each one a working definition you can pull into Quant.

Top Logistic Signal Calibration indicators

3 total

What is Logistic Signal Calibration?

Logistic signal calibration is the use of logistic regression, or the logistic (sigmoid) function more generally, to turn indicator readings into a probability-style score between 0 and 1. Logistic regression models the log-odds of a binary outcome, such as price being higher after some number of bars, as a weighted sum of input features; the sigmoid maps that sum into the 0-to-1 range. Instead of a hard buy or sell flag, the output is graded: values near 1 read as confident bullish, near 0 as confident bearish, and near 0.5 as no edge.

Calibration is the stricter claim behind the score. A model is calibrated when its probabilities match observed frequencies: of all bars scored around 0.7, roughly 70 percent should resolve in the predicted direction. That property is fitted on historical data and decays as conditions drift, so the honest reading of a logistic score is ranked confidence, not a literal win probability. The weights themselves depend on feature engineering choices and on which label definition the model was trained against.

How traders use it

  • As a signal filter: an underlying setup is taken only when the fitted probability clears a threshold above 0.5, so marginal signals are skipped.
  • As a ranking and sizing input: higher scores get priority or larger allocations, while scores hovering near 0.5 are treated as stand-aside conditions.
  • As a way to fuse features: several indicator readings are combined through learned weights into one score, a fitted alternative to hand-built sigmoid transforms or fixed-weight scoring.

Related concepts · Features & pipeline

Concept family

Machine Learning

32 concepts mapped · 21 in the Library

Logistic Signal Calibration FAQ

What does a logistic regression score of 0.8 mean on a chart?

It means the fitted model assigns 80 percent probability to the labeled outcome, for example price closing higher within the prediction horizon, given current feature values. That figure reflects historical relationships in the training window. If conditions have shifted or the features are weak, the realized frequency can be far lower, so treat the score as relative confidence rather than a promised hit rate.

Is a calibrated signal the same as an accurate signal?

No. Calibration means predicted probabilities match observed frequencies; accuracy means predictions are usually right. A model can be well calibrated yet weakly predictive, spending most of its time near 0.5 and honestly reporting that it has little edge. Both properties are measured on past data and neither is guaranteed to persist, which is why out-of-sample checks matter before trading a score.

Build Logistic Signal Calibration your way.

Quant writes, tests, and refines it with you — then it runs on LuxAlgo charting or ports to TradingView.