Skip to main content

Featured

Single Buy vs. Genuine Cluster

Insider buying alerts get treated as a single, uniform signal, but a single purchase and a genuine cluster of independent purchases carry very different informational weight — and the distinction is checkable in public filings well before it becomes a headline. The Surface Issue Stock-screening tools flag "insider buying" whenever any officer or director makes an open-market purchase, with no distinction between a routine, isolated transaction and a genuinely unusual pattern. That flattening is what makes the raw alert an unreliable signal on its own. The Structural Cause Insiders buy shares for reasons that often have nothing to do with a near-term view on the stock — personal financial planning, routine plan participation, diversification timing. A single purchase can't be distinguished from these ordinary reasons. Multiple, independent insiders buying within a short window is much harder to explain away as coincidence or routine planning. 144TICKJOURNAL · TR...

What Is a Tick Chart? Drawing Candles by Trade Count, Not Time

Most traders are introduced to charts through time-based candles — the 1-minute bar, the 5-minute bar, the daily bar. These are intuitive because time is a familiar unit of measurement. But time-based candles have a structural limitation that only becomes apparent when you're trying to build a trading system around fast-moving, momentum-driven stocks. This post covers tick charts — what they are, why they solve a specific problem that time-based charts can't, and why I chose them as the foundation for the signal detection system.



The Problem With Time-Based Candles



A 1-minute candle captures everything that happens in exactly 60 seconds: the opening price, the highest and lowest prices reached, and the closing price. The problem is that 60 seconds in a highly active stock is completely different from 60 seconds in a quiet one.



In a stock with real momentum — the kind this system was built to track — hundreds or even thousands of trades can execute within a single minute during an active period. A 1-minute candle during that window is compressing an enormous amount of price information into a single bar. Meanwhile, the same 1-minute candle for a thinly traded stock might contain two or three transactions. That candle is almost meaningless as a unit of analysis.



When you apply the same analytical framework to both — looking for patterns across candles, measuring swing highs and lows, identifying wave structures — the inconsistency in what each candle actually represents creates noise. The framework assumes each candle is a comparable unit. With time-based candles, that assumption is often false.



What a Tick Chart Does Differently



A tick chart forms a new candle after a fixed number of trades execute — not after a fixed amount of time. A 140-tick chart, for example, completes one candle every time 140 individual trades have occurred, regardless of how long that takes. If a stock is trading furiously, candles form quickly. If trading slows to a trickle, the current candle stays open longer, waiting for the trade count to reach 140.



The result is that each candle represents a consistent unit of market activity rather than a consistent unit of clock time. Every candle on a 140-tick chart reflects exactly 140 trades worth of price action. This makes candles more comparable to each other, because the amount of market participation behind each bar is fixed.



For momentum stocks specifically, tick charts tend to respond more sensitively to genuine surges in activity. When buying pressure accelerates, candles form rapidly, and the chart shows the fast-moving structure in detail. When activity slows, fewer candles form, and the chart naturally filters out low-activity noise.



Why 140 Ticks



The choice of 140 as the tick count wasn't derived from a formula — it came from observing where the tradeoffs balanced out in practice. With too few ticks per candle, individual large orders can distort the candle's shape, and random noise dominates. With too many ticks, candles take too long to form in slower markets, making the system sluggish and unresponsive to developing patterns.



The goal was a tick size where, in the kinds of stocks this system targets, a candle typically forms fast enough to track intraday momentum while still being substantial enough that each candle represents a meaningful slice of market activity rather than random fluctuation. 140 turned out to be a reasonable number for this specific use case. Different markets, different stock characteristics, and different strategies would likely call for different values.



How Tick Charts Are Built in Code



Since the trading system receives data as individual trade ticks from the brokerage API, constructing tick candles requires maintaining a running accumulator in memory. Each incoming tick updates the current candle's high and low, adds to the tick count, and updates the closing price. When the tick count reaches 140, the candle is finalized — its open, high, low, and close values are locked in — and a new candle begins with the next tick.



This is different from how brokerage platforms typically deliver pre-built candles. The system isn't requesting "give me the last N completed candles" — it's building every candle from scratch, tick by tick, in real time. This means the candle data is always fresh, never delayed by a data vendor's aggregation schedule, and exactly as precise as the underlying tick feed allows.



Today's Investing Insight — OHLC: The Four Numbers Behind Every Candle



Every candle on any chart — whether it's a 1-minute bar, a daily bar, or a 140-tick bar — is defined by four values: Open, High, Low, and Close (commonly abbreviated OHLC). Open is the first price at which a trade executed during that period. High is the highest price any trade reached. Low is the lowest. Close is the last price before the period ended. The candle body shows the range between open and close; the wicks extending above and below show how far the high and low reached beyond that range. Everything else in candlestick analysis — patterns, signals, formations — is built on top of these four numbers. Tick charts, time charts, and volume charts all use the same OHLC structure; the only difference is what defines the boundary of each period.



---



This post documents a personal journey of building an algorithmic trading system and is not a recommendation of any specific stock or strategy. All investment decisions and their outcomes are the sole responsibility of the investor.

Comments