권재용 ai 시그널(단타, 스윙모드 버전)기존 보조지표들에 문제점이 많이 느낌.
한 보조지표에 한가지 밖에 적용못한다는 점과 선물용 시그널이 없다는점.
모든 보조지표를 뒤져봐도, 롱,숏,청산 까지 나오는 보조지표가 없어서, 답답해서 직접 알고리즘 구현함.
아직은 베타버전. 지속적 업데이트 예정(스윙모드 값 최적화 덜됨.)
1. 현재 비트코인과 이더리움 최적화되게 세팅값 자동 조정되게 구현함.
2. 시간봉에 따라 세팅값 자동으로 조정되게 많듦.
3. 여러 신뢰도 높은 보조지표들 알고리즘 통합하여 알고리즘 구현.
간단 알고리즘
1)추세 레짐 감지
ADX(평균 방향성 지수) + 200EMA 기울기(Slope) + ST 안정도(Trend Stability) + HTF 방향 일치 4개 요소 합산 → Trend Score 산출.
점수 기반으로 추세장 / 박스장 / 전이구간 분류, 상태 전환시 히스테리시스(Hysteresis) 적용해 딸깍거리 방지함.
즉, 한번 추세로 들어가면 일정 조건 만족해야만 박스로 전환됨 → Noise Filtering 핵심.
2)다층 청산 로직
Give-back Limit: MFE(최대유리구간) 대비 일정 비율 되돌리면 청산 → 익절 보호.
ADX Weakness Counter: ADX가 약해지는 횟수 카운팅 → 모멘텀 사라질 때 청산.
HTF Flip Exit: 상위TF 추세 뒤집힘 시 강제 청산.
Structure Exit: 스윙 저점/고점 깨지면 구조 붕괴로 판단해 청산.
Time Stop: 스윙에서 일정 시간 진전 없으면 자동 청산.
이 모든 걸 OR 조건으로 묶음 → Multi-factor Exit Engine.
3). Adaptive Parameter Scaling (적응형 파라미터 스케일링)
사용자가 정한 공격성(aggressiveness) 값 + 실시간 레짐 상태 합쳐서
트레일링 폭(k)
되돌림 한계(gb)
ADX 문턱값
타임스톱 시간
다이나믹하게 바뀜.
결과: 시장이 고변동 추세장이면 청산 늦추고, 저변동 박스장이면 빨리 털고 나옴.
이게 Risk-Adjusted Exit Control 핵심.
4) State Machine Position Handling (포지션 상태 머신)
포지션 열림/닫힘/쿨다운 주기 관리.
진입 후 entryPrice, slPrice, mfe, noProgBars 등 상태변수 실시간 업데이트.
일종의 Finite State Machine(FSM) 구조라서 로직 충돌 없이 깔끔하게 동작함.
7. Hysteresis & Persistence Filters
추세/변동성 상태 바뀔 때 Persistence Counter로 연속성 요구함.
예: 한두 봉 노이즈로는 추세 안바뀜 → Signal Debouncing 기법.
간단 사용 루틴(단타)
1~15분봉 추천, 단타 + Auto + Auto + 공격성 50~60.
우상단 시장이 추세장·고변동이면 시그널↑. 박스장·저변동이면 진입 빈도↓.
KJY-L/S 뜨면 진입, 회색선=진입가/빨간선=SL 확인.
KJY-E 뜨면 미련 없이 정리. 알림 연동해두면 실전 편함.
간단 사용 루틴(스윙)
2H~4H, 스윙 + Auto + Auto + 공격성 45~55 + 스윙 최적화 ON.
구조 붕괴/타임스톱/HTF 뒤집힘 오면 자동으로 E 라벨로 정리.
레짐 감지: ADX 스무딩, 200EMA 기울기, ST 안정도, HTF 정합로 점수화 → 추세/박스 자동 분류.
변동성 적응: TR 비율로 고/저변동 인식 → 트레일 폭, 되돌림 한계, 타임스톱 스케일 조정.
스윙 가드: 1D 구조/기울기/정체시간 3중 안전장치.
공격성 슬라이더: 사용자 성향 한 방에 반영(트레일·되돌림·ADX 문턱 동시 스케일링).
I felt a lot of limitations with existing indicators.
Most indicators can only handle one thing at a time, and none of them provide signals specifically for futures trading.
After digging through all indicators, I realized there wasn’t a single one that gave me long, short, and exit signals all in one — so I built my own algorithm out of frustration.
This is still a beta version, with continuous updates planned.
Automatically optimized for Bitcoin and Ethereum.
Parameters auto-adjust based on timeframe.
Combines multiple high-reliability indicators into one unified algorithm.
1) Trend Regime Detection
Uses ADX (Average Directional Index) + 200EMA Slope + ST Stability (Trend Stability) + HTF Direction Alignment.
Combines the four elements into a Trend Score.
Classifies markets into Trending / Ranging / Transitional phases.
Applies Hysteresis during regime switching to prevent rapid signal flipping.
Once in a trend, it only switches to range mode after strict conditions are met → core Noise Filtering logic.
2) Multi-Layer Exit Logic
Give-back Limit: Exits if price retraces beyond a set % of MFE (Maximum Favorable Excursion) → protects profits.
ADX Weakness Counter: Counts consecutive ADX weakening periods → exits when momentum dies.
HTF Flip Exit: Forces exit if higher-timeframe trend reverses.
Structure Exit: Exits when swing high/low breaks = structural failure.
Time Stop: Auto exit if no progress after a set number of bars in swing mode.
All combined via OR conditions → Multi-factor Exit Engine.
3) Adaptive Parameter Scaling
Combines user-defined aggressiveness + real-time regime state to dynamically adjust:
Trailing stop width (k)
Give-back limit (gb)
ADX threshold
Time-stop duration
Result: In high-volatility trending markets, exits trail further; in low-volatility ranging markets, exits tighten quickly → key to Risk-Adjusted Exit Control.
4) State Machine Position Handling
Manages open/close/cooldown cycles for positions.
Updates variables like entryPrice, slPrice, mfe, noProgBars in real-time.
Built as a Finite State Machine (FSM) → avoids logic conflicts, ensures clean execution.
5) Hysteresis & Persistence Filters
Adds Persistence Counters for regime switching.
Prevents a single noisy candle from flipping states → Signal Debouncing technique.
Recommended: 1–15min charts, Settings: Scalp + Auto + Auto + Aggressiveness 50–60.
Top-right panel: Trending + High-Volatility → More Signals, Ranging + Low-Volatility → Fewer Entries.
When KJY-L/S appears → enter trade. Gray line = entry price, red line = SL.
When KJY-E appears → exit with no hesitation. Alerts make it seamless in real trading.
Recommended: 2H–4H charts, Settings: Swing + Auto + Auto + Aggressiveness 45–55 + Swing Optimization ON.
Structural breaks / Time-stop / HTF trend reversals → auto exit with E label.
Regime Detection: ADX smoothing + 200EMA slope + ST stability + HTF alignment → auto classifies Trend vs Range.
Volatility Adaptation: TR ratio detects high/low volatility → adjusts trail, give-back, and time-stop levels.
Swing Guard: 1D structure, slope, and time-stop → triple safety filter.
Aggressiveness Slider: Instantly applies user preference to trail width, give-back, ADX thresholds
Графические паттерны
Radial Basis Kernel RSI [Custom]What is the Radial Basis Kernel RSI?
This indicator is a sophisticated and adaptive version of the classic Relative Strength Index (RSI). Unlike a standard RSI, which uses a simple moving average to calculate momentum, this indicator employs a powerful statistical method called a Radial Basis Function (RBF) kernel.
This kernel makes the indicator's momentum line more dynamic and responsive to changing market conditions. It works by giving more weight to recent price changes that are similar to the current price action, resulting in a more intelligent and adaptive signal. The final line you see is a Double Exponential Moving Average (DEMA) of the RBF Kernel RSI, which provides extra smoothing to filter out noise and reduce false signals.
How to Interpret and Use the Indicator
The core purpose of this indicator is to identify potential shifts in momentum and spot overbought or oversold conditions that could precede a reversal.
Buy Signal: Look for the indicator line to cross above the oversold level (default 20), which may also be marked by a green up-arrow. This suggests that the downward momentum is fading and a potential upward reversal or bounce is about to occur.
Sell Signal: Look for the indicator line to cross below the overbought level (default 80), which may also be marked by a red down-arrow. This indicates that the upward momentum is overextended and a potential reversal or pullback could be coming.
How Adjustments Impact the Indicator's Visual Output
Think of the settings as controls that fine-tune the indicator's behavior. By adjusting them, you can make the indicator more or less sensitive to price changes.
1. RSI Kernel Length
This setting controls the time frame the indicator looks at.
Decrease the length: The line becomes more sensitive and "nervous." It will have more frequent, sharper swings and will enter the Overbought and Oversold zones more often. This provides more signals but can also lead to more false readings.
Increase the length: The line becomes smoother and less reactive. It will take longer to change direction and will enter the extreme zones less frequently. This provides fewer signals, but they are generally considered more reliable and are better suited for identifying longer-term trends.
2. Gamma Adjustment Factor
This is the unique "focus" control of the RBF kernel.
Decrease the gamma factor: The line becomes smoother and more dampened. The kernel's influence is spread out, making it less reactive to sudden but minor price changes.
Increase the gamma factor: The line becomes more focused and "spiky." The kernel gives a lot more weight to the most recent, similar-looking price action, which can make the line react very quickly. This can be useful for spotting quick changes but may also introduce more noise.
3. Overbought/Oversold Levels
These are the trigger lines for your signals.
Increase the Overbought level (e.g., from 80 to 90) or decrease the Oversold level (e.g., from 20 to 10): The indicator line will have to make a more extreme move to trigger a signal. You will get fewer signals, but the ones you do get will represent more significant and powerful moves.
Decrease the Overbought level or increase the Oversold level: The line will trigger signals more easily and frequently. This can be useful in ranging markets but may lead to more false signals in strong, trending markets.
4. Moving Average Period (for DEMA)
This setting controls the final smoothing of the line.
Decrease the period: The final line will be more reactive and look "choppier." It will follow the underlying RBF RSI more closely, providing signals with less lag.
Increase the period: The final line will be significantly smoother. It will be much slower to react to price changes, which reduces noise but can also delay your entry or exit signals.
Hammer Candle Finder [MQSXN]This script automatically scans your chart for hammer candlestick patterns and highlights them with fully customizable labels and markers. Hammers are classic price action signals that can suggest potential reversals or exhaustion in the current trend.
How it works:
- Detects candles with a small body near the top of the range, a long lower wick, and minimal upper wick.
- Separates bullish hammers (green close above open) from bearish hammers (red close below open).
- You can choose to display either type—or both—depending on your trading style.
Customizable options:
- Adjustable detection sensitivity (body % of range, wick-to-body ratio, top wick allowance).
- Toggle to show/hide bullish or bearish signals.
- Custom text, colors, label style, and positioning for the markers.
- Option to anchor labels above bars automatically or offset them by a set number of ticks.
Usage:
This tool is designed for traders who want a clear, visual way to spot hammer candles in real time or during historical chart analysis. Combine it with your own support/resistance zones, volume analysis, or confirmation indicators to build complete strategies.
Note:
This indicator does not provide buy/sell signals on its own—it’s meant to assist with candlestick recognition. Always confirm with your broader trading plan and risk management rules.
Inefficient Candle TrackerThe Inefficient Candle Tracker indicator highlights large, inefficient price moves and plots their midpoints as Squared Up Points.
Detects large candles using Percentile or ATR multiple methods
Draws dynamic dashed lines at candle midpoints until price “squares them up”
Built-in alerts for new SUP creation and when levels are touched
Great for spotting unfinished business in price action, confluence with support/resistance, and potential return levels.
Daily High/Low (15m) + EMA Pre-Market H/L + ORBStraightforward:
I built a swing-trading indicator with ChatGPT that plots 15-minute highs and lows, draws pre-market high/low lines, and adds a 15-minute opening-range breakout feature.
Technical:
Using ChatGPT, I developed a swing-trade indicator that calculates 15-minute highs/lows, overlays pre-market high and low levels, and includes a 15-minute Opening Range Breakout (ORB) module.
Promotional:
I created a ChatGPT-powered swing-trading indicator that maps 15-minute highs/lows, marks pre-market levels, and features a 15-minute Opening Range Breakout for clearer entries.
Guppy EMA Promax V 2.1 [NMTUAN] TradingView Indicator: A Comprehensive Market Analysis Tool
Authored by NMTUAN, this all-in-one indicator is designed to provide traders with a holistic and actionable view of the market. Instead of relying on a dozen different tools, this single indicator consolidates the most crucial aspects of technical analysis to help you make more informed and confident trading decisions.
Key Features:
Smart Money Concepts (SMC) Levels: Our indicator automatically identifies key support and resistance levels based on the principles of Smart Money Concepts. This helps you spot where institutions and large players are likely to enter or exit the market, giving you a strategic edge.
Trend and Trendline Analysis: Gain a clear understanding of the market's direction with integrated trend identification and automated trendlines. This feature helps you quickly visualize the prevailing market momentum and potential areas of interest.
Volatility and Volume Insights: We've included Average True Range (ATR) to measure market volatility and Volume analysis to confirm the strength of price movements. These two metrics are essential for validating potential breakouts and reversals.
Sniper Fade Indicator™️Sniper Fade Indicator™️
The Sniper Fade Indicator™️ is built to help traders spot potential fade opportunities — areas where price may exhaust and reverse during key sessions.
Features:
Fade Zone Mapping → visual zones highlighting likely reversal areas.
Time-Based Filters → optimized for London & New York sessions.
Clean Visual Overlays → boxes & markers for quick recognition.
Customizable Alerts → get notified when fade conditions align.
Works Across Markets → Forex, Futures, and Indices (including NAS100).
How to Use:
Use this indicator to plan trades around potential exhaustion zones. It works best when combined with daily bias context and liquidity levels. Always apply risk management and confirmation from your own strategy.
Notes:
Educational purposes only.
Not financial advice.
For best results, test in multiple markets and sessions.
VWAP Filtered with TrendThis indicator combines the classic **VWAP** with a trend EMA filtered by the TDFI oscillator to confirm market direction.
- VWAP is displayed in white as the fair value reference.
- The trend EMA dynamically changes color according to market condition: green (uptrend), red (downtrend), orange (range).
- Candles highlight in blue when a bullish VWAP crossover is confirmed, and in fuchsia when a bearish crossover is confirmed.
- Includes adjustable thresholds and a cooldown filter to reduce noise and improve reliability.
This approach allows traders to identify not only the relative position to VWAP but also the strength and clarity of the trend, enhancing decision-making across all timeframes.
NQ Liquidity + Inverse FVG Strategy Alertsuses inversion FVG's and targets NQ liquidity
hhsajdhds
d
d
d
d
sa
s
a
s
dgasjjekkje
j
k
MATEOANUBISANTI-BILLIONSQUATDear traders, investors, and market enthusiasts,
We are excited to share our High-Low Indicator Range for on . This report aims to provide a clear and precise overview of the highest and lowest values recorded by during this specific hour, equipping our community with a valuable tool for making informed and strategic market decisions.
MATEOANUBISANTI BILLION SQUATMATEO-ANUBIS-SANTI
Dear traders, investors, and market enthusiasts,
We are excited to share our High-Low Indicator Range for on . This report aims to provide a clear and precise overview of the highest and lowest values recorded by during this specific hour, equipping our community with a valuable tool for making informed and strategic market decisions.
MuLegend's Impulse Radar StarterThis indicator alerts you right before the market is about to make an impulsive move in the market!!! It's pretty FIRE!!!
RS Stock + Chart Pattern Pine ScreenerThis script is a comprehensive stock screener & pattern detector based on Mark Minervini’s Trend Template, enhanced with breakout detection, range tightening indicator (RTI), ATH tracking, and flag pattern recognition. It’s designed to help traders quickly identify high-potential trend setups on any timeframe.
🔑 Features
✅ Minervini Trend Template (8 Core Rules)
Implements the well-known Minervini checklist used by top momentum traders:
Price above the 150 & 200 SMA
150 SMA above 200 SMA
200 SMA trending up for at least 1 month
50 SMA above both 150 & 200 SMA
Price above 50 SMA
Price at least 25% above 52-week low≈
Price within 25% of 52-week high
RS Rating (relative strength) above 70
📉 Range Tightening Indicator (RTI)
Detects volatility contractions that often precede explosive moves.
📈 Breakout & Breakdown Finder
Detects pivot breakouts and breakdowns using highs/lows tests.
🏆 All-Time High Tracker
Find the stock’s all-time high (ATH).
🚩 Bull & Bear Flag Detection
Identifies bullish and bearish flag patterns based on pole strength, pullback depth, and consolidation length.
Automatically find the flags on your screener.
Buy/Sell Indicator with Resistance/Support LevelsThis is a simple Multi-Indicator Analysis
Customizable moving averages (SMA, EMA, WMA)
RSI with overbought/oversold levels
MACD with signal line crossovers
Automatic support and resistance level detection
Smart Signal Generation
Strong signals: Require multiple indicators to align
Weak signals: Single indicator confirmations
Visual markers for different signal strengths
Advanced Features
Real-time info table showing current values
Automatic support/resistance line drawing
Multiple alert conditions
Clean, customizable display options
Bullish 1st Breakaway FVG Stop Loss
This indicator provides a defined 3-tier stop loss placement when you want to trade the 1st Bullish Breakaway FVG strategy. The Bullish Breakaway Dual Session FVG indicator is an independent indicator that track all bullish breakaway candles, however this one only tracks the very 1st breakaway candle with a stop loss visual cue.
Introduction of Bullish Breakaway Consolidated FVG:
Inspired by the FVG Concept:
This indicator is built on the Fair Value Gap (FVG) concept, with a focus on Consolidated FVG. Unlike traditional FVGs, this version only works within a defined session (e.g., ETH 18:00–17:00 or RTH 09:30–16:00).
Bullish consolidated FVG & Bullish breakaway candle
Begins when a new intraday low is printed. After that, the indicator searches for the 1st bullish breakaway candle, which must have its low above the high of the intraday low candle. Any candles in between are part of the consolidated FVG zone. Once the 1st breakaway forms, the indicator will shades the candle’s range (high to low).
Session Reset: Occurs at session close.
Choose your own session: use 930 to 1615 for RTH, 1800 to 1615 for ETH. (New York Time Zone)
Repaint Behavior:
If a new intraday (or intra-session) low forms, earlier breakaway patterns are wiped, and the system restarts from the new low.
Product Optimization:
This indicator is designed for CME future product with New York time zone. If you want to trade other products, please adjust your own time session.
Entry:
Long after the 1st Bullish Breakaway Candle in your active session.
However, best position of long is executed by your own trading skill and edge.
Stop Loss: ξ
ξ: This is the 1st stop loss, it is 1 equal size of the breakaway candle below the low.
ξξ: This is the 2nd stop loss, it is 2 equal sizes of the breakaway candle below the low.
L: This is the 3rd stop loss, it is the intraday session low.
Stop loss calculation:
Assuming you enter at the high of the breakaway candle, the SL number is shown as the high minus the stop loss placement.
Last Mention:
If you don't see anything in the indicator, adjust your session to an active session only, and use Tradingview replay function. This indicator is a live indicator with repainting mechanism.
EMA indicatorEMA indicator showing 4 different moving indicators with VWAP as an extra added layer of confluence
MSMT - VWAP (3x Session Reset)Customizable VWAP Reset Times, reset VWAP up to 3 times per day.
Code based on Trading View VWAP Indicator
Tangent Slope of 20 EMAAre you unsure if your stock is going up steeply enough?
Wait no longer, this script shows you the exact steepness
No more eye-measurements
Use hard numbers !
15-Minute ORB (Opening Range Breakout) —BBC-Ninja15-Minute ORB (Opening Range Breakout) —BBC-Ninja
15 min orb indicator for nasdaq with daylight saving
Simple Liquidity Zones [Supertrade]🔎 What this indicator does
This indicator is designed to highlight liquidity sweep zones on the chart.
• A liquidity sweep occurs when price briefly breaks above a recent swing high or below a recent swing low, but fails to close beyond it.
• Such behavior often indicates that price has taken liquidity (stop orders resting above highs or below lows) and may reverse.
The indicator marks these events as bullish or bearish liquidity zones:
• Bullish Zone (green) → Price swept a swing low and closed back above it (possible bullish reversal area).
• Bearish Zone (red) → Price swept a swing high and closed back below it (possible bearish reversal area).
These zones are drawn as shaded horizontal bands that extend forward in time, providing visual areas where liquidity grabs occurred.
________________________________________
⚙️ How calculations are made
The indicator does not use moving averages or smoothing.
Instead, it works with raw price action:
1. Swing Detection → It checks the highest high and lowest low of the past N bars (swing length).
2. Sweep Logic →
o A bearish sweep happens if the high breaks above the previous swing high, but the close returns below that level.
o A bullish sweep happens if the low breaks below the previous swing low, but the close returns above that level.
3. Zone Creation → When a sweep is detected, a shaded zone is drawn just above/below the swing level.
4. Persistence → Zones extend into the future until replaced by new ones (or optionally until price fully trades through them).
This makes the calculations simple, transparent, and responsive to actual market structure without lag.
________________________________________
📈 How it helps traders
This tool helps traders by:
• Visualizing liquidity areas → Shows where price previously swept liquidity and may act as support/resistance.
• Identifying reversals → Helps spot potential turning points after liquidity grabs.
• Risk management → Zones highlight areas where stops may be targeted, useful for positioning stop-loss orders.
• Confluence tool → Works best when combined with other strategies such as order blocks, trendlines, or volume analysis.
⚠️ Note: Like all indicators, this should not be used in isolation. It provides context, not guaranteed trade signals.
________________________________________
🏦 Markets & Timeframes
• Works across all markets (crypto, forex, stocks, indices, commodities).
• Particularly effective in high-liquidity environments where stop-hunting is common (e.g., forex majors, BTC/ETH, S&P500).
• Timeframes:
o Lower timeframes (1m–15m) → Scalpers can spot intraday liquidity sweeps.
o Higher timeframes (1H–1D) → Swing traders can identify major liquidity pools.
________________________________________
Justin's Bitcoin Power Law Predictor (Santostasi Model)This indicator uses the Powerlaw to predict the BTC price.
Auto Trend Lines v1.0 This advanced Pine Script indicator automatically detects and draws support and resistance trendlines for any instrument based on two independent lookback periods—short-term and long-term—making it suitable for all types of traders. The indicator identifies pivot highs and lows for both user-configurable lookback lengths, draws trendlines from each anchor point to the current bar, and supports a visually intuitive chart by coloring and labeling each line type separately.
Key features:
Dual lookback: Choose separate short-term and long-term sensitivity for pivots and trendlines.
Customizable: Select the number of displayed lines, colors, and line widths to suit your preferences.
Auto-updating: Trendlines update dynamically with new pivots and extend to the latest bar.
This indicator is ideal for those who want to automate trendline analysis, spot key breakout and reversal areas, and streamline technical trading.