Introduction

Technical analysis is the study of price movement through charts, volume, and mathematical indicators to forecast future market behavior. Unlike fundamental analysis, which evaluates a project's technology, team, or adoption metrics, technical analysis focuses purely on what the market has already done — because the assumption is that historical price patterns and trading behavior tend to repeat.

In crypto markets, technical analysis is especially relevant. These markets run 24/7, react strongly to news cycles, and are heavily influenced by retail trader sentiment. Price action on a BTC or ETH chart often reflects collective human behavior under uncertainty, making chart patterns a useful lens for spotting potential reversals, breakouts, or trend continuations.

The core philosophy is simple: price discounts everything. Every piece of public and non-public information is already reflected in the current price. So instead of trying to outsmart the news, technical analysts read the chart to see what other participants are actually doing.

Core Assumptions

Three assumptions underpin technical analysis. First, price moves in trends — up, down, or sideways — and once a trend forms, it tends to persist rather than reverse randomly. Second, history repeats itself. Patterns like head-and-shoulders or double bottoms appear across decades and asset classes because human psychology (fear, greed, herd behavior) stays constant. Third, market action discounts everything — all known information is baked into price, so studying price alone is sufficient.

These assumptions are not laws of physics. They are probabilistic tendencies. A trend can fail; a pattern can break down. The value of technical analysis is that it gives traders an edge over time, not a guarantee on any single trade.

flowchart showing the three core assumptions of technical analysis feeding into chart reading decisions

How Charts Work

A chart is simply price plotted over time. The most common chart type in crypto is the candlestick chart, where each candle represents a fixed time interval (1 minute, 1 hour, 1 day, etc.). A single candle contains four data points: open, high, low, and close (OHLC).

When the close is higher than the open, the candle is typically green (bullish). When the close is lower than the open, it is red (bearish). The thin line above and below the candle body is called the wick or shadow, showing the highest and lowest price reached during that interval.

Reading candles correctly is foundational. A long upper wick means buyers pushed price up but sellers rejected it — a potential weakness signal. A long lower wick means sellers pushed down but buyers stepped in — a potential strength signal. A small body with wicks on both sides (called a doji) often signals indecision.

javascript
const candle = {
open: 30000,
high: 31200,
low: 29800,
close: 30800,
time: "2024-01-15T10:00:00Z"
};
const isBullish = candle.close > candle.open;
const bodySize = Math.abs(candle.close - candle.open);
const upperWick = candle.high - Math.max(candle.open, candle.close);
const lowerWick = Math.min(candle.open, candle.close) - candle.low;
console.log(isBullish, bodySize, upperWick, lowerWick);

The example above computes basic candle properties. Tracking these values across many candles lets you spot momentum shifts, exhaustion moves, or consolidation phases.

Why It Matters for Crypto

Crypto markets are uniquely suited to technical analysis because they lack traditional fundamentals like earnings reports. A token's "value" is driven by narrative, liquidity flows, and trader sentiment — all of which show up directly on the chart. Bitcoin's price action, for instance, often leads news events rather than following them, because large players accumulate quietly before announcements.

Additionally, crypto's 24/7 nature means candles form continuously. This produces more data points than traditional markets and allows traders to test patterns across many timeframes. However, it also means gaps rarely appear, so traders rely more on intraday patterns than on gap-fill strategies used in stocks.

Common Mistakes

Beginners often treat technical analysis as a crystal ball. It is not. Indicators lag — moving averages, RSI, and MACD all use past data. By the time a signal fires, part of the move may already be over. Another mistake is using too many indicators at once. Three to five well-understood tools outperform fifteen stacked on one chart.

Finally, ignoring timeframes leads to confusion. A bullish signal on a 5-minute chart means nothing if the daily trend is strongly bearish. Always check the higher timeframe before trusting a lower timeframe signal.

Summary

Technical analysis reads price action through charts and indicators to forecast future movement. Its foundation rests on three assumptions: trends persist, patterns repeat, and price discounts all information. Candlestick charts are the primary tool, with each candle encoding open, high, low, and close. In crypto, this approach works well because markets are sentiment-driven and run continuously. Success requires discipline — using few indicators, respecting timeframes, and accepting that signals are probabilistic, not absolute.

Lesson Checkpoint

1. What is the primary distinction between technical analysis and fundamental analysis?

2. Which of the following is NOT one of the three core assumptions of technical analysis?

3. What does a long upper wick on a candle typically suggest?

4. Why is technical analysis particularly relevant for crypto markets?

5. What does OHLC stand for in candlestick chart terminology?

6. What is a common mistake beginners make with technical analysis?

7. What does a doji candle typically indicate?