PineTraderOT_V6Library "PineTraderOT_V6"
TODO: Simplify the order ticket generation for Pinetrader.io
GenerateOT(license_id, symbol, action, order_type, trade_type, size, price, tp, sl, risk, trailPrice, trailOffset)
CreateOrderTicket: Establishes a order ticket following appropriate guidelines.
Parameters:
license_id (string) : Provide your license index
symbol (string) : Symbol on which to execute the trade
action (string) : Execution method of the trade : "MRKT" or "PENDING"
order_type (string) : Direction type of the order: "BUY" or "SELL"
trade_type (string) : Is it a "SPREAD" trade or a "SINGLE" symbol execution?
size (float) : Size of the trade, in units
price (float) : If the order is pending you must specify the execution price
tp (float) : (Optional) Take profit of the order
sl (float) : (Optional) Stop loss of the order
risk (float) : Percent to risk for the trade, if size not specified
trailPrice (float) : (Optional) Price at which trailing stop is starting
trailOffset (float) : (Optional) Amount to trail by
Returns: Return Order string
Göstergeler ve stratejiler
📊 📊 Support Resistance Channels (15M,D) by.DCX
🔥 The only indicator you’ll ever need for scalping or swing trading. Period.
💡 Tired of messy charts full of meaningless lines?
This script automatically draws only the most meaningful support and resistance levels based on pivots –
optimized for both 15-minute scalping and daily timeframe swing trading.
💥 Why This Indicator Is a Game-Changer:
✅ Automatic Precision Detection – Finds real, battle-tested levels using pivot highs/lows
✅ Smart Noise Reduction – Merges nearby zones to reduce clutter
✅ Timeframe-Aware Logic
🔹 Daily Zones (Blue): Always visible
🔹 15-Minute Zones (Purple): Only shown when viewing timeframes below 4H
✅ Fully Customizable
🔹 Adjust pivot sensitivity, number of lines, merge distance – everything
🧠 Who Should Use This?
Scalpers who want sniper-level entries based on proven intraday zones
Swing traders who need clean, reliable daily levels
Anyone who hates cluttered charts and wants clarity
📈 Pro Tips:
Lower the “Max S/R Levels” to show only the most critical zones
👉 Try setting to 3–5 to highlight institutional-grade levels
Tune “Merge Distance (%)” to filter overlapping zones (recommended: 0.3–0.5%)
💬 TL;DR
🧲 “You’ll never need to draw S/R lines manually again. This script does it smarter.”
Daily trend by TrendsniperAlgoDaily trend by TrendsniperAlgo
Day's trend for better idea of premarket
SUPER-MAGFLXMAGFLX
Made a bunch of these for different sectors, then realized they’re all basically the same—so you really only need one.
Here it is, with a few extra features like customizable display position and metric options.
Track 1 to 20+ tickers, your way, all in one clean, versatile template.
Features & Uses
Custom Ticker List: Enter any tickers you want to track—mix and match sectors or asset classes freely.
Flexible Display: Choose where the table appears on your chart (top-right, top-left, bottom-right, bottom-left).
Metric Options: Toggle on/off daily percentage change, current price, and price difference columns based on what you want to monitor.
Highlight Movers: Automatically spot and highlight the biggest gainer and biggest loser each day for quick insights.
Compact & Efficient: Fits neatly on your chart without clutter, whether tracking 1 ticker or 20+.
Color-Coded Data: Intuitive colors make it easy to spot gains, losses, and key movers at a glance.
User-Friendly: No coding needed—simply input your tickers and preferences to tailor your watchlist instantly.
Use it to:
Monitor your portfolio across multiple sectors in one place.
Quickly spot daily winners and losers.
Keep an eye on price trends and changes without opening multiple charts.
Save chart space while gaining market clarity.
Any comments welcomed there is no way to tell if a public script is being used right ? so if you use and like it give it boost or a comment to let me know
Low Liquidity Marker📘 Indicator Description – Low Liquidity Marker
The Low Liquidity Marker is a simple yet powerful tool designed to highlight candles where Volume × Low Price falls below a customizable threshold — signaling potential low liquidity zones on the chart.
🔍 How it works:
It calculates volume × low for each candle.
When this value drops below your defined threshold, a red triangle is plotted below that bar.
These bars may indicate poor institutional participation or market inefficiency.
⚠️ Why it matters:
Low liquidity makes it difficult to build or exit large positions efficiently.
Stocks or instruments flagged by this tool may be suitable for small capital investments but are generally unsuitable for high-volume or institutional-grade trading.
Use this indicator to filter out illiquid setups when screening for quality trades.
🛠 Customizable Input:
Volume × Low Threshold: Tune this parameter based on your instrument or trading timeframe.
💡 Ideal For:
Retail traders avoiding illiquid zones.
Investors wanting to identify where the market lacks sufficient depth.
Enhancing trade filters in systematic or discretionary setups.
내 스크립트//@version=5
indicator("Support/Resistance Scalping Strategy", overlay=true)
// === 사용자 설정 ===
support_level = input.float(101000, title="지지선", step=10)
resistance_level = input.float(104000, title="저항선", step=10)
rsi = ta.rsi(close, 14)
bb_upper = ta.bb(close, 20, 2).upper
bb_lower = ta.bb(close, 20, 2).lower
// === 조건 ===
// 롱 조건: 지지선 근처 도달 + RSI < 40 + 볼린저 하단 근접
long_condition = (low <= support_level * 1.002) and (rsi < 40) and (close <= bb_lower)
plotshape(long_condition, title="Long Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
// 숏 조건: 저항선 근처 도달 + RSI > 60 + 볼린저 상단 근접
short_condition = (high >= resistance_level * 0.998) and (rsi > 60) and (close >= bb_upper)
plotshape(short_condition, title="Short Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
// 시각적 지지/저항선 표시
hline(support_level, "지지선", color=color.green, linestyle=hline.style_dashed)
hline(resistance_level, "저항선", color=color.red, linestyle=hline.style_dashed)
SupertrendThis script is a technical trading system based on the Supertrend indicator applied to traditional candlestick charts. The Supertrend is a popular trend-following indicator that helps identify the prevailing market direction and provides clear entry and exit signals.
✅ Key Features:
Indicator Used: Supertrend (based on ATR - Average True Range)
Chart Type: Regular candlestick (time-based) chart
Buy Signal: Triggered when the price closes above the Supertrend line (trend flips to bullish)
Sell Signal: Triggered when the price closes below the Supertrend line (trend flips to bearish)
Signal Alerts: Optionally, the script can be set to send alerts for each buy/sell signal
Customisable Inputs:
Supertrend period (length) – controls ATR smoothing
Supertrend multiplier (factor) – affects the sensitivity of the trend change
Entry Type: Signals are based on confirmed candle closes, avoiding false signals
Visuals: Colour-coded Supertrend lines (e.g., green for buy, red for sell) for easy trend identification
내 스크립트//@version=5
indicator("Support/Resistance Scalping Strategy", overlay=true)
// === 사용자 설정 ===
support_level = input.float(101000, title="지지선", step=10)
resistance_level = input.float(104000, title="저항선", step=10)
rsi = ta.rsi(close, 14)
bb_upper = ta.bb(close, 20, 2).upper
bb_lower = ta.bb(close, 20, 2).lower
// === 조건 ===
// 롱 조건: 지지선 근처 도달 + RSI < 40 + 볼린저 하단 근접
long_condition = (low <= support_level * 1.002) and (rsi < 40) and (close <= bb_lower)
plotshape(long_condition, title="Long Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
// 숏 조건: 저항선 근처 도달 + RSI > 60 + 볼린저 상단 근접
short_condition = (high >= resistance_level * 0.998) and (rsi > 60) and (close >= bb_upper)
plotshape(short_condition, title="Short Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
// 시각적 지지/저항선 표시
hline(support_level, "지지선", color=color.green, linestyle=hline.style_dashed)
hline(resistance_level, "저항선", color=color.red, linestyle=hline.style_dashed)
Renko Blocks (Auto Box Size + Advanced Options)
Renko Blocks indicator with auto box sizing and display options:
Box Size Methods:
Traditional (manual)
ATR-based
% of Price
Range-Based
Optional: Adaptive adjustment based on volatility
Display Options:
Chart label
Data window
Enhanced/Simple table with stats (LTP %, trend direction, brick strength, adaptive factor)
Custom table positions
Renko Logic:
Plots real-time Renko blocks on standard price charts
Tracks direction and consecutive bricks
Alerts on trend change
Visual Customization:
Bull/Bear block colors
Wick and border coloring
Multi‑Day Rolling VWAP with Deviation Bands## 📈 **Multi‑Day Rolling VWAP with Deviation Bands**
This script plots **rolling VWAP (Volume Weighted Average Price)** lines over **custom day periods** (e.g. 7, 30, 365 days), helping traders visualize institutional average price zones and potential support/resistance areas.
### 🧠 Key Features:
* **Three configurable VWAP periods** (default: 7, 30, 365 days)
* **Rolling logic**: VWAPs are calculated using the *last N full calendar days*, not from a fixed point in time
* **Optional standard deviation bands** for each VWAP (configurable multiplier)
* **Dynamic right-edge labels** to identify each VWAP visually
* **Accurate intraday tracking**: updates on the first bar of each new day using price × volume and volume sums
### ⚙️ Inputs:
* **VWAP Periods**: Choose how many *daily sessions* to include (e.g., weekly, monthly, yearly)
* **Price Source**: Choose from HLC3, close, etc.
* **Deviation Bands**: Toggle 1–3 standard deviation bands for each VWAP line
* **Label Offset**: Control how far right the labels appear
### 📊 Visual Output:
* Three VWAP lines: Fast (blue), Medium (green), and Slow (red)
* Upper/lower standard deviation bands around each VWAP (shaded areas)
* Labels displayed at the end of chart showing the VWAP period
---
### 🔍 Use Cases:
* Identify dynamic **mean-reversion zones**
* Spot **trend strength or deviation extremes**
* Combine with price action for **high-probability trade setups**
> Ideal for both **intraday** and **multi-day swing trading**. Can be used on any chart timeframe!
RONALD SMA BUY and SELL Indicator//@version=6
indicator('RONALD SMA BUY and SELL Indicator', overlay=true, max_labels_count=500)
// 1. Instellingen met standaardwaarden
fastLength = input.int(3, 'Fast SMA Lengte', minval=1, tooltip='Kortere periode voor snellere SMA')
slowLength = input.int(40, 'Slow SMA Lengte', minval=1, tooltip='Langere periode voor tragere SMA')
signalColor = input.color(color.yellow, 'Signaalkleur', tooltip='Kleur voor alle signalen')
// 2. SMA berekeningen
fastSMA = ta.sma(close, fastLength)
slowSMA = ta.sma(close, slowLength)
// 3. Plot SMA lijnen
plot(fastSMA, 'Fast SMA', color.new(color.blue, 0), 2)
plot(slowSMA, 'Slow SMA', color.new(color.red, 0), 2)
// 4. Signaal detectie
bullish = ta.crossover(fastSMA, slowSMA)
bearish = ta.crossunder(fastSMA, slowSMA)
// 5. Geavanceerde label positioning
yPosBuy = low - (ta.tr(true) * 0.5)
yPosSell = high + (ta.tr(true) * 0.5)
// 6. Dynamische labels met vingers
if bullish
label.new(
bar_index, yPosBuy,
text='BUY', color=signalColor,
style=label.style_label_up, textcolor=color.white,
yloc=yloc.price, size=size.normal)
if bearish
label.new(
bar_index, yPosSell,
text='SELL', color=signalColor,
style=label.style_label_down, textcolor=color.white,
yloc=yloc.price, size=size.normal)
// 7. Alternatieve plotshapes (optioneel)
plotshape(bullish, style=shape.triangleup, location=location.belowbar, color=signalColor, size=size.small)
plotshape(bearish, style=shape.triangledown, location=location.abovebar, color=signalColor, size=size.small)
useTrendFilter = input(true, "Gebruik Trendfilter")
trendLength = input(50, "Trend SMA Lengte")
trendSMA = ta.sma(close, trendLength)
S&D + OB + EMAS&D / OB + EMA 5,13,50,200
The goal is to bring together several indicators in 1 to develop my trading strategy behind
Ichimoku Multi-Timeframe Status[nakano]### Ichimoku Multi-Timeframe Status
---
#### Overview
This indicator is a sophisticated multi-timeframe analysis tool specializing in the "Sanyaku Kouten" (Three Bullish Signals) and "Sanyaku Gyakuten" (Three Bearish Signals) of the Ichimoku Kinko Hyo.
The status panel, displayed in the bottom-right corner of the screen, allows you to simultaneously monitor the Ichimoku conditions across up to eight different timeframes. This enables you to grasp the trend direction from short-term to long-term at a glance and helps you not to miss entry opportunities.
Through extensive trial, error, and debugging, the signal determination logic has been crafted to achieve a high degree of precision.
---
#### Key Features
1. **Multi-Timeframe Status Panel**
* **Monitor Multiple Timeframes at Once**: Displays the status of up to seven different timeframes (defaulting to 1m, 5m, 15m, 1h, 4h, 1D, and 1W) in a single list, in addition to the current chart's timeframe.
* **Detailed Status Display**: For each timeframe, it clearly displays whether the "Tenkan-sen," "Kumo (Cloud)," and "Chikou Span" components are in a "Bullish," "Bearish," or "— (Neutral)" state, color-coded for intuitive understanding.
* **Overall Judgment**: It comprehensively evaluates the state of each component to display a final signal of "Sanyaku Kouten" or "Sanyaku Gyakuten" in the panel.
2. **High-Precision Signal Logic**
* **Cloud Breakout**: Adopts a stricter logic, judging "Bullish" or "Bearish" breakouts only when the **real body** of the candlestick has completely broken out of the Kumo, not just the wicks.
* **Lagging Span (Chikou Span)**: Determines if the Chikou Span has clearly broken above/below the **real body** of the past candlestick. By consistently comparing it to the top/bottom of the real body, regardless of whether the candle is bullish or bearish, it captures more accurate signals.
* **Display Accuracy**: The common one-period display lag seen in many Ichimoku indicators for the Chikou Span and Kumo has been precisely corrected in both calculation and plotting.
3. **Alert Functionality**
* You can create TradingView alerts that trigger the moment a "Sanyaku Kouten" or "Sanyaku Gyakuten" is confirmed on the current timeframe. This allows you to receive notifications of opportunities without being tied to your chart.
4. **High Customizability**
* **Toggle Displays**: The status panel and the "Bullish"/"Bearish" labels on the chart can be easily toggled on or off from the settings menu. (Signal labels are off by default).
* **Complete Color Settings**: You can freely set the colors for all plotted elements, including the Tenkan-sen, Kijun-sen, Chikou Span, Kumo border lines, and Kumo background (for up and down clouds), allowing you to match your personal chart theme.
---
#### How to Use
1. **Add the indicator to your chart.**
2. **Open the settings menu.**
* **Display Settings**: Toggle the visibility of the on-chart signal labels and the status panel.
* **Timeframe Settings**: Freely configure up to seven timeframes you wish to monitor in the status panel.
* **Ichimoku Parameters**: Adjust the periods for the Tenkan-sen, Kijun-sen, etc., to fit your analysis.
* **Line Color Settings**: Customize the colors of the Ichimoku lines and the Kumo to your preference.
3. **Setting Up Alerts**
* Open the TradingView alert creation dialog.
* For "Condition," select this indicator (`Ichimoku Multi-Timeframe Status `).
* Choose either the "Sanyaku Kouten" or "Sanyaku Gyakuten" alert condition and configure your notification settings.
I hope this tool serves as a valuable aid in your market analysis and trading.
---
---
---
### Ichimoku Multi-Timeframe Status
---
#### 概要
このインジケーターは、一目均衡表の「三役好転・三役逆転」に特化した高機能なマルチタイムフレーム分析ツールです。
画面の右下に表示されるステータスパネルにより、最大8つの異なる時間足における一目均衡表の状況を同時に監視できます。これにより、短期から長期までのトレンドの方向性を一目で把握し、エントリーチャンスを逃しません。
多くの試行錯誤とデバッグを経て、シグナル判定のロジックは高い精度を持つように作り込まれています。
---
#### 主な機能
1. **マルチタイムフレーム・ステータスパネル**
* **複数時間足の一括監視**: 現在のチャートの足に加えて、最大7つの異なる時間足(デフォルトでは1分、5分、15分、1時間、4時間、日足、週足)の状況を一覧表示します。
* **詳細な状態表示**: 各時間足について、「転換線」「雲」「遅行スパン」の各要素が「好転」「逆転」「−(どちらでもない)」のいずれの状態にあるかを色付きで分かりやすく表示します。
* **総合判断**: 各要素の状態を総合的に判断し、最終的なシグナルとして「三役好転」または「三役逆転」をパネルに表示します。
2. **精度の高いシグナル判定ロジック**
* **雲抜け**: ローソク足のヒゲではなく、**実体が完全に雲を抜けた**場合のみ「好転」「逆転」と判定する、より厳密なロジックを採用しています。
* **遅行スパン**: 遅行スパンが、過去のローソク足の**実体**を明確に上抜け/下抜けしたかを判定します。陰線・陽線に関わらず、常に実体の上限/下限と比較するため、より正確なシグナルを捉えます。
* **表示の正確性**: 多くのインジケーターで見られる遅行スパンや雲の1期間の表示ズレを、計算と描画の両面で正確に補正しています。
3. **アラート機能**
* 現在のチャートの時間足で「三役好転」または「三役逆転」が成立した瞬間に、TradingViewのアラートを発生させることができます。これにより、チャンスを逃さず通知を受け取ることが可能です。
4. **高いカスタマイズ性**
* **表示の切り替え**: ステータスパネルや、チャート上に表示される「好転」「逆転」のラベルは、設定画面から表示/非表示を簡単に切り替えられます。(シグナルラベルはデフォルトで非表示)
* **完全なカラー設定**: 転換線、基準線、遅行スパン、雲の縁取り線、雲の背景色(上昇/下降)など、描画されるすべての要素の色を自由に設定でき、ご自身のチャートテーマに合わせることが可能です。
---
#### 使い方
1. **インジケーターをチャートに追加します。**
2. **設定画面を開きます。**
* **表示設定**: チャート上のシグナルラベルや、ステータスパネルの表示/非表示を切り替えます。
* **時間足設定**: ステータスパネルで監視したい時間足を最大7つまで自由に設定します。
* **一目均衡表パラメータ**: ご自身の分析に合わせて、転換線や基準線などの期間設定を変更できます。
* **ラインカラー設定**: チャートに表示される一目均衡表の各ラインや雲の色を、お好みの色にカスタマイズします。
3. **アラートの設定**
* TradingViewのアラート作成画面を開きます。
* 「条件」でこのインジケーター(`Ichimoku Multi-Timeframe Status `)を選択します。
* 「三役好転」または「三役逆転」のいずれかのアラート条件を選択し、通知設定を行ってください。
環境認識の補助ツールとして、皆様のトレードの一助となれば幸いです。
CPR + SMA Distance SignalWILL TELL THE CPR STATUS AND SMA STATUS
IT will be useful when you open the script you will come to know the current status wheather it is buy or sell
ATR Based Breakout Strategy [Dr.K.C.Prakash]ATR Based Breakout Strategy
This indicator is a volatility breakout tool that combines ATR bands with a customizable moving average to detect strong, clean breakouts — while filtering out market noise.
⚙️ How It Works
Moving Average (MA):
You can choose SMA, EMA, or WMA as the basis.
This moving average acts as a central reference line.
ATR Bands:
Two bands are plotted above and below the MA, offset by ATR × multiplier.
These bands define the breakout thresholds.
Signal Logic:
A Buy Signal is triggered when entire candle (high & low) is above the upper band.
A Sell Signal is triggered when entire candle is below the lower band.
Signals are not repeated in the same direction until an opposite signal occurs (trend memory).
Trend Tracking:
The indicator maintains the current trend state: bullish, bearish, or neutral.
MA line color changes:
🟢 Green = Uptrend
🔴 Red = Downtrend
⚪ Gray = No active trend
Visual Elements:
Bands turn green/red when a new signal is generated.
Buy/Sell labels are plotted at the respective signal bars.
Bar colors reflect the current trend.
✅ Key Benefits
Filters out weak or sideways movement using ATR-based thresholds.
Avoids repeated signals using a trend lock mechanism.
Clear visual cues through color-coded MA and labels.
Ideal for trend-following traders who want clean breakouts with low noise.
🚀 ATR Based Breakout Strategy
This is a premium invite-only indicator designed for traders who want clean, reliable breakout signals using ATR and dynamic moving averages.
💵 Price: Rs.3000 one-time
📩 Interested? DM me on TradingView (@prakash1126)/Instagram (prakash krishnan chandran)/Gmail(kcp.iipmb@gmail.com) to get access and payment details.
🔒 Access is invite-only — users will be added manually after payment.
✅ Trend-following logic
✅ No-code alerts supported
✅ Clean signals with low false positives
No refunds after activation. For serious traders only.
SimpleBiasSimpleBias - Multi-Timeframe Bias Analysis Indicator
Overview
SimpleBias is a comprehensive multi-timeframe bias analysis indicator designed to help traders make informed trading decisions by displaying market bias across multiple timeframes in a clean, organized table format.
Key Features
Multi-Timeframe Analysis
8 Timeframes Supported : 1M, 1W, 1D, 4H, 1H, 15m, 5m, 1m
Adaptive Display : Shows only relevant timeframes based on current chart timeframe
Real-time Bias Detection : Compares current open price with previous period's open price
Signal Generation
Day Trading Mode : Ideal for 15-minute timeframe analysis
Scalping Mode : Optimized for 5-minute timeframe trading
Signal OFF : Pure bias analysis without trade signals
Customization Options
Theme Support : Light mode and dark mode with automatic color adaptation
Position Control : Table can be positioned at top-right, middle-right, or bottom-right
Size Options : Tiny, small, or normal text size
Color Customization : Full control over bias colors, signal colors, and interface elements
Transparency : Optional transparent background for cleaner chart appearance
How It Works
Bias Calculation
The indicator determines market bias by comparing the current timeframe's open price with the previous period's open price:
BULLISH : Current open > Previous open
BEARISH : Current open < Previous open
NEUTRAL : Current open = Previous open
Adaptive Timeframe Display
The indicator intelligently shows only relevant timeframes based on your current chart:
On 1M chart: Shows 1M bias only
On 1W chart: Shows 1M, 1W bias
On 1D chart: Shows 1M, 1W, 1D bias
And so on...
Signal Logic
Day Trading : Compares current price with 4H open price
Scalping : Compares current price with 1H open price
Usage Instructions
Add to Chart : Apply the indicator to any timeframe chart
Configure Settings :
- Choose table position and text size
- Select signal mode (OFF/Day Trade/Scalping)
- Customize colors and theme
Interpret Results :
- Green/Blue text = Bullish bias
- Red text = Bearish bias
- Gray text = Neutral bias
Customization Guide
Theme Settings
Light Mode : Traditional white background with dark text
Dark Mode : Dark background with light text, optimized for dark charts
Transparent Background : Clean overlay without background color
Color Schemes
Bias Colors : Separate customization for bullish, bearish, and neutral bias
Signal Colors : Distinct colors for buy, sell, and neutral signals
Interface : Control table background and border colors
Best Practices
For Day Trading
Use 15-minute or 1-hour charts
Enable "Day Trade" signal mode
Focus on 4H and higher timeframe bias alignment
For Scalping
Use 5-minute charts
Enable "Scalping" signal mode
Watch for 1H and 4H bias alignment
For Swing Trading
Use 4H or daily charts
Keep signal mode OFF
Focus on weekly and monthly bias alignment
Important Notes
This indicator is for educational and analysis purposes only
Not financial advice - always do your own research
Past performance does not guarantee future results
Risk management is essential in all trading activities
Technical Specifications
Pine Script Version : v6
Overlay : True (displays on price chart)
Performance : Optimized with cached security requests
Compatibility : Works on all TradingView timeframes and instruments
---
SimpleBias - Indikator Analisis Bias Multi-Timeframe
Gambaran Umum
SimpleBias adalah indikator analisis bias multi-timeframe yang komprehensif, dirancang untuk membantu trader membuat keputusan trading yang tepat dengan menampilkan bias pasar di berbagai timeframe dalam format tabel yang bersih dan terorganisir.
Fitur Utama
Analisis Multi-Timeframe
8 Timeframe Didukung : 1M, 1W, 1D, 4H, 1H, 15m, 5m, 1m
Tampilan Adaptif : Hanya menampilkan timeframe yang relevan berdasarkan timeframe chart saat ini
Deteksi Bias Real-time : Membandingkan harga open saat ini dengan harga open periode sebelumnya
Mode Sinyal Trading
Mode Day Trading : Ideal untuk analisis timeframe 15 menit
Mode Scalping : Dioptimalkan untuk trading timeframe 5 menit
Mode OFF : Analisis bias murni tanpa sinyal trading
Opsi Kustomisasi
Dukungan Theme : Mode terang dan gelap dengan adaptasi warna otomatis
Kontrol Posisi : Tabel dapat diposisikan di kanan-atas, kanan-tengah, atau kanan-bawah
Opsi Ukuran : Ukuran teks kecil, sedang, atau normal
Kustomisasi Warna : Kontrol penuh atas warna bias, warna sinyal, dan elemen interface
Transparansi : Background transparan opsional untuk chart yang lebih bersih
Cara Kerja
Perhitungan Bias
Indikator menentukan bias pasar dengan membandingkan harga open timeframe saat ini dengan harga open periode sebelumnya:
BULLISH : Open saat ini > Open sebelumnya
BEARISH : Open saat ini < Open sebelumnya
NEUTRAL : Open saat ini = Open sebelumnya
Petunjuk Penggunaan
Tambahkan ke Chart : Terapkan indikator ke chart timeframe apapun
Konfigurasi Settings :
- Pilih posisi tabel dan ukuran teks
- Pilih mode sinyal (OFF/Day Trade/Scalping)
- Sesuaikan warna dan theme
Interpretasi Hasil :
- Teks hijau/biru = Bias bullish
- Teks merah = Bias bearish
- Teks abu-abu = Bias neutral
Best Practices
Untuk Day Trading
Gunakan chart 15 menit atau 1 jam
Aktifkan mode sinyal "Day Trade"
Fokus pada alignment bias timeframe 4H ke atas
Untuk Scalping
Gunakan chart 5 menit
Aktifkan mode sinyal "Scalping"
Perhatikan alignment bias 1H dan 4H
Catatan Penting
Indikator ini hanya untuk tujuan edukasi dan analisis
Bukan nasihat keuangan - selalu lakukan riset sendiri
Performa masa lalu tidak menjamin hasil masa depan
Manajemen risiko sangat penting dalam semua aktivitas trading
SimpleBias membantu trader mempertahankan kesadaran terhadap bias pasar di berbagai timeframe, mendukung timing dan pengambilan keputusan yang lebih baik dalam strategi trading mereka.
TOLOMEO_EAthe strategy is based on intercepting a trend reversal first on RSI, then on EMA and then opening the position
Candle Range Theory Hawkeye CapitalCandle Range Theory (CRT) – Hawkeye Capital
OVERVIEW
CRT looks for “liquidity sweep and rejection” candles. A bullish CRT forms when price dips below the previous candle’s low and closes back inside the range; a bearish CRT forms when price spikes above the previous high and closes back inside. The script draws the Candle-Range-High (CRH), Candle-Range-Low (CRL) and an optional shaded box between them. Only one active CRT is kept on-screen; when price reaches CRH or CRL the pattern is closed and a new one is awaited.
KEY FEATURES
Bullish and bearish CRT detection with arrow signals (▲ / ▼).
Optional range box, CRH line (resistance) and CRL line (support).
ATR multiplier to ignore small candles.
Higher-Time-Frame (HTF) mode: analyse D1, H4, etc., while trading on a lower chart.
Colour controls for bullish, bearish and box fill.
Six optional filters to improve quality: body-position, reference-candle size, wick-to-ATR, volume confirmation, recent-test lockout, session filter.
Non-repainting: signals confirm on bar close.
USER INPUTS
Display – toggle box, CRH, CRL; set ATR filter.
Colours – pick bullish, bearish and box colours.
Higher Timeframe – enable HTF model and choose the higher period.
Advanced Filters – thresholds for body position, reference candle size, volume, recent tests, time window.
TRADING LOGIC
Bullish entry: arrow ▲ appears. Target = CRH, stop = close below CRL.
Bearish entry: arrow ▼ appears. Target = CRL, stop = close above CRH.
Script auto-extends lines and box until either target or stop is hit.
ALERTS
“Bullish CRT Pattern Detected – Target: CRH, Stop: CRL”
“Bearish CRT Pattern Detected – Target: CRL, Stop: CRH”
Set them to “Once Per Bar Close” for clean notifications.
BEST PRACTICES
Use an ATR filter of 1.0–1.5 to cut noise.
Pair a lower chart with an HTF one or two steps higher (e.g., 5 m chart with 1 h CRT).
Risk 1-2 % per trade; always place stops at the invalidation level.
DISCLAIMER
This script is a technical-analysis aid, not financial advice. Test it thoroughly and manage risk before trading live.
Forex Session Levels + Dashboard (AEST)This is a script showing all the key levels you will ever need for the breakout and retest strategy.
Follow my IG:
@liviupircalabu10
Forex Session Levels + Dashboard (AEST)Forex Session Indicators for Breakout and Retest Strategy (AEST)
BskLAB® - Money Flow 🌀 BskLAB® - Money Flow
This indicator is designed to identify short- to medium-term reversal points with precision. It's especially useful for spotting price pullbacks and potential turning points during trend corrections.
For best results, pair it with the BSKLAB Signal system to enhance signal confirmation and improve entry timing. 📈
✅ Ideal for short- to mid-term traders
✅ Helps detect pullbacks and reversals
✅ Works perfectly with automated signal systems
BTC-ETH-横扫华尔街超级短线此脚本为测试阶段为其20天左右 短线3分钟或者5分钟 需要配合趋势指标 ,请联系作者 获取 vx:lllyyybbb1026
btok:binky
BTC ETH Short term Indicator
Why choose our indicators?
√ Data verification: Based on 1-year historical data backtesting and 1-year real trading verification, the winning rate is as high as 90% (non simulated, with real trading records attached)
√ Multi scenario adaptation: Accurately identify bull/bear/volatile market trends, supporting mainstream currencies such as BTC and ETH
√ Minimalist operation: The chart directly displays the "long short arrow" and "stop loss take profit level", which beginners can learn in 3 minutes
Crowd
▷ Contract players who frequently place orders in the short term but have an unbalanced profit and loss balance
Office workers who lack time to monitor the market and hope to use indicators to assist decision-making
Experienced traders with existing trading systems who require additional factor validation strategies
▷ Rational investors who want to reduce emotional trading and pursue stable returns
💳 Package price (limited time benefits)
⭐ Basic version
99u/month:+exclusive morning trading strategy+real-time community Q&A
Important Note
There are risks in the market! This indicator does not guarantee a 100% win rate and needs to be used in conjunction with position management
为什么选择我们的指标?
√ 数据验证:基于1年历史数据回测与一年实盘验证,胜率高达90%(非模拟,附真实交易记录)
√ 多场景适配:精准识别牛市/熊市/震荡行情,支持BTC、ETH等主流币种
√ 极简操作:图表直接显示「多空箭头」「止损止盈位」,新手3分钟上手
适合人群
▷ 短线频繁开单却盈亏不平衡的合约玩家
▷ 缺乏时间盯盘,希望用指标辅助决策的上班族
▷ 已有交易系统,需额外因子验证策略的老手
▷ 想降低情绪化交易,追求稳定收益的理性投资者
💳 套餐价格(限时福利)
⭐ 基础版
99u/月:+独家早盘策略+社群实时答疑
重要提示
市场有风险!本指标非100%胜率保证,需配合仓位管理使用