รูปแบบชาร์ต
Atul 15M ORBThis is a basic script without any fluff that:
Marks the absolute high and absolute low of the candles between 9:30 AM EST and 9:45 AM EST.
The line is marked and labeled '15M ORB HIGH' and '15M ORB LOW', respectively, and extends until 12:30 PM EST then resets.
MirPapa: MA Lists 추세매매# 📈 MirPapa: MA Lists + Trend Strategy (v1.0.0)
This Pine Script indicator combines a set of Moving Averages (MAs) with trend filters, momentum indicators (MACD, RSI, Stochastic), and volatility filter (ATR), to generate visual background color, a real-time signal table, and buy/sell labels based on configurable trend logic.
---
## ✅ Key Features
### 📌 Moving Averages (MA)
- Up to 6 customizable MAs: `Lowest`, `Low`, `Mid`, `High`, `Highest`, `Base`
- MA types supported: `SMA`, `EMA`, `WMA`, `RMA`, `HMA`, `EHMA`, `THMA`
- Display logic dynamically adapts based on `Trend Level (bgTrend)` input.
| bgTrend Level | MA Logic Used (ma1 vs. ma2) |
|---------------|------------------------------|
| 1 | Mid vs. Low |
| 2 | High vs. Mid |
| 3 | Highest vs. High |
| 4 | Base vs. Highest |
---
### 🎨 Background Color Visualization
- Uses 3 dynamically selected MAs to compute background trend state.
- Color logic handled by external library `getBGColor()`
- Can be toggled with `useBG` setting.
---
### 📊 Signal Table Display
Displays real-time trend state in the top-right of chart using Pine Script `table`.
| Column | Description |
|----------|---------------------------------------------------|
| MA High | Price above or below selected MA (`Above/Below`) |
| MA L/M | Short MA above Mid MA (`Golden/Dead`) |
| MACD | MACD line above Signal line (`Golden/Dead`) |
| RSI | Trend-based RSI condition |
| ATR | Current ATR value (string format) |
Color-coded for clarity:
- Green for bullish/golden
- Red for bearish/dead
- Orange background for overbought/oversold RSI
---
### 🔼 HTF MA Support
- `useHTF`: Enables higher timeframe MA visualization (default: D)
- Defines HTF trend:
- Uptrend if `htfFast > htfSlow`
- Downtrend if `htfFast < htfSlow`
---
## 📉 Supporting Indicators
- **MACD**: Custom calculation using selected MA mode
- **RSI**: Smoothed with signal MA, supports overbought/oversold logic
- **Stochastic**: %K and %D crossover and trend check
- **ATR**: Volatility breakout filter
---
### 📍 Buy/Sell Signal Logic
#### 🟢 Long Entry
```pinescript
close > ma1 and ma2 > maLow and rsiVal < 70
```
#### 🔴 Short Entry
```pinescript
close < ma1 and ma2 < maLow and rsiVal > 30
```
If triggered, labels `LONG` or `SHORT` are drawn near candle high/low.
- Once triggered, prevents duplicate signals unless direction reverses.
---
## ⚙️ User Inputs Summary
- `mode`: MA type selector
- `lenLow/Mid/High`: MA length inputs
- `bgTrend`: Level to control which MAs are used
- `useMA`, `useBG`, `useHTF`: Display toggles
- ATR, MACD, RSI, Stochastic have independent length settings
---
## 📦 External Library
- Namespace: `goodia/MirPapaTrend/1`
- Required functions:
- `getMA()`
- `getBGColor()`
- `getStage()`
---
## 🔧 Recommended Settings
- **Trend Trading**: bgTrend = 2 or 3, MA type = `EMA` or `HMA`
- **Swing Setup**: ATR Multiplier ≥ 1.3, RSI < 70 (long), RSI > 30 (short)
- **Direction Filter**: Use `HTF MA` for macro-level trend confirmation
---
## 🔚 End of Documentation
MirPapa: MA Lists RSI MACD# 📘 Indicator Usage Guide: **MirPapa: MA Lists RSI MACD**
This indicator combines MA trend logic, MACD signal alignment, RSI conditions, and ATR filtering into a single visual tool for trend-based decision making.
---
## 🔧 **Input Settings**
### 📌 Moving Averages
- **MA Type (`mode`)**
Selectable MA type: `"SMA"`, `"EMA"`, `"WMA"`, `"RMA"`, `"HMA"`, `"EHMA"`, `"THMA"`
- **Source (`src`)**
Input price source, typically `close`
- **Use Background Color (`useBG`)**
Toggle background coloring based on MA alignment
- **Background Transparency (`bgTransp`)**
0 = solid, 100 = fully transparent
- **MA Periods**
- `lenLow`: Fast MA period (default: 10)
- `lenMid`: Medium MA period (default: 21)
- `lenHigh`: Long-term MA period (default: 200)
---
### 📌 ATR Filter
- `atrLen`: ATR period (default: 10)
- `atrFilterMul`: Entry allowed when current ATR > SMA(20) × multiplier
---
### 📌 MACD Settings
- `lenFast`: MACD fast MA period (default: 12)
- `lenSlow`: MACD slow MA period (default: 26)
- `lenSignal`: MACD signal line period (default: 9)
---
### 📌 RSI Settings
- `lenRSI`: RSI length (default: 14)
- `lenRSISignal`: Signal line for smoothed RSI using selected MA type
---
## 📊 **Table Display (Top-Right)**
| Column | Description | Color Logic |
|----------|--------------------------------------|------------------------------------------------------|
| MA High | Whether current price is above MA High | Green = Above, Red = Below |
| MA L/M | Low MA vs Mid MA crossover status | Green = Golden, Red = Dead |
| MACD | MACD Line vs Signal Line | Green = Golden Cross, Red = Dead |
| RSI | RSI trend state with level filtering | Green/Red if in zone, Orange background if OB/OS |
| ATR | Current ATR numeric value | No color change |
---
## 🎯 **Signal Labels (on Candle)**
### Long Signal (Label: `"LONG"` 🟢)
- `close > MA High`
- `MA Low > MA Mid` (Golden Cross)
- `RSI < 70`
### Short Signal (Label: `"SHORT"` 🔴)
- `close < MA High`
- `MA Low < MA Mid` (Dead Cross)
- `RSI > 30`
Only one signal is displayed at a time. Reversal resets label.
---
## 🧠 **Usage Tips**
- Apply this indicator in **trend-trading setups**.
- Best used on higher timeframes (1H, 4H, Daily).
- Fine-tune the **ATR filter** and **RSI length** based on volatility and strategy context.
ATR Display ShorcutATR Value Display - On-Chart Volatility Monitor
Clean ATR display directly on your price chart - no extra panels needed!
This indicator displays the current Average True Range (ATR) value as a clean table overlay on your price chart, eliminating the need for a separate indicator panel below your main chart.
✨ Key Features:
On-chart display: ATR value shown directly on price chart
Customizable positioning: Choose from 4 corner positions
Clean design: Minimal, non-intrusive table format
Real-time updates: Always shows the latest ATR value
Adjustable period: Default 14-period, fully customizable
🎯 Perfect For:
Position sizing calculations
Stop-loss placement (1x, 1.5x, 2x ATR)
Volatility assessment at a glance
Clean chart setups without extra panels
Quick reference during live trading
📊 How to Use:
Add to chart
Select your preferred table position
Adjust ATR period if needed (default: 14)
The current ATR value displays automatically
💡 Pro Tip:
Use this ATR value to:
Set stop-losses at 1.5x or 2x ATR distance
Determine position size based on account risk
Compare current volatility to historical levels
Clean charts, clear data, better trading decisions.
Compatible with all timeframes and instruments. Pine Script v6.
Feel free to adjust this description to match your style or add any specific features you want to highlight!
Inside Bar All CandleAn Inside Bar occurs when a candlestick (the "inside bar") forms entirely within the high-to-low range of the preceding candlestick (the "mother bar"). This means the inside bar's high is lower than the mother bar's high, and its low is higher than the mother bar's low. This pattern suggests a period of consolidation or indecision in the market, often preceding a breakout in either direction.
Stochastic Swing PointUsing Stochastic to define any swing points.
When Stochastic is OB or OS this indicator will find a high and low to create a label on it.
Default setting is 9 3 3 OB 80 OS 20
for educational purpose only
Bullish Reversal Hedge📋 Indicator Description – Bullish Reversal Hedge (XAUUSD, 15m Chart)
This indicator is specifically designed for XAUUSD (Gold) on the 15-minute timeframe. It uses RSI (Relative Strength Index) and bullish candle confirmation to detect potential reversal points.
When RSI crosses above the oversold level (30) and a bullish candle forms, the system triggers a Buy Entry (1 Lot). If the price drops by a certain number of points and the Buy Target is not hit, a Sell Entry (2 Lots) is placed as a hedge.
🔹 Key Hedging Feature:
The hedging logic is designed in such a way that loss-making trades are often closed at breakeven or in profit. It helps reduce the impact of wrong entries through dynamic reversal-based protection.
🔹 Core Features:
Point-based entry, target, and stop loss customized for XAUUSD volatility.
Smart hedge entry system after initial trade failure.
Visual labels and alert support for entries, targets, and stop loss.
Ideal for intraday strategies on the 15-minute chart.
⚠️ Disclaimer
This indicator is intended for educational and backtesting purposes only. The hedging logic is crafted to maximize the chance of recovering from loss-making positions by closing them at breakeven or in profit most of the time.
However, it does not guarantee any profits.
Trading in financial markets carries inherent risk. Please do your own analysis and consult a certified financial advisor before trading with real capital.
ICT 1:30pm First FVG (First Presentation)ICT 1:30PM First Presented FVG
This is one of icts things that he does
i need to keep adding text to make this long enough
9:15 Range with 0.09% BufferThis strategy is based on the first 9:15 AM candle for Nifty, which is considered a key reference point (also called the "GAN level entry"). It defines a range around the high and low of the 9:15 candle with a 0.09% buffer on both sides.
The upper buffer level acts as a potential resistance.
The lower buffer level acts as a potential support.
When the price crosses above the upper buffer, it signals a possible entry for a Call option (CE) or a long position.
When the price crosses below the lower buffer, it signals a possible entry for a Put option (PE) or a short position.
This approach helps traders identify early breakout opportunities based on the opening candle range, aiming to capture momentum moves in either direction during the trading session.
EMA Color Candle Volume PROEMA Color Candle Volume PRO is an indicator designed to display Buy/Sell signals by combining the trend of EMA and buying and selling pressure from Volume, so that traders can see the market trends and behavior more clearly.
Key Features
Buy/Sell Signal with EMA Crossover
Uses short and long Exponential Moving Averages (EMA) to display Buy/Sell entry points when the short EMA line crosses the long EMA line and the average EMA
Candlestick color bars according to Volume Pressure (Choose to enable/disable)
Buy Volume High = Blue
Buy Volume Normal = Green
Sell Volume Normal = Red
Sell Volume High = Orange
Show BUY/SELL labels according to Volume power per candlestick /When disabled, the candlestick color will return to the normal value color, not the volume value color.
Label size is adjustable (Small / Medium / Large)
No Repaint system (can be selected on/off)
You can choose whether to let the EMA use real-time data (may be Repaint) or previous values for stability
Trend zone highlighting
The background shows the trend in green or light red, following the direction of the EMA to make the trend clear
Automatic alert conditions (Alerts)
Notify when a Buy or Sell signal occurs based on calculations
Additional settings
Turn on/off the candlestick color according to Volume
Adjust the size of the label
Choose whether to let the candlestick display Repaint or not
Suitable for those who...
Need clear trading signals from EMA and Volume
Interested in analyzing the power of buying and selling in each bar
Need a flexible and uncomplicated indicator
Developed using Pine Script v5
Can be used with all timeframes and assets
Essa - Multi-Timeframe LevelsEnhanced Multi‐Timeframe Levels
This indicator plots yearly, quarterly and monthly highs, lows and midpoints on your chart. Each level is drawn as a horizontal line with an optional label showing “ – ” (for example “Apr 2025 High – 1.2345”). If two or more timeframes share the same price (within two ticks), they are merged into a single line and the label lists each timeframe.
A distance table can be shown in any corner of the chart. It lists up to five active levels closest to the current closing price and shows for each level:
level name (e.g. “May 2025 Low”)
exact price
distance in pips or points (calculated according to the instrument’s tick size)
percentage difference relative to the close
Alerts can be enabled so that whenever price comes within a user-specified percentage of any level (for example 0.1 %), an alert fires. Once price decisively crosses a level, that level is marked as “broken” so it does not trigger again. Built-in alertcondition hooks are also provided for definite breaks of the current monthly, quarterly and yearly highs and lows.
Monthly lookback is configurable (default 6 months), and once the number of levels exceeds a cap (calculated as 20 + monthlyLookback × 3), the oldest levels are automatically removed to avoid clutter. Line widths and colours (with adjustable opacity for quarterly and monthly) can be set separately for each timeframe. Touches of each level are counted internally to allow future extension (for example visually emphasising levels with multiple touches).
PMO Crossover Screener Filtertrying to create a screener filter that finds where the POM crosses positively over the 55 DMA
PMO Crossover ScreenerThis script searches for the timeframes where the PMO (Price Momentum Oscillator) makes a positive move over the 55 day moving average.
Smart Trend Zones + EMAs 20/50/200 + Cross SignalsIndicator for trand up and down including Rsi Macd and other indicators
23/35 SR Channels (Hitchhikers Guide To Goldbach)This indicator highlights potential short-term support and resistance zones based on the 23rd and 35th minute of each hour. At each of these time points, it draws a zone from the high to the low of the candle, extending it forward for a fixed number of bars.
Key features:
🔸 Orange zones mark the 23-minute candle
🔹 Blue zones mark the 35-minute candle
📏 Zones extend for a customizable number of bars (channelLength)
🔄 Existing zones are removed if they overlap significantly with a new one
🏷️ Optional labels show when a 23 or 35 zone is created
This tool is ideal for traders looking to identify time-based micro-structures and intraday reaction zones.
JS CandleIt is an excellent indicator for those who wish to earn. It is a strategic tool, but it is recommended to try it after thorough paper testing. Using a 5-minute or 3-minute chart, it provides suggestions for buying and selling. A complete description will be available after seven days.
Swing High Low By RSThis indicator helps you visually identify important support and resistance levels based on recent swing highs and lows in the market — automatically and with clarity.
Many traders struggle with figuring out where to buy or sell, or where price might reverse. This tool solves that by marking those critical turning points for you.
🧠 What It Does:
It looks at recent price action to find swing highs (where price temporarily peaked) and swing lows (where price temporarily bottomed).
When a new swing point is found, the indicator draws a horizontal line on your chart.
These lines act as support (green) or resistance (red) levels — key zones where price has reacted before.
✨ Unique Feature – Limited Line Length:
Unlike other indicators that draw lines all the way to the right edge of the screen, this one keeps things clean and focused by extending lines only for a limited number of candles (default: 50).
This means:
Less clutter on your chart.
You focus only on the most relevant and recent levels.
📊 How to Use It:
Support Levels (Green Lines)
These form after a swing low is detected. They often act as buy zones or bounce areas when price comes down.
Resistance Levels (Red Lines)
These form after a swing high is detected. They often act as sell zones or rejection areas when price goes up.
Trading Strategy
Use the lines as reference to plan entries, exits, and stop-losses.
Combine with price action, candlestick patterns, or other indicators (like RSI, moving averages) for confirmation.
Works great on any timeframe and across all markets — Forex, Crypto, Stocks, Commodities, etc.
📌 Customizable Settings:
Adjust how many candles are checked before identifying a swing.
Control how far each line stretches (how many bars it should stay visible).
👥 Best For:
Beginner to advanced traders
Price action traders
Scalpers, intraday traders, and swing traders
Anyone who wants to trade clean charts without drawing levels manually
This is your go-to tool for identifying powerful support and resistance levels based on actual market structure — not just math or indicators. It saves time, reduces noise, and increases confidence in your trade decisions.
Enjoy...
Cipher 10M Confluence w/ Bias ScoreCipher 10M Confluence is a multi-timeframe dashboard designed to complement Market Cipher. It uses RSI and VWAP proxies on the 1H, 30M, and 10M timeframes to highlight trend alignment and generate a bias score, displayed directly on your chart. The script provides instant visual and alert-based signals for bullish, bearish, or neutral confluence—making it an ideal tool for timing scalp entries on the 10-minute timeframe. For best results, use in conjunction with Market Cipher to strengthen your trading decisions.
IFF Visual FX v2.4IFF Visual FX v2.4 is an advanced visual module for detecting market phase shifts.
This script displays:
✅ Phase change labels (buy/sell).
✅ Reaccumulation and Redistribution zones.
✅ Tolerated pullbacks.
✅ Strong acceleration signals.
✅ Real-time phase transitions.
Based on smoothed acceleration, dynamic slope, and proprietary Phase Strength Index (IFF).
Designed to help traders anticipate market phase transitions and optimize decision-making in indices, commodities, forex, and cryptocurrencies.
Invite-only script.
To get access: contact via DM or through Gumroad.
4 Moving Averages (Custom Colors)
This is a script to display four Moving Averages (5, 20, 60, 100).
To all investors, from beginners to advanced users:
Feel free to use this indicator if you find it helpful.
4本のMA(5,20,60,100)を表示するスクリプトです。
投資初心者の皆様から上級者の方々へ
こちらのインジケーターの使い勝手がよければ、どうぞご自由にお使いください。
Devel Future 2030🚀 Devel Future for Short & Long Signals
📈 Introducing: Devel Future 2030 – Precision Trend Breakout Indicator
🔹 Trend detection powered by custom SuperTrend logic and break of structure
🔹 Volume filter: Signals only when volume spikes 36%–220% above average
🔹 Auto-calculated SL & TP using the wick of the previous candle – not the body
🔹 Visual trade zones with clean entry, stop-loss, and target display
🔹 Built-in alerts for automation or mobile notifications
🔹 High-risk trades automatically filtered out to protect your capital
💼 Suitable for both scalping and swing trading.
🔥 Smart, reliable, and visually intuitive.