Pine Script
The repository ships the full combined TradingView indicator as ipda/file.txt
(IPDA + MS + OB + FVG + TrendLines, short title IPDA_Full).
Install on TradingView
- Open TradingView → Pine Editor
- Paste the contents of
file.txt - Add to chart
To make the chart show what the service trades:
- Set the chart timeframe to 5M.
- IPDA Settings → tick Reversal Signal (it ships off, so Buy Chance / Sell Chance labels are hidden by default).
- Reversal Settings → Reversals Sensitivity 14, Reversal Down Level 75, Reversal Up Level 25.
- Alert Settings → Buy Chance (Reversal Up) and Sell Chance (Reversal Down).
TradingView alerts confirm at bar close while the service fires mid-candle, so the chart alert will lag an executed entry by up to one 5M bar.
What the Python service ports
| Pine section | Labels | Role in the service |
|---|---|---|
| Section 11 Reversal | Buy Chance / Sell Chance | Live entry — fires orders |
| Section 5 IPDA Supertrend | ▲ / ▼ | Ported and tested; not the live trigger |
rev_src = rsi(close, 14)
BUY = crossover (rev_src, 25)
SELL = crossunder(rev_src, 75)See Signal Logic.
Visual-only on the chart
These sections remain for discretionary context and are not submitted as orders:
| Section | Content |
|---|---|
| Market Structure | BOS / ChoCH fractals |
| Session FVG | Daily session fair value gaps |
| Order Blocks | Bu-OB / Be-OB / BB / MSB |
| Trend Lines | Pivot-based trend lines |
| IFVG | Inversion fair value gaps |
| Smart Trail, SuperIchi, Range Filter, TBO | Overlay indicators |
| Supertrend ▲/▼ (Section 5) | Ported but unused for execution |
| S&R / Reversal Cloud / MACD candle color | Optional visuals |
LuxAlgo ports Supertrend×SMA plus optional overlay confluence. IPDA’s live path is the RSI reversal labels, then session gates and advisory break-even notifications.
Last updated on