HorizonAI
IndicatorPro

Trend Multi-Tool

Your complete trend analysis toolkit. Combines trend direction detection, trend strength measurement, and momentum analysis in one clean indicator. Know exactly where you are in the trend cycle.

Full Source Code
Alert Templates
Build on with HorizonAI

What's Included

Trend direction indicator
Trend strength meter
Momentum oscillator
Trend change alerts
Multi-timeframe trend table
Clean, unified display

How Trend Multi-Tool works

A trend multi-tool folds three separate questions into one read: which way is the trend pointing, how strong is it, and where is momentum right now. Direction tells you the bias, strength tells you whether that bias is worth trusting, and momentum tells you whether the current push is accelerating or fading. Looking at all three together avoids the trap of acting on direction alone.

Many such tools evaluate these across multiple timeframes at once, because a trend that agrees on the higher and lower timeframes is generally more dependable than one that only exists on a single chart. When the timeframes line up you have alignment; when they conflict, that disagreement is itself useful information about where you are in the trend cycle.

The practical benefit is context in a single glance. Instead of loading several separate indicators and reconciling them by hand, you see whether the market is trending strongly, weakening, or ranging, which helps you decide whether to trade with continuation, wait, or step aside.

When to use it

  • Setting directional bias quickly before choosing between trend-following and mean-reversion tactics
  • Confirming that trend direction, strength and momentum all agree before committing to a continuation trade
  • Checking multi-timeframe alignment so lower-timeframe entries match the higher-timeframe trend
  • Recognizing when strength is fading, signalling a trend may be maturing or about to range

When it's not the right tool

  • In choppy, directionless markets where trend readings flip and strength stays persistently low
  • As a precise entry trigger; it defines context and condition, not exact timing
  • Immediately after major news, when a fresh reading may lag a sudden regime change

Source Code Preview

Get the full PineScript v6 source code—use it as a foundation and build on top of it with HorizonAI.

trend-multi-tool.pine
1//@version=6
2indicator("Trend Multi-Tool", overlay=true)
3// ─────────────────────────────────────
4// Trend Multi-Tool - Full Source Code
5// ─────────────────────────────────────
6
7// Input Settings
8pivotLen = input.int(5, "Pivot Length")
9showLabels = input.bool(true, "Show Labels")
10
11// Core Logic
12pivotHigh = ta.pivothigh(high, pivotLen, pivotLen)
13pivotLow = ta.pivotlow(low, pivotLen, pivotLen)
14
15// Structure Detection
16var float lastHigh = na
17var float lastLow = na
18
19if not na(pivotHigh)
20 lastHigh := pivotHigh
21 // ... more logic
22
23// Break of Structure
24bosUp = close > lastHigh

200+ lines of source code

Unlock premium to access the full source code

Unlock Source Code

Frequently asked questions

What does a trend multi-tool actually measure?

It combines three things: trend direction (which way price is biased), trend strength (how convincing that bias is), and momentum (whether the current move is speeding up or slowing down). Reading them together gives a fuller picture than any single one. Often it also checks these across multiple timeframes.

Why combine direction, strength and momentum?

Direction alone can be misleading, because a market can be pointed one way while barely moving or already exhausting. Strength tells you whether the direction is worth trading, and momentum tells you whether the immediate push supports or contradicts it. Together they help you avoid entering a trend that is already running out of steam.

How does multi-timeframe analysis help?

A trend confirmed on several timeframes is generally more reliable than one visible on just one chart. When the higher and lower timeframes agree, entries in that direction have more support. When they disagree, that conflict warns you the trend may be transitioning, so you can trade more cautiously.

Can it replace my other indicators?

It can consolidate several trend-related readings into one view, which reduces clutter, but it is not a complete system on its own. You still need entry logic and risk management, and it pairs well with structure, order blocks or reversion tools. None of it is financial advice, so combine it with your own analysis.

Get access to all 23+ scripts

Full source code, alert templates, and the perfect base to build on with HorizonAI. Join 10,000+ traders.