ATR STOPLOSS Гайд по трейдингу
Обновлено: July 22, 2026
The ATR StopLoss — это квантитативный инструмент технического анализа. ATR StopLoss Indicator Based on Pine Script "Stoploss area's" by chadmex Shows dynamic stop-loss levels based on ATR and price structure.
Что показывает индикатор?
- Структура рынка и импульс: Визуализирует преобладающие направления тренда и ключевые зоны разворота.
- Сигналы ПОКУПКА / ПРОДАЖА: Отмечает подтвержденные точки входа и выхода на основе алгоритмических правил.
- Динамические границы: Предоставляет адаптивные уровни для управления рисками и целями сделки.
Ключевые настройки
- ATR Длина (
atrДлина): Controls the calculation period and sensitivity for market detection. - Use Structure (
useStructure): Controls the calculation period and sensitivity for market detection. - Lookback for High/Low (
lookback): Controls the calculation period and sensitivity for market detection. - ATR Множитель (
atrМножитель): Controls the calculation period and sensitivity for market detection. - Hide Data (
hideData): Controls the calculation period and sensitivity for market detection. - Long Stop (
longStop): Controls the calculation period and sensitivity for market detection. - Short Stop (
shortStop): Controls the calculation period and sensitivity for market detection. - Long Stop Zone (
longZone): Controls the calculation period and sensitivity for market detection. - Short Stop Zone (
shortZone): Controls the calculation period and sensitivity for market detection. - Long Stop Level (
longStop): Controls the calculation period and sensitivity for market detection. - Short Stop Level (
shortStop): Controls the calculation period and sensitivity for market detection. - Distance to Long Stop % (
distToLongStopPct): Controls the calculation period and sensitivity for market detection. - Distance to Short Stop % (
distToShortStopPct): Controls the calculation period and sensitivity for market detection. - ATR (with multiplier) (
realAtr): Controls the calculation period and sensitivity for market detection.
Как использовать параметры стратегии (Condition Source)
В модуле Strategy Tester этот индикатор можно использовать как прямой источник сигналов, так и в качестве фильтра состояния рынка.
1. События сигналов
buySignal- Срабатывает, когда a bullish market condition is confirmed.sellSignal- Срабатывает, когда a bearish market condition is confirmed.signalDir- Outputs1for bullish,-1for bearish, and0when neutral.
2. Фильтры и торговые уровни
atrДлина- ATR Длина value used for structural qualification or thresholds.useStructure- Use Structure value used for structural qualification or thresholds.lookback- Lookback for High/Low value used for structural qualification or thresholds.atrМножитель- ATR Множитель value used for structural qualification or thresholds.hideData- Hide Data value used for structural qualification or thresholds.longStop- Long Stop value used for structural qualification or thresholds.shortStop- Short Stop value used for structural qualification or thresholds.longZone- Long Stop Zone value used for structural qualification or thresholds.shortZone- Short Stop Zone value used for structural qualification or thresholds.longStop- Long Stop Level value used for structural qualification or thresholds.shortStop- Short Stop Level value used for structural qualification or thresholds.distToLongStopPct- Distance to Long Stop % value used for structural qualification or thresholds.distToShortStopPct- Distance to Short Stop % value used for structural qualification or thresholds.realAtr- ATR (with multiplier) value used for structural qualification or thresholds.
Пример стратегии: Вход в лонг, когда buySignal == true и trendFilter == 1, что гарантирует соответствие сделок основному импульсу рынка.