About
Every day, this project analyzes as many crypto coins as possible to show potential trend reversals.
Both: against the US Dollar (USD) and the Bitcoin (BTC) price.
A "flip" indicates that a new trend might have started:
🔵 signals that a coin is now in a downtrend.
🟡 signals that a coin is now in an uptrend.
These signals are based on an indicator using crossings of moving averages. It is similar to the "Larsson Line" indicator.

Very Important Disclaimer
Buying and selling based solely on information from this site DOES NOT WORK!
This is not a trading strategy!
This is a hobby project. A one-person thing that is provided for free. There are no guarantees. Not on correctness, nor that this will be available tomorrow.
Do not make decisions based solely on this site!
How to Use
Use the flips to discover potential new coins to analyze further.
Here's what flips are indicating:
A 🟡 USD flip means, that the coin price is increasing when measured in US Dollars.
You might not only be interested if a coins price increases in USD terms, but also if it increases against Bitcoin.
After all, what is the point in speculating with a risky coin, if it doesn't outperform BTC?
That's why this site also tracks flips against BTC.
A 🟡 BTC flip means, that the price is increasing when measured in Bitcoin.
When the BTC price is trending up, this is what you want to focus on.
When the BTC price is trending down, you want to look at the USD price instead.
Why? Because outperforming a falling BTC does not indicate that the coin isn't falling against USD, too. It just might fall a little bit slower than BTC.
(Not Quite) a Copy
This project is heavily inspired by the paid "Larsson Line Pro" service. It's not quite the same though, because I don't have access to the source code of the Larsson Line indicator. But I don't think that matters, because no indicator is (or can be) perfect. It should be good enough.
If you want the "real deal" then please buy Larsson Line Pro from CTO Larsson.
About The Indicator
Both, the original "Larsson Line" indicator and the version used by this site aim to be trend reversal indicators.
When the trend is inconclusive, the color flips to ⚪.
When the trend is down, it flips to 🔵.
When the trend is up, it flips to 🟡.
Here's the Pine Script source code for the indicator used here:
//@version=6
indicator(title='CTM Line', shorttitle='CTM', overlay=true, timeframe='', precision = 2)
smma(src, length) =>
smma = 0.0
sma = ta.sma(src, math.ceil(length))
smma := na(smma[1]) ? sma : (smma[1] * (length - 1) + src) / length
smma
fastAvg = smma(close*1000000, 17)
fastMid = smma(close*1000000, 17.5)
slowMid = smma(close*1000000, 26)
slowAvg = smma(close*1000000, 29)
isSilver = (fastAvg < fastMid != fastAvg < slowAvg) or (slowMid < slowAvg != fastAvg < slowAvg)
isBlue = not isSilver and fastAvg < slowAvg
isGold = not isSilver and not isBlue
c = isGold ? color.new(color.orange, 70) : isSilver ? color.new(color.silver, 80) : color.new(color.navy, 50)
line1 = plot(fastAvg / 1000000, 'Fast Line', color=c, linewidth = 2)
line2 = plot(slowAvg / 1000000, 'Slow Line', color=c, linewidth = 2)
fill(line1, line2, color=c)
You can use this indicator on TradingView by pasting the above script into the Pine Editor.
Contact
I'll never contact you. And I never, ever would help you invest money.
Do not get scammed!
Write to hello@anty.at if you need to contact me.