UT BOT ALERTS Trading Guide
The UT Bot Alerts is designed to automatically detect position reversals by utilizing an ATR-based trailing stop calculation, combined optionally with smoothed Heikin Ashi values. This indicator is built for identifying systematic entry and exit points by tracking persistent trends over market noise.
What does the indicator show?
- Trailing Stop Line: A continuously updating threshold line that follows price momentum, acting as support in bullish movements and resistance in bearish patterns.
- Buy / Sell Signals: Clean graphical markers indicating precisely when the price action has crossed and secured a close over the current trailing stop boundary.
- Position Tracking: The system automatically assigns visual context to help indicate whether the asset is evaluated to be currently in a Long or Short posture.
Key Settings
- Key Value (Sensitivity): Adjusts the multiple factor against ATR, effectively tightening or loosening the stop line distance from the ongoing price.
- ATR Period: Dictates the amount of historical candles mapped to average out true trading range volatility.
- Use Heikin Ashi: Toggles the internal calculation engine to read smoothed averaged prices rather than raw volatile market candlestick data.
How to use Strategy Parameters (Condition Source)
Within the Strategy Tester module, you can leverage the data from this indicator to create powerful logical conditions for trade entries and exits.
1. State Tracking
Signals assessing the overall defined trend position.
position— A numeric indicator determining the current logic state (1 = Long, -1 = Short, 0 = None).inBuyZone— Returns true continuously whilst price travels above the bullish trailing threshold.inSellZone— Returns true continuously whilst price dips below the bearish trailing limit.
2. Entry Signals
Flags identifying immediate moment of a crossover.
buySignal— A Boolean trigger denoting the exact bar where the position flips entirely from short to long.sellSignal— A Boolean trigger denoting the exact bar where the state flips from long into short.
Strategy Example: If you are looking to enter a Short position, you could add a condition: sellSignal == true. This ensures maximum efficiency in capturing the start of downward trailing trends determined by internal volatility logic.