BTC/ETH RatioThis indicator allows us to calculate altcoin and bitcoin season from the btc divided by eth ratio. The golden ratio is 37!
Bande e canali
Harmonic Pattern Detector [The_lurker]
📊 Harmonic Pattern Detector
An advanced indicator designed to automatically detect and visualize harmonic patterns on price charts with high accuracy. It is based on Fibonacci ratios, ZigZag structures, and pivot points, offering traders precise identification of potential reversal zones.
The indicator supports detection of 13 major harmonic patterns: Gartley, Butterfly, Bat, Crab, Deep Crab, AB=CD, Cypher, Shark, Three Drives, Wolfe Waves, 5-0, Black Swan, and Anti-Gartley.
Each pattern is matched using ideal Fibonacci ratios with a customizable error margin. Patterns are validated only if the similarity score (accuracy) is greater than or equal to 80%, ensuring reliable signals.
🔎 How It Works:
1️⃣ Pivot Point Detection
The indicator uses a function to find major swing highs and lows (`findPivots`), based on a configurable pattern length (default is 18 candles). These pivots are stored in arrays: `pivotPrices`, `pivotBars`, and `pivotDirections`.
2️⃣ ZigZag Construction
With the pivots detected, the indicator constructs a ZigZag structure by connecting the relevant price points using `buildZigZag`. These lines represent the fundamental price movements forming harmonic shapes.
3️⃣ Fibonacci Ratio Calculation
From the ZigZag, the indicator extracts points labeled X, A, B, C, and D, then calculates key Fibonacci ratios:
* XAB = |B-A| / |X-A|
* ABC = |C-B| / |A-B|
* XAD = |D-A| / |X-A|
4️⃣ Pattern Matching Algorithm
Each pattern has its ideal Fibonacci ranges. The ratios are compared with these ranges using adjustable error margins:
ERROR_MARGIN_MIN = (100 - DETECT_ERROR_MARGIN_PERCENT) / 100
ERROR_MARGIN_MAX = (100 + DETECT_ERROR_MARGIN_PERCENT) / 100
If all required ratios for a pattern fall within these bounds, the pattern is considered a potential match.
5️⃣ Similarity Score Calculation
To evaluate accuracy, each pattern gets a similarity score by comparing actual vs. ideal ratios. For example:
simXAB = min(xabRatio / idealXAB, idealXAB / xabRatio)
simABC = min(abcRatio / idealABC, idealABC / abcRatio)
simXAD = min(xadRatio / idealXAD, idealXAD / xadRatio)
similarity = (simXAB + simABC + simXAD) / 3
Only patterns with a similarity ≥ MIN\_RATING\_PERCENT (default 80%) are shown.
6️⃣ Visual Output
When a pattern is detected, it is displayed by connecting the points X→A→B→C→D. A label is drawn at point D showing:
* Pattern Name
* Emoji (e.g., 🦋 for Gartley)
* Similarity percentage (e.g., "92%")
Patterns are color-coded:
🟢 Green for Bullish
🔴 Red for Bearish
⚙️ Configurable Settings:
* ENABLE_PATTERN_DETECTION`: Toggle to enable or disable pattern detection
* PATTERN_LENGTH_INPUT`: Number of candles to consider for structure
* DETECT_ERROR_MARGIN_PERCENT`: Controls allowed deviation from ideal Fibonacci ratios
* MIN_RATING_PERCENT`: Minimum similarity percentage to display a pattern (e.g., 80%)
🎨 Display Customization:
* Customize ZigZag lines (solid, dotted, dashed)
* Control thickness, color, and style of lines
* Adjust label font size, position, and visibility
* Enable or disable specific pattern types
* Modify Fibonacci levels used per pattern
Labels include emojis for easier recognition:
🦋 Gartley | 🐝 Butterfly | 🦈 Shark | 🐺 Wolfe Waves | 🦢 Black Swan | ⚡ Anti-Gartley
📚 Pattern Definitions:
Gartley: XAB ≈ 0.618, ABC ≈ 0.382–0.886, XAD ≈ 0.786
Butterfly: XAB ≈ 0.786, XAD ≈ 1.272
Bat: XAB ≈ 0.382–0.50, XAD ≈ 0.886
Crab / Deep Crab: XAD ≈ 1.618–1.902
AB=CD: AB equals CD (symmetrical moves)
Cypher: ABC ≈ 1.13–1.414, XAD ≈ 0.786
Shark: XAD ≈ 1.0–1.13
Three Drives: Three legs with Fibonacci extensions
Wolfe Waves: Geometrically aligned points, XAD ≈ 1.272–1.618
5-0: CD retraces 50% of previous wave
Black Swan: Rare, sharp pattern, XAD ≈ 3.618–4.236
Anti-Gartley: Reverse Gartley with custom ratios
📈 Target Markets:
This indicator is effective for analyzing:
✔ Forex
✔ Stocks
✔ Crypto
✔ Commodities (Gold, Oil, etc.)
Suitable for multiple trading styles:
* Scalping
* Swing Trading
* Position Trading
✨ Key Features:
✅ 13 harmonic patterns supported
✅ Automatic detection with accuracy scoring
✅ Adjustable error margins
✅ Fully customizable display
✅ Pattern-specific toggles
✅ Bullish/Bearish color-coded output
✅ Informative labels with pattern name, emoji, and similarity
⚠️ Disclaimer:
This indicator is for educational and analytical purposes only. It does not constitute financial, investment, or trading advice. Use it in conjunction with your own strategy and risk management. Neither TradingView nor the developer is liable for any financial decisions or losses.
كاشف الأنماط التوافقية 📊
مؤشر متطور مصمم للكشف التلقائي عن الأنماط التوافقية على مخططات الأسعار وتصورها بدقة عالية. يعتمد على نسب فيبوناتشي، وهياكل الزجزاج، ونقاط الارتكاز، مما يوفر للمتداولين تحديدًا دقيقًا لمناطق الانعكاس المحتملة.
يدعم المؤشر الكشف عن 13 نمطًا توافقيًا رئيسيًا: جارتلي، الفراشة، الخفاش، السلطعون، السلطعون العميق، AB=CD، السايفر، القرش، ثلاثة محركات، موجات وولف، 5-0، البجعة السوداء، ومضاد جارتلي.
يتم مطابقة كل نمط باستخدام نسب فيبوناتشي مثالية مع هامش خطأ قابل للتخصيص. لا يتم التحقق من صحة الأنماط إلا إذا كانت درجة التشابه (الدقة) أكبر من أو تساوي 80%، مما يضمن إشارات موثوقة.
🔎 كيفية العمل:
1️⃣ اكتشاف نقاط الارتكاز
يستخدم المؤشر دالة للعثور على قمم وقيعان التأرجح الرئيسية (`findPivots`)، بناءً على طول نمط قابل للتخصيص (الطول الافتراضي هو 18 شمعة). تُخزّن هذه النقاط المحورية في مصفوفات: `pivotPrices`، `pivotBars`، `pivotDirections`.
2️⃣ بناء ZigZag
بعد اكتشاف النقاط المحورية، يُنشئ المؤشر بنية ZigZag بربط نقاط السعر ذات الصلة باستخدام `buildZigZag`. تُمثل هذه الخطوط تحركات الأسعار الأساسية مُشكّلةً أشكالًا توافقية.
3️⃣ حساب نسبة فيبوناتشي
من ZigZag، يستخرج المؤشر النقاط المُسمّاة X، A، B، C، وD، ثم يحسب نسب فيبوناتشي الرئيسية:
* XAB = |B-A| / |X-A|
* ABC = |C-B| / |A-B|
* XAD = |D-A| / |X-A|
4️⃣ خوارزمية مطابقة الأنماط
لكل نمط نطاقات فيبوناتشي مثالية. تُقارن النسب بهذه النطاقات باستخدام هوامش خطأ قابلة للتعديل:
ERROR_MARGIN_MIN = (100 - DETECT_ERROR_MARGIN_PERCENT) / 100
ERROR_MARGIN_MAX = (100 + DETECT_ERROR_MARGIN_PERCENT) / 100
إذا وقعت جميع النسب المطلوبة للنمط ضمن هذه الحدود، يُعتبر النمط مطابقًا محتملًا.
5️⃣ حساب درجة التشابه
لتقييم الدقة، يحصل كل نمط على درجة تشابه بمقارنة النسب الفعلية بالنسب المثالية. على سبيل المثال:
simXAB = min(xabRatio / idealXAB, idealXAB / xabRatio)
simABC = min(abcRatio / idealABC, idealABC / abcRatio)
simXAD = min(xadRatio / idealXAD, idealXAD / xadRatio)
التشابه = (simXAB + simABC + simXAD) / 3
يتم عرض الأنماط التي يكون تشابهها ≥ MIN\_RATING\_PERCENT (الافتراضي 80%) فقط.
6️⃣ المخرجات المرئية
عند اكتشاف نمط، يتم عرضه بتوصيل النقاط X→A→B→C→D. يتم رسم علامة عند النقطة D تُظهر:
* اسم النمط
* رمز تعبيري (مثل 🦋 لنمط جارتلي)
* نسبة التشابه (مثل "92%))
الأنماط مُرمَّزة بالألوان:
🟢 أخضر للارتفاع
🔴 أحمر للانخفاض
⚙️ إعدادات قابلة للتخصيص:
* تمكين كشف النمط: تفعيل أو تعطيل كشف النمط
* إدخال طول النمط: عدد الشموع المُراد حسابها للهيكل
* كشف الخطأ: نسبة الهامش: يتحكم في الانحراف المسموح به عن نسب فيبوناتشي المثالية
* الحد الأدنى لنسبة التشابه لعرض النمط (مثل 80%)
🎨 تخصيص العرض:
* تخصيص خطوط متعرجة (متصلة، منقطة، متقطعة)
* التحكم في السُمك واللون ونمط الخطوط
* ضبط حجم خط التسمية وموضعه ووضوحه
* تفعيل أو تعطيل أنواع أنماط محددة
* تعديل مستويات فيبوناتشي المستخدمة لكل نمط
تتضمن التسميات رموزًا تعبيرية لتسهيل التعرف عليها:
🦋 جارتلي | 🐝 فراشة | 🦈 سمكة قرش | 🐺 موجات وولف | 🦢 بجعة سوداء | ⚡ نمط مضاد لـ غارتلي
📚 تعريفات الأنماط:
غارتلي: XAB ≈ 0.618، ABC ≈ 0.382–0.886، XAD ≈ 0.786
فراشة: XAB ≈ 0.786، XAD ≈ 1.272
خفاش: XAB ≈ 0.382–0.50، XAD ≈ 0.886
سرطان البحر/سرطان البحر العميق: XAD ≈ 1.618–1.902
AB=CD: AB يساوي CD (حركات متماثلة)
سايفر: ABC ≈ 1.13–1.414، XAD ≈ 0.786
شارك: XAD ≈ 1.0–1.13
ثلاثة أرجل: ثلاثة أرجل مع فيبوناتشي امتدادات
موجات وولف: نقاط متوازية هندسيًا، XAD ≈ 1.272–1.618
5-0: تصحيح CD بنسبة 50% من الموجة السابقة
البجعة السوداء: نمط نادر وحاد، XAD ≈ 3.618–4.236
مضاد جارتلي: جارتلي معكوس بنسب مخصصة
📈 الأسواق المستهدفة:
هذا المؤشر فعال لتحليل:
✔ الفوركس
✔ الأسهم
✔ العملات المشفرة
✔ السلع (الذهب، النفط، إلخ)
مناسب لأنماط تداول متعددة:
* المضاربة السريعة
* تداول التأرجح
* تداول المراكز
✨ الميزات الرئيسية:
✅ دعم 13 نمطًا توافقيًا
✅ كشف تلقائي مع تسجيل الدقة
✅ هوامش خطأ قابلة للتعديل
✅ شاشة قابلة للتخصيص بالكامل
✅ مفاتيح تبديل خاصة بالأنماط
✅ مخرجات مرمزة بالألوان للصعود/الهبوط
✅ تسميات توضيحية مع النمط الاسم، والرموز التعبيرية، والتشابه
⚠️ إخلاء مسؤولية:
هذا المؤشر لأغراض تعليمية وتحليلية فقط. لا يُمثل نصيحة مالية أو استثمارية أو تداولية. استخدمه بالتزامن مع استراتيجيتك الخاصة وإدارة المخاطر. لا يتحمل TradingView ولا المطور مسؤولية أي قرارات مالية أو خسائر.
Smart Range Zones [Dr. Hafiz]Smart Range Zones
Description:
This indicator highlights key market zones — High Range, Mid Range, and Low Range — to help traders visually understand dynamic support and resistance levels.
✅ High Range: Potential supply/resistance area
✅ Mid Range: Fair value or equilibrium zone
✅ Low Range: Potential demand/support area
The zones are calculated based on the highest and lowest price over a user-defined period (default: 130 bars) and dynamically projected forward.
🔸 EMA 15 Line is included as an optional trend filter — helping confirm direction or trend alignment.
🔧 Features:
Auto-calculated High/Mid/Low zones
Real-time dynamic projections
Right-aligned zone labels inside each box
Clean visual structure
Toggle for showing/hiding EMA 15
📌 Best suited for:
Intraday & swing traders
Range breakouts and rejections
Trend confirmation with EMA
Created and published by Dr. Hafiz, modified under the MPL 2.0 license.
Top 10 NASDAQ Resilience + DD BandsTracks the top 10 weighted stocks in NQ and has DD bands from RS included.
Indicador Niñato estafador + Modificado por JoseThis is the same strategy as the “Niñato Estafador” one, except that there are two variables not included and one new component added.
The variables that are not included are:
The 200-period moving average, which no one has been able to explain how it should function within this strategy.
Support and resistance levels, which no one has been able to structure algorithmically in a way that makes logical sense.
To avoid the problems caused by the absence of these two essential conditions, José proposed ignoring them and instead using an oscillator that begins to show an upward trend, to prevent entering trades on a stock—Tesla in this case—while it's still “falling like a knife.”
As a result, this is the strategy we have now.
[VIP] M3 SMC/ICT Scalp BUY,SELL/TP,SL CK2SMC Scalping Strategy - Promotion
Special Price (Until year-end):
Monthly: $10
Yearly: $50
Lifetime: $100 (Includes free future updates & discounts)
Prices will increase after the promotion.
Contact: condark2@gmail.com or Direct Message.
SMC Scalping Strategy - โปรโมชั่น
ราคาพิเศษ (ถึงสิ้นปีนี้):
รายเดือน: $10
รายปี: $50
ตลอดชีพ: $100 (รวมอัปเดตฟรีและส่วนลดในอนาคต)
ราคาจะปรับขึ้นหลังหมดโปรโมชั่น
ติดต่อ: condark2@gmail.com หรือทักข้อความโดยตรง
User Guide & คู่มือการใช้งาน
This document explains the settings and functions of the M3 SMC/ICT Scalp BUY,SELL/TP,SL CK2 indicator, allowing you to fully customize the strategy to fit your trading style.
**USE M3 For Best Profit**
User Guide
1. Timeframe Settings
Higher Timeframe (HTF) - For Main Structure
This sets the larger timeframe used to determine the main market direction (Order Flow). The strategy will look for trading opportunities on your current chart (LTF) that align with the trend on this HTF.
2. Market Structure Settings
Swing Lookback (HTF & LTF)
Defines the number of candles to the left and right of a pivot point to identify a Swing High or Swing Low. A smaller value makes the detection more sensitive and faster.
BOS/CHoCH Line Color
Customizes the colors for the Break of Structure (trend continuation) and Change of Character (potential reversal) lines on the chart.
3. Filter Settings
Allowed Trading Session
A powerful filter that restricts trades to a specific time window (e.g., London or New York session). The indicator will only look for signals within this defined period.
Volatility Filter (ATR)
Avoids trading in choppy, low-volatility markets. When enabled, it only allows trades if the current Average True Range (ATR) is higher than its moving average, indicating sufficient market movement.
ADX Trend Filter
Measures trend strength. When enabled, it only permits trades if the ADX value is above the set threshold (e.g., 20), ensuring you are trading in a trending market.
DI Cross Filter
Confirms the direction of the trend. It allows long trades only when the +DI line is above the -DI line, and short trades only when -DI is above +DI.
4. Trade Entry & Risk Management
Point of Interest (POI) Type
Allows you to choose the type of zone the strategy will use for entries:
Order Block: The last up/down candle before a strong move.
Fair Value Gap (FVG): A price inefficiency or imbalance.
Wick Zone: A zone created from a liquidity-grabbing candle wick.
Entry Type (Main Strategy)
Defines the exact condition for entering a trade within the selected POI zone, from aggressive (e.g., 25% of Zone) to conservative (e.g., Candle Confirmation).
Enable 'Wait Zone' (Entry on Return)
If enabled, the strategy will wait for the price to leave the POI and then return to it before triggering an entry. This is a more patient approach. If disabled, it will enter as soon as the price touches the POI after the setup is confirmed.
Enable Breakeven Stop Loss
A risk management tool. When a trade reaches a specified R-Multiple profit (e.g., 1R), the stop loss is automatically moved to the entry price, preventing a winning trade from turning into a loss.
Enable Counter-Strategy on TP/SL
An advanced feature that automatically opens a reverse position when a main trade hits its Take Profit or Stop Loss. This can be enabled separately for TP and SL events.
5. Visual Settings
Enable Anticipation Alerts
Solves the problem of late signals. When the script identifies a valid POI, it will alert you immediately, giving you time to prepare for the trade before the price returns to the zone.
คู่มือการใช้งาน (ภาษาไทย)
1. การตั้งค่าไทม์เฟรม (Timeframe Settings)
Higher Timeframe (HTF) - For Main Structure
ใช้สำหรับกำหนดไทม์เฟรมใหญ่เพื่อดูทิศทางหลักของตลาด (Order Flow) โดยกลยุทธ์จะมองหาโอกาสเทรดในไทม์เฟรมปัจจุบัน (LTF) ที่สอดคล้องกับแนวโน้มในไทม์เฟรมใหญ่นี้
2. การตั้งค่าโครงสร้างตลาด (Market Structure Settings)
Swing Lookback (HTF & LTF)
กำหนดจำนวนแท่งเทียนด้านซ้ายและขวาเพื่อใช้ในการระบุจุดสวิง (Swing High/Low) ค่ายิ่งน้อยจะยิ่งไวต่อการเปลี่ยนแปลงของราคา
BOS/CHoCH Line Color
ปรับแต่งสีของเส้นที่ใช้แสดงการทำลายโครงสร้าง (BOS - ไปต่อตามเทรนด์) และการเปลี่ยนลักษณะ (CHoCH - สัญญาณอาจกลับตัว)
3. การตั้งค่าตัวกรอง (Filter Settings)
Allowed Trading Session
ตัวกรองที่ทรงพลังที่สุด ใช้สำหรับจำกัดการเทรดให้อยู่ใน "ช่วงเวลา" ที่กำหนดเท่านั้น (เช่น ช่วงตลาดลอนดอนหรือนิวยอร์ก) อินดิเคเตอร์จะมองหาสัญญาณเฉพาะในกรอบเวลานี้
Volatility Filter (ATR)
หลีกเลี่ยงการเทรดในช่วงที่ตลาดผันผวนต่ำ (Sideways) เมื่อเปิดใช้งาน จะอนุญาตให้เทรดก็ต่อเมื่อค่าความผันผวน (ATR) ปัจจุบันสูงกว่าค่าเฉลี่ยของตัวมันเอง
ADX Trend Filter
ใช้วัดความแข็งแกร่งของแนวโน้ม เมื่อเปิดใช้งาน จะอนุญาตให้เทรดก็ต่อเมื่อค่า ADX สูงกว่าเกณฑ์ที่กำหนด ซึ่งหมายถึงตลาดกำลังมีแนวโน้มที่ชัดเจน
DI Cross Filter
ใช้ยืนยันทิศทางของเทรนด์ โดยจะอนุญาตให้เข้า Long เมื่อเส้น +DI อยู่เหนือ -DI และเข้า Short เมื่อเส้น -DI อยู่เหนือ +DI
4. การตั้งค่าการเข้าเทรดและจัดการความเสี่ยง (Trade Entry & Risk Management)
Point of Interest (POI) Type
ให้คุณเลือก "ประเภทของโซน" ที่จะใช้เป็นจุดรอเข้าเทรดได้:
Order Block: แท่งเทียนสุดท้ายก่อนการเคลื่อนที่รุนแรง (ค่าเริ่มต้น)
Fair Value Gap (FVG): ช่องว่างของราคาที่ตลาดมักกลับมาเติมเต็ม
Wick Zone: โซนที่สร้างจากไส้เทียนที่มีการกวาดสภาพคล่อง
Entry Type (Main Strategy)
กำหนดเงื่อนไขการเข้าเทรดที่แน่นอนภายในโซน POI ที่เลือก มีตั้งแต่แบบดุดัน (เช่น เข้าที่ 25% ของโซน) ไปจนถึงแบบปลอดภัยรอการยืนยัน (เช่น ยืนยันด้วยแท่งเทียน)
Enable 'Wait Zone' (Entry on Return)
หากเปิดใช้งาน สคริปต์จะรอให้ราคาวิ่งออกจากโซนไปก่อน แล้วจึงเข้าเทรดเมื่อราคาวิ่ง "กลับมา" ที่โซนอีกครั้ง เป็นสไตล์การเทรดที่อดทนรอมากขึ้น หากปิด จะเข้าเทรดทันทีที่ราคาเข้ามาในโซน
Enable Breakeven Stop Loss
เครื่องมือจัดการความเสี่ยง เมื่อเทรดของคุณทำกำไรไปถึงระดับ R-Multiple ที่กำหนด (เช่น 1R) สคริปต์จะเลื่อน Stop Loss มาที่จุดคุ้มทุน (ราคาเข้า) โดยอัตโนมัติ เพื่อป้องกันไม่ให้เทรดนั้นกลับมาขาดทุน
Enable Counter-Strategy on TP/SL
ฟีเจอร์ขั้นสูงที่จะเปิดออเดอร์ในทิศทางตรงกันข้ามโดยอัตโนมัติ เมื่อเทรดหลักของคุณชน TP หรือ SL สามารถเลือกเปิด/ปิดแยกกันได้
5. การตั้งค่าการแสดงผล (Visual Settings)
Enable Anticipation Alerts
แก้ปัญหาสัญญาณช้า เมื่อสคริปต์สร้างโซน POI ที่น่าสนใจได้สำเร็จ มันจะ แจ้งเตือนคุณทันที เพื่อให้คุณมีเวลาเตรียมตัวก่อนที่ราคาจะวิ่งกลับมาที่โซน
Pricing & Contact Information
Unlock the full potential of your trading with the SMC Scalping Strategy (V11.2) indicator!
Special Launch Promotion (Until the end of this year!)
Monthly Subscription: $10
Yearly Subscription: $50 (Save $70!)
Lifetime Access: $100 (Best Value!)
Prices will increase after the promotional period ends.
What you get:
Full access to the most advanced SMC Scalping indicator.
Free lifetime updates for all future versions.
Exclusive discounts on new indicators released in the future.
Don't miss this opportunity to elevate your trading game!
Contact for purchase or inquiries:
Email: condark2@gmail.com
Or send a direct message.
ราคาและข้อมูลการติดต่อ
ปลดล็อคศักยภาพการเทรดของคุณเต็มรูปแบบด้วยอินดิเคเตอร์ SMC Scalping Strategy (V11.2)!
โปรโมชั่นพิเศษเปิดตัว (วันนี้ - สิ้นปีนี้เท่านั้น!)
รายเดือน: $10
รายปี: $50 (ประหยัดถึง $70!)
ตลอดชีพ: $100 (คุ้มค่าที่สุด!)
ราคาจะมีการปรับขึ้นหลังสิ้นสุดช่วงโปรโมชั่น
สิ่งที่คุณจะได้รับ:
เข้าถึงอินดิเคเตอร์ SMC Scalping ที่ล้ำสมัยที่สุดได้เต็มทุกฟังก์ชัน
อัปเดตเวอร์ชันใหม่ฟรีตลอดชีพ
รับส่วนลดพิเศษสำหรับอินดิเคเตอร์ใหม่ๆ ที่จะเปิดตัวในอนาคต
อย่าพลาดโอกาสในการยกระดับการเทรดของคุณ!
ติดต่อเพื่อสั่งซื้อหรือสอบถามข้อมูลเพิ่มเติมได้ที่:
อีเมล: condark2@gmail.com
หรือทักข้อความโดยตรง
Rango LØNNSOMThis is a TradingView indicator called "LØNNSOM Range" that is designed for analyzing forex trading sessions. I'll explain its main features:
Main Functionality
The indicator identifies and draws price ranges based on the highs and lows of different trading sessions:
Trading Sessions
New York Session: 7:30 - 11:30 (EST)
Asia Session: 7:30 - 11:30 (EST)
London Session: 2:00 - 5:00 (EST)
Visual Features
Background Coloring: Each session colors the chart background with customizable colors:
NY Session: Gray (default)
Asia Session: Blue (default)
London Session: Gray (default)
Range Lines: At the end of each session, the indicator draws three horizontal lines:
PSH (Previous Session High): High line
PSL (Previous Session Low): Low line
MR (Middle Range): Midpoint line
Calculation Logic
The indicator combines data from Sessions to create wider ranges:
At the end of the NY Session: Combines NY and London highs/lows
At the end of the Asian Session: Combines NY and Asian highs/lows
At the end of the London Session: Combines London and Asian highs/lows
Trading Application
This type of indicator is useful for:
Identifying support and resistance levels based on previous sessions
Analyzing market structure during different time periods
Planning entries and exits using PSH, PSL, and MR levels as a reference
Trading breakouts when the price breaks out of the established range
The lines extend forward in time, providing reference levels for subsequent sessions.
BTC/USD Auto S/R LevelsRelease Notes
Take your Bitcoin (BTCUSD) trading to the next level with this smart and accurate Support-Resistance indicator, designed specifically for intraday and swing traders who value clarity, precision, and speed in their decision-making.
🔍 What This Indicator Does:
✅ Automatically detects dynamic Support & Resistance levels using advanced logic tailored for BTCUSD price behavior
✅ Adapts in real time as new highs/lows are formed—no need to redraw or guess key zones
✅ Filters out noise and focuses on true, price-respected zones, improving your trade timing
✅ Works seamlessly on multiple timeframes—whether you trade the 5min for scalps or higher TFs for swing entries
🚀 Why Traders Love It:
No more guesswork—clean, minimal, and to-the-point levels
Great confluence with price action, VWAP, and volume-based strategies
Can be used for breakout trades, rejections, reversals, or even building option strategies
Zero repaint – Levels stay consistent, even after the candle closes
🔧 Built for:
Intraday Traders
BTCUSD Option Buyers & Sellers
Price Action Purists
Smart Money Concept (SMC) Followers
Anyone who wants to trade BTCUSD with clarity
💡 Pro Tip: Combine this with a momentum indicator or VWAP to build high-conviction trades with minimal noise.
WRAMA Channel (Weighted RSI ATR MA)OVERVIEW
The WRAMA Channel (Weighted RSI ATR MA) is an advanced technical analysis tool designed to react more quickly to price movements compared to indicators using conventional moving averages. It combines the Relative Strength Index (RSI), Average True Range (ATR), and a weighted moving average, resulting in the WRAMA. This indicator forms a dynamic price channel based on a weighted average that incorporates both trend strength (via RSI) and market volatility (via ATR). It helps traders identify trends, potential reversals, and breakout signals, while offering broad customization options.
Key Features
WRAMA Price Channel:
Generates a dynamic channel around the weighted moving average (WRAMA), adapting to market volatility and momentum, similar to Bollinger Bands. Users are encouraged to adjust channel width and length according to their strategy.
The upper and lower channel bands are calculated based on a percentage deviation from the baseline line.
The channel fill color changes depending on the price's position relative to the baseline (green above, red below), with an optional gradient for better visualization.
Weighted Moving Average (WRAMA):
WRAMA is a custom weighted moving average (MA1), where closing prices are weighted based on RSI and ATR, allowing it to dynamically adapt to market conditions.
Baseline: The WRAMA line calculated over a user-defined period.
WRAMA Calculation:
RSI Weight: Based on RSI value. When RSI is in extreme zones (below the lower threshold or above the upper threshold), an extreme weight is applied. Otherwise, the weight is based on the squared RSI value divided by 100, raised to a power defined by the rsi_weight_factor.
ATR Weight: Based on the ATR-to-average-ATR ratio. If ATR exceeds a threshold (atr_threshold × avg_atr), an extreme weight is applied. Otherwise, the weight is based on the squared ratio of ATR to average ATR, raised to the power of the atr_weight_factor.
Combined Weight: RSI and ATR weights are combined using a rsi_atr_balance parameter. Final weight = RSI weight × balance + ATR weight × (1 - balance).
WRAMA Calculation: The closing price is multiplied by the combined weight. The result is averaged over the ma_length period and divided by the average of the weights, forming the WRAMA line. For current WRAMA (ma_length = 1), the calculation simplifies to a single weighted price.
Additional Moving Averages:
For additional confirmations, the indicator supports up to five moving averages (MA1–MA5) with various types (SMA, EMA, WMA, HMA, ALMA) and customizable periods.
All additional MAs are calculated based on WRAMA or its baseline, ensuring consistency and enabling deeper analysis within a unified methodology. MA trend directions can be tracked in a built-in signal table.
Trading Signals:
Breakout Signals: Breakouts above/below the channel are optionally marked with triangle shapes (green for bullish, red for bearish).
MA Signals: Price position relative to MAs or their slope generates bullish/bearish signals. These are optionally visualized with default triangles (green up, red down).
A signal table in the top-right corner summarizes the status of each moving average – bullish, bearish, or neutral.
Customization Options
Channel Settings:
MA Period: Length of the WRAMA baseline (default: 100).
Channel Deviation : Percentage offset from the baseline for upper/lower bands (default: 1.5%).
RSI Settings:
RSI Period: Length of the RSI calculation (default: 14).
RSI Upper/Lower Threshold: Overbought/oversold levels (default: 70/30).
RSI Weight Factor: Influence of RSI on weighting (default: 2.0).
ATR Settings:
ATR Period: ATR calculation length (default: 14).
ATR Threshold: Volatility threshold as a multiple of average ATR (default: 1.5).
ATR Weight Factor: Influence of ATR on weighting (default: 2.0).
RSI & ATR Combined:
Extreme Weight: Weight applied in extreme RSI/ATR conditions (default: 3.0).
RSI/ATR Balance: Balance between RSI and ATR influence (default: 0.5).
Signal Settings:
Show Breakout Signals: Enable/disable breakout triangles.
Show MA Signals: Enable/disable MA-based signals.
MA Signal Source: Choose between current WRAMA or baseline.
MA Signal Analysis: Based on price position or slope.
Neutral Threshold : Minimum distance from MA for signal neutrality (default: 0.5%).
Minimum MA Slope : Minimum slope for trend direction signals (default: 0.01%).
Moving Averages (MA1–MA5):
Options to enable/disable, select type (SMA, EMA, WMA, HMA, ALMA), set period length, and choose color.
Style Settings:
Gradient Fill: Enable/disable gradient coloring within the channel.
Show Baseline: Enable/disable WRAMA baseline visibility.
Colors: Customize line, fill, and signal colors.
Use Cases
Trend Identification: The WRAMA channel highlights trend direction and potential reversal zones when price contacts the channel edges.
Breakout Signals: Channel breakouts may indicate trend shifts or momentum surges.
MA Analysis: The signal table provides a clear summary of market direction (bullish, bearish, or neutral) based on selected moving averages.
Trading Strategies: Suitable for trend-following, mean-reversion, and scalping strategies, depending on user preferences and settings.
Notes
The indicator offers a high degree of flexibility, making it adaptable to various trading styles, instruments, and timeframes.
It is recommended to adjust channel length and width to fit your trading strategy.
Backtesting settings on historical data is advised to optimize parameters for a specific strategy and market.
ZY Legend İndikatörü 2ZY Legend Indicator 2 is a signal indicator that allows trend following by showing the profit rate of the last signal. When a signal appears on the indicator, the profit rate shown next to the signal is the highest profit rate reached by the previous signal.
Indicador Niñato estafador"Tesla scalping strategy using multi-timeframe RSI and EMA45 breakout with visual trade tracking, take profit and stop loss."
Combined Trading Indicator - SR + Fibonacci + SupertrendThis script integrates Fibonacci retracement levels with dynamic support and resistance zones to provide a comprehensive technical analysis tool. It automatically identifies key pivot points to draw Fibonacci retracements and highlights significant support and resistance levels based on historical price action. Traders can use this script to anticipate potential reversal zones, entry and exit points, and validate market trends. The combination of Fibonacci and support/resistance enhances decision-making by visually marking critical price areas on the chart.
Finance Nirvana Buy/Sell Signals Generator V1.2Finance Nirvana Buy Sell Indicator combines multiple layers of analysis into a single, streamlined overlay. It plots key trend and volatility structures—EMAs and Bollinger Bands—while computing a fast, zero-lag EMA (ZLEMA20) for more responsive trend detection. Extreme RSI and volume events are flagged directly on the chart, and classic two-bar price-action (Buy / Sell) signals are only triggered when confirmed by ATR-based volatility breakouts, ADX trend strength, dynamic RSI momentum filters, and volume confirmations. A multit imeframe alignment table shows both “bullish vs. bearish” status and live RSI readings across 5m, 15m, 60m, 240m, and daily frames, and intraday pivot, support, and resistance levels are drawn for easy reference.
table added to show live level + Todays n yesterday high n low levels
SPY-ES & QQQ-NQ Live Ratiothis shows the live ratios of SPY and QQQs o you can easily convert them into ES and NQ levels
Vùng đỉnh đáy chính + Bob Volman (Dữ liệu H1)This indicator combines two powerful components into one tool designed for traders who rely on multi-timeframe structure and price action:
🔹 1. H1 Break-Based Swing Zone Detection
Identifies key swing highs and lows based on H1 "break candle" logic — where a candle closes beyond the wick of the previous candle.
When a previous high or low is broken, a new range is drawn and trend context is updated:
🟢 Uptrend = price breaks above key high → green range
🔴 Downtrend = price breaks below key low → red range
⚪ Neutral = no new break → white range
Key swing points are marked with minimal dot labels on the chart for quick structure recognition.
🔹 2. Bob Volman-Style EMAs & Engulfing Signals (from H1)
Applies EMA 15, 21, and 35 from the H1 timeframe to reflect market bias and volatility.
Highlights the area between EMA 15 and EMA 35 with a colored fill to visualize momentum:
Green = bullish bias
Red = bearish bias
Detects classic Bullish and Bearish Engulfing Candles on H1 and marks them with arrows:
🔽 Red arrow = bearish engulfing
🔼 Green arrow = bullish engulfing
High-Low Range % – poslední 2 periodyHere’s a ready-to-use **English description** for publishing your script on TradingView:
---
## 📈 **High-Low Range % – Last 2 Periods**
This indicator calculates and visualizes the **percentage range** between the **High and Low** of the last **two closed periods** (daily, weekly, or monthly – user selectable).
### 🔍 Features:
* Displays the **High–Low range in %** for each of the **two most recent completed candles**.
* **Highlights** the range label if it exceeds a user-defined threshold (e.g., 10%).
* Allows switching between **daily, weekly, or monthly** timeframe bases.
* User controls for:
* Range threshold
* Label color (normal and highlighted)
* Label text size
* Vertical label offset above the High
### ⚙️ Inputs:
* **Timeframe**: Select between `"D"`, `"W"`, or `"M"` to define the range period.
* **Threshold (%)**: If the range exceeds this value, the label changes color.
* **Highlight Color**: Color for ranges above the threshold.
* **Normal Color**: Color for ranges below the threshold.
* **Text Size**: Tiny → Huge label size.
* **Offset**: Distance in ticks to place the label above the period's High.
### 🖼 Visual Output:
* A label placed **just above the High** of the respective candle.
* High and Low levels of the selected period are plotted as horizontal lines.
* Only the **two most recent closed periods** are displayed to keep the chart clean.
---
Let me know if you'd also like a **screenshot description** or **tags** for publication (e.g., `volatility`, `range`, `BTC`, `weekly`, etc.).
Simple ## User Guide for the Simple
I. Indicator Philosophy
This indicator is not a simple system that provides only one type of signal. It is an advanced tool that analyzes the market using three independent "engines," each specializing in detecting a different type of trading opportunity. Its goal is to identify high-probability setups by filtering out market noise.
II. Legend – What You See on the Chart
Before we proceed to the signals, you need to understand what each visual element represents:
Orange Line (200 EMA): This is the main, long-term trend indicator. It acts like a river – if the price flows above it, we look for buying opportunities (LONG). If it's below, we look for selling opportunities (SHORT).
The Ribbon (green/red): Represents short-term momentum and acts as a dynamic support/resistance zone. A green ribbon suggests buying strength, while a red one suggests selling pressure.
Kijun-sen Line (blue/red): This is the medium-term "center of gravity" of the market. It shows the price equilibrium. Its position relative to the price and the ribbon is crucial for many signals.
Gray Background: This is a "NO-TRADE ZONE." It appears when the ADX indicator shows that the market is in consolidation and lacks a clear trend. Most signals are ignored in these areas.
## III. The Three Signal Engines – When to Consider a Position
The indicator generates three different types of signals, each with its own characteristics and risk profile.
1. LONG / SHORT Labels (The Pullback Engine - Conservative)
Character: Safe, conservative, trend-following. Appears the least frequently.
How it works: It looks for ideal, "textbook" conditions. For a LONG signal, all indicators must be in full alignment (price > ribbon > Kijun > orange line), the trend must be strong (high ADX), AND the price must make a pullback to the ribbon and then bounce off it.
When to consider a position: When you see this signal, you are entering a well-developed, healthy trend. It's a high-probability entry, but often not at the very beginning of the move. Ideal for traders who value safety.
2. 🔵 / 🟣 Circles (The Squeeze Engine - Moderate)
Character: Moderately aggressive, looks for the beginning of a new, dynamic move.
How it works: It searches for periods of consolidation and low volatility (when the market is "gathering energy"). The signal (a circle) appears at the moment the price breaks out of this consolidation, and the direction of the breakout is confirmed by the Kijun-sen line.
When to consider a position: When you see the price has been moving sideways for a while, and then a circle appears. This is a sign that the consolidation phase has likely ended and a new impulse is beginning. Ideal for catching "fresh" moves.
3. ⚡ Lightning Bolt (The Reversal Engine - Aggressive)
Character: Aggressive, contrarian, attempts to catch sharp reversals. This is the riskiest signal.
How it works: It ignores most of the trend filters. Its sole purpose is to find a moment where the price, after a sharp and overextended move in one direction, suddenly reverses on a strong candle with high volume.
When to consider a position: When you want to take a risk to catch the very bottom (V-bottom) or top (V-top). This signal requires the most experience. It is recommended to only take it when it appears near a significant, horizontal support or resistance level. Never take it "in a vacuum."
IV. Summary and Practical Strategy
Signal
Signal Type
Character
Ideal Market Conditions
LONG/SHORT
Pullback Entry
Conservative
A strong, developed, and healthy trend.
🔵/🟣
Squeeze Breakout
Moderate
The end of a sideways move, the beginning of a new impulse.
⚡
Sharp Reversal
Aggressive
Market panic, oversold/overbought conditions at a key S/R level.
Eksportuj do Arkuszy
FVG + RSI Sweep M15FVG + RSI Sweep M15 – Smart Liquidity Trading Indicator
This indicator is designed for high-probability intraday trading, optimized for the 15-minute timeframe (M15). It combines:
Fair Value Gap (FVG) detection – reveals price imbalance zones
RSI reversal signals – identifies overbought/oversold exhaustion
Liquidity sweep logic – confirms fakeouts beyond recent highs/lows
Time filter – focuses only on high-volume London & New York sessions
When all conditions align, it generates clean Buy/Sell signals, with automatic TP and SL levels based on risk–reward logic. Ideal for traders seeking 1–2 precise trades per day with minimal noise.
Turtle Trader SystemTurtle Trading script made by ChatGPT.
20 day Donchian Primary entry
55 day Donchian Secondary entry
10 day Donchian Trailing Stops
استراتيجية SPX الديناميكية✅ مميزات المؤشر (باختصار):
🔥 يدعم جميع النماذج الانعكاسية القوية (ابتلاع، المطرقة، النجمة، وغيرها).
✅ فلترة الاتجاه باستخدام متوسطات الفريمات العليا (ساعة و4 ساعات).
⚡ تأكيد RSI بالتباعد (Divergence) لزيادة دقة الدخول.
💥 مراقبة الحجم الذكي (Smart Volume Spike) للتأكد من قوة الحركة.
🎯 تحديد أهداف ثابتة وقابلة للتعديل.
📢 تحديد السترايك المناسب تلقائيًا مع إشارات قوية (كول أو بوت).
🟥 منطقة انعكاس محسوبة بدقة لتحديد نقاط الخروج.
🟢 صندوق معلومات مرن، قابل للتحريك لأي مكان، مع خيارات إظهار وإخفاء.
🚨 تنبيهات تلقائية لإشارات الدخول والخروج والحجم.
✍️ المؤلف:
د. هيوكا
سناب شات: MJUUX
✅ Special Features (in Brief):
🔥 Supports all strong reversal trends (engulfing, hammer, star, etc.).
🔥 Filtering by higher frame rates (1H and 4H).
⚡ RSI with divergence is definitely not a confirmed entry.
💥 Smart Volume Spike monitoring to confirm the strength of the movement.
🎯 Targets are set and adjustable.
📢 Determine the appropriate strike with strong signals (call or put).
🟥 Precisely defined reversal zone and exit points.
🟢 Flexible, movable infobox with hide and hide options.
🚨 Automatic alerts for entry and exit signals.
✍️ Author:
Dr. Hyuka
Snapchat: MJUUX