Biggest Cryptovizor Update 2025: Key Levels & Smart Webhooks

Biggest Cryptovizor Update 2025: Key Levels & Smart Webhooks

Where did it all begin?

In February of this year, I undertook a complete overhaul of the Daytrading Futures trading algorithm. I was fundamentally dissatisfied with the fact that during a sideways trend, ANY trend-following indicator performs extremely poorly and becomes useless.

I spent several months realizing one simple truth: no existing indicator is capable of working equally well in both a trend and a flat market. Therefore, we must simply FORGET about using trend indicators to limit risks (stops).

Our trading strategy itself has been ready and functioning for a long time: clear conditions for entry, profit-taking, etc., are defined. But how do we solve the problem of the stop-loss, which we manually set at the point where the trend breaks?

And then I realized: no indicators will help me. I must teach the algorithm to DETERMINE support and resistance levels exactly the way I do it manually.

Next came hundreds of attempts to understand: what criteria do we use to define a level in the first place? If we just mark wicks, the entire chart can be drawn with a ruler, but it will be pointless—the levels won't work out. I started analyzing the recordings of our team calls to algorithmize the logic for determining levels on different timeframes. It turned out to be a complex task because everyone has their own view of the market.

I conducted thousands of backtest cycles to find the optimal parameters. And after 6 months of work, I launched the updated algorithm with the Key Levels module.

This became a revolution in my trading. I no longer worried that the algorithm sent an entry signal without a clear stop-loss condition.

Math Triumphs Over Emotion

If I know where the stop-loss will be at the moment the position is opened, I can calmly calculate the Risk:Reward (R:R). By bringing every trade to a minimum R:R, I can calculate the mathematical expectation with high accuracy.

In simple terms: I set the algorithm to adhere to a minimum R:R of 1:2 (for $100 risk - $200 profit). Only one parameter remains - the Winrate. How to influence it, we figured out back in 2020:

  • Trade with the trend (+multiplier for the odds).
  • Use fixed risk per trade (e.g., 1% of the deposit).
  • Follow the rules of the Daytrading Futures strategy.

In summary, the formula for the perfect trade now looks like this:

Where is the ideal entry?
Cryptovizor Signals (Long Correction 1H, Short 1H, RSI Screener, Trends module).
Where to place the stop-loss?
The Key Levels Algorithm finds the nearest level, and we hide the stop behind it.
Where to take profit?
We use a minimum R:R of 1:2 + monitor the RSI in overbought/oversold zones.
How to analyze?
All trades from Binance automatically go into the Trader's Diary and filled with all market data from Cryptovizor (delta, volumes, MA, RSI) at the moment of entry and close position.

Result: I launched this algorithm on 4 bots. This is not a "spherical cow in a vacuum"; this is my real money. Initially, there were errors (opening huge grids against the trend), but after calibrating the grid width and setting limits based on Key Levels, the system worked perfectly.

This very algorithm is now available to you in the form of the Setups Screener @tradiumcrypto_bot and the Key Levels module on the website.

The Main Feature: Key Levels Algorithm

Key Levels are not just lines. The algorithm detects pivot points, filters out noise, and converts them into zones with lower (zone_low) and upper (zone_high) boundaries.

  • Smart Drawing: If a candle's wick is too large, the algorithm narrows the zone to adequate values so the chart doesn't turn into a "fence."
  • Age and Strength: Each level has an age (in days), strength, and the number of touches.
  • Merging: If a new level forms nearby, it merges with the old one, increasing its strength (+1). We eliminate "junk" levels.

The indicator is enabled by default for everyone. You can turn it off with the Key Levels button on the chart panel.

The Brain of the System: Key Levels in the Signals Module

Webhooks, push notifications, Telegram alerts — none of this works without a Signal. The Signal is the trigger. It decides when it's time to act.

We taught the signal engine to understand market structure. You configure the logic once, and it works for everything: sending an alert to your phone for manual trading and simultaneously firing a webhook to your bot for auto-entry.

Here are the superpowers your signals now have:

1. Catching Price on Approach (Distance Metrics)

No more waiting for the price to hit the level. Set up a signal that triggers in advance.

The system measures the distance in % from the current price to the zone boundary (zone_low for support, zone_high for resistance).
Example: "Ping me on Telegram and send a webhook when price gets within 0.5% of support."
Result: You get notified before the real action starts, giving your bot enough time to place a limit order.

2. Trading Level Breaches (Breakout Signals)

The screener detects a real breakout of the zone's protective boundary within the current candle.

Support Breakout: Price went below zone_low.
Resistance Breakout: Price broke zone_high upwards. This is a clear sign that the level failed to hold. Use this for breakout entries or as a trigger for emergency position closing (Stop Loss) via webhooks.

3. Quality Control (Filter by Quality)

You don't need a signal for every weak level. Now you can set strict quality criteria:

Strength: The number of "merges". If a level has absorbed 5 nearby local levels, it's a concrete wall. Set filter Strength > 5.
Touches: How many times the price bounced off this zone without breaking it.
Age: Ignore levels less than a week old. Trade only what the whole market sees.

👉Documentation

A Revolution in Algo-Trading: Smart Webhooks

Until today, webhooks solved the problem of entering a position. Exiting was a pain: either a fixed %, or manual stop placement.

We have solved the main problem of algo-trading - the stop-loss placement location.

Now webhooks support arithmetic operations. You can use level data (zone_low, zone_high, center_price) and mathematics directly in JSON.

Example:

We want to set a stop-loss for a Long at 1% below the 4H support level:

"sl": {"price": "{{4h_support_zone_low * 0.99}}"}

// We take the lower boundary and multiply by 0.99

Complex example for a grid of orders:

Place a grid from the current price to the center of the 4H support, stop at 3% below the zone, and take-profit before the 1H resistance.

{

  "open": {

    "scaled": {

      "price1": { "mode": "value", "value": "{{close}}" },           // Start: current price

      "price2": { "mode": "value", "value": "{{4h_support_center_price}}" }, // End: center of support

      "qty": "5"

    }

  },

  "sl": {

    "orderType": "stop-market",

    "price": "{{4h_support_zone_low * 0.97}}"   // Stop: -3% from the bottom of support

  },

  "tp": {

    "orders": [

      {

        "price": "{{1h_resistance_zone_low * 0.96}}", // Take-profit: slightly below resistance

        "piece": "100"

      }

    ]

  }

}

No more stops in the air. Your bot trades like a pro.

👉Webhook Examples

New Data: Foundation for Analysis

We have added new columns to the screener table so you can see the full market picture:

Funding Rate: The funding rate.
Open Interest (OI): Open interest and its change.
Trades: Number of trades.
Key Levels Support/Resistance: Distance to the nearest levels in %.
Now you can sort the market in one click and find coins that are approaching a strong level, have growing OI, and abnormal trading volume.

Column setup

Quality of Life Improvements

"Forever" Signals: We removed the 60/90 day limit. The "Forever" option ties the signal to the term of your subscription. Renewed your subscription - the signal renewed.
Auto-Watchlists: When a signal triggers, coins are automatically added to a watchlist of the same name. Convenient for analyzing situations without switching between windows.
Spot + Futures Synchronization: If a coin is listed on futures and it trades on spot, it will automatically be pulled into your signal.

Conclusion

The market has changed. The crypto market of 2017–2020 will never be repeated.

Today it is pure PVP (Player vs Player), where the strongest survives.

Didn't adapt in time? You're out of the market.

Sat too long in alts hoping for a bounce? Get -50% in a week.

Connected copy trading to DCA bots without stops? Caught a liquidation on the first major drop.

The Holy Grail does not exist. But there is mathematics, discipline, and risk control tools. We give you the best weapon for this battle. Use it.


P.S. I anticipate the question about Black Friday.

Yes, it will be next week. This update is just the beginning of what we have planned for 2025. The best time to invest in professional tools is now.

Try the new features

Read the full documentation