GER40 / 1M SetupThe indicator for the 1M GER40 strategy displays Frankfurt IB, OTT trading sessions, and also marks long or short breakouts. Video: www.youtube.comIndicador Pine Script®por sn3akerhead18
VWAP Gate (1m aligned ORB5)VWAP Gate v2.3 is a 1-minute aligned, session-aware VWAP regime filter (“gate”) designed to keep VWAP trades out of flat/choppy conditions and focus only on periods where VWAP is moving with structure. It plots a Session Anchored VWAP (RTH) with an ε touch zone, optionally plots an Overnight Anchored VWAP, and can mark VWAP retest entry signals only when the gate is active and price action confirms. This is an overlay tool for discretionary execution and rule-based filtering. It does not manage exits, risk, or position sizing. Core idea (what it does) VWAP works best when the market has directional order flow and fails in mean-reverting chop. This indicator attempts to separate those regimes by requiring: VWAP has actually moved (slope/magnitude filter) Price is not constantly flipping around VWAP (chop filter) Price is holding on one side of VWAP by a realistic buffer (hold/acceptance filter) Only when these conditions persist does the Gate turn ON, enabling a “tradeable VWAP” environment. All calculations are done on 1-minute data using request.security(..., "1", ...) so the behavior stays consistent across chart timeframes. What is plotted 1) Session AVWAP (RTH Anchored VWAP) A manually computed VWAP that resets at the start of the RTH session (default 09:30–16:00 New York). It is plotted as “Session AVWAP” and changes color based on gate state and directional readiness (see “Colors” below). 2) VWAP ε Touch Zone (retest band) Two lines around Session VWAP: VWAP ε Upper = VWAP + ε VWAP ε Lower = VWAP − ε The band between them is filled. This creates a practical “touch zone” for retests and rejection closes. ε (epsilon) is adaptive to instrument microstructure: ε = max(minTicksEps × tickSizePts, spreadPts × epsSpreadMult) This prevents treating tiny touches (often just spread/noise) as meaningful VWAP interactions. 3) Overnight AVWAP (optional) If enabled, plots an Overnight anchored VWAP computed over the defined overnight session (default 00:00–09:30 New York). Useful for mapping overnight fair value into the open. 4) ORB(5) High/Low (optional) Plots the Opening Range Breakout (5 minutes) high/low (default 09:30–09:35 New York). Optionally draws an ε band around ORB levels (ORB ± ε) to account for noise/spread around key levels. 5) VWAP Retest Entry Markers (optional) When the gate is active, the tool can print: “L” for a long retest entry “S” for a short retest entry These are filters + triggers, not guaranteed trades. Gate logic (when trading is allowed) A) VWAP Move / Slope filter The indicator measures VWAP displacement over lookbackMin minutes: VWAP_move = |VWAP_now − VWAP_lookback| It must exceed thresholds tied to: Recent price range: thrRange = kRange × (highestHigh − lowestLow over lookback) Spread: thrSpr = kSpread × spreadPts Threshold mode Strict AND: VWAP_move must beat both thresholds Loose: VWAP_move must beat max(thrRange, thrSpr) Purpose: block low-energy sessions where VWAP drift is too small vs noise. B) Chop filter (VWAP flips) The indicator counts how often price flips sides of VWAP during the lookback window (with a small buffer to reduce micro-noise flips). If flips exceed maxCrossesN, the environment is classified as chop and the gate cannot activate. Purpose: avoid mean-reverting “ping-pong” around VWAP. C) Gate confirmation (anti-flicker / hysteresis) The gate requires persistence: Gate turns ON after onConfirmBars consecutive passes Gate turns OFF after offConfirmBars consecutive fails Purpose: prevent rapid ON/OFF switching in borderline conditions. Directional “Hold” readiness (LONG vs SHORT bias) Even when the gate is ON, the indicator requires acceptance away from VWAP: Define δ (delta buffer): δ = max(2 ticks, spreadPts × holdDeltaMult) Then: HoldLong = price has stayed > (VWAP + δ) for holdBars 1-minute closes HoldShort = price has stayed < (VWAP − δ) for holdBars 1-minute closes Additionally, direction must agree with VWAP slope: Long requires VWAP slope > 0 Short requires VWAP slope < 0 Purpose: avoid “false bias” when price temporarily deviates but VWAP is drifting the other way. VWAP Retest Entry signals (L / S) Entry markers trigger only when all are true: Gate is active Inside your Trade Window (default 09:40–11:00 New York) HoldLongOk / HoldShortOk is true Price touches the ε zone: low ≤ VWAP+ε AND high ≥ VWAP−ε Then closes away from VWAP (“rejection close”) by a fraction of ε: Long rejection: close > VWAP + (ε × rejCloseFrac) Short rejection: close < VWAP − (ε × rejCloseFrac) Optional: Require pullback can require the previous close to already be on the trend side (to avoid first-touch chaos). Colors (quick regime read) The Session VWAP line and ε zone communicate state: Gray: gate inactive / no-trade regime Yellow: gate active but no clean long/short hold yet (standby) Lime: gate active + long hold confirmed (long bias) Red: gate active + short hold confirmed (short bias) Optional background tint can reinforce gate state, and optional shading can gray out bars outside the trade window. Important notes / limitations Set spreadPts and tickSizePts correctly for your instrument. ε and δ depend on them; wrong values distort the entire filter. The indicator uses 1-minute computations across all chart timeframes for consistent behavior. This tool is a regime filter + entry trigger, not a complete trading system (no exits, no sizing, no expectancy validation included). If volume is missing/invalid, the script substitutes a minimal volume value for VWAP calculations. Suggested use Use Prop VWAP Gate to: Avoid VWAP trading in flat/choppy opens Focus attention when VWAP is moving and price is holding with structure Execute VWAP retest setups inside a controlled time window Combine with ORB(5) and overnight VWAP for key reference levelsIndicador Pine Script®por MPRManagementActualizado 42
PSAR BBPT ZLSMA BTC 1minLong entry: PSAR gives buy signal BBPT prints green histogram ZLSMA is below the price ZLSMA has uptrend SL is smaller than the max SL Optional Sessions and EMA filters Short entry PSAR gives sell signal BBPT prints red histogram ZLSMA is above the price ZLSMA has downtrend SL is smaller than the max SL Optional Sessions and EMA filters SL: Placed below ZLSMA + offset on long Placed above ZLSMA + offset on short TP1: 1x the SL by default Takes no profit by default, 50% is also a good setting TP2: 2x the SL by default Take out all remaining position size. If price reaches TP1, the SL is set to the entry price. Estrategia Pine Script®por Rolan_Kruger650
Fractal Potential EntryFractal Potential Entry combine 3 ema and fractal and follow the strategy from Trade Pro on YouTube: www.youtube.com with good performance on the 1 minute chart Feature: Alert Sell and buy Potential Entry Happy Trading Indicador Pine Script®por Nick_M22358
Bollinger Bands + EMA 9A 1 minute scalping strategy. Uses Bollinger Bands (no basis line) and a 9 period EMA. Waits for price to close below the lower Bollinger Band and the next candle to close bullish above the lower Bollinger Band but below the 9 Period EMA. If all conditions are met, the script enters a long position with TP at the 9 Period EMA.Estrategia Pine Script®por D499Actualizado 44737
super SSL [ALZ]This script is designed and optimized for MULTI TIME by Ali Zebardast (ALZ) 1.in part of ssl Original Version credits to Mihkel00 Actual Version i just set alerts and change the parameters for BTCUSDT 1min Chart. He designed for daily time. I tried to optimize 1 min time-frame . And fix the errors with OTT "This script has a SSL / Baseline (you can choose between the SSL or MA), a secondary SSL for continiuation trades and a third SSL for exit trades. Alerts added for Baseline entries, SSL2 continuations, Exits. Baseline has a Keltner Channel setting for "in zone" Gray Candles Added "Candle Size > 1 ATR" Diamonds from my old script with the criteria of being within Baseline ATR range." 2.in part of Range two Filter Buy and Sell for 3min Wait For Bar close ssl2 :Be under the candle for buy and The bar color must confirm the order of purchase (Blue) 3.in part of OTT when candles close over HOTT, means an UPTREND SIGNAL and to Fuchia when candles begin closing under LOTT line to indicate a DOWNTREND SIGNAL. FLAT ZONE is highlighted also to have the maximum concentration on sideways market conditions. There are three quantitative parameters in this indicator: The first parameter in the OTT indicator set by the two parameters is the period/length. OTT lines will be much sensitive to trend movements if it is smaller. And vice versa, will be less sensitive when it is longer. As the period increases it will become less sensitive to little trends and price actions. In this way, your choice of period, will be closely related to which of the sort of trends you are interested in. The OTT percent parameter in OTT is an optimization coefficient. Just like in the period small values are better at capturing short term fluctuations, while large values will be more suitable for long-term trends. The final adjustable quantitative parameter is HIGHEST and LOWEST length which is the source of calculations. Credits go to: SSL Hybrid www.tradingview.com HIGH and LOW OTT : www.tradingview.com Range Filter www.tradingview.com Indicador Pine Script®por AliZebardast22481
TICK Scalping strategy, SPY 1 min1 min chart scalping version of my other TICK strategy with adjusted parameters and additional entry and exit conditions better suited for 1 min SPY chart. Please refer to my original TICK strategy for explanation. Important notes: 1. This strategy is designed for same day SPY option scalping on the 1 min chart . All profit shown in back testing report is based on Profit/Loss (P/L) estimates from trading options with approximately 6 weeks of data. By default, it is set to 10 option contracts. By default the initial capital is set to $5000. Pyramiding is set to 3. 2. This strategy works better with non-extended market data . 3. This strategy is mainly developed for SPY trading on 1 min chart, it probably will not be very profitable with other tickers or time frame without tweaking all the parameters first. Cheers and enjoy~! Let's all make money~!! Estrategia Pine Script®por PtGamblerActualizado 2727 1.7 K
3 Candle Strike StretegyMainly developed for AMEX:SPY trading on 1 min chart. But feel free to try on other tickers. Basic idea of this strategy is to look for 3 candle reversal pattern within trending market structure. The 3 candle reversal pattern consist of 3 consecutive bullish or bearish candles, followed by an engulfing candle in the opposite direction. This pattern usually signals a reversal of short term trend. This strategy also uses multiple moving averages to filter long or short entries. ie. if the 21 smoothed moving average is above the 50, only look for long (bullish) entries, and vise versa. There is option change these moving average periods to suit your needs. I also choose to use Linear Regression to determine whether the market is ranging or trending. It seems the 3 candle pattern is more successful under trending market. Hence I use it as a filter. There is also an option to combine this strategy with moving average crossovers. The idea is to look for 3 candle pattern right after a fast moving average crosses over a slow moving average. By default , 21 and 50 smoothed moving averages are used. This gives additional entry opportunities and also provides better results. This strategy aims for 1:3 risk to reward ratio. Stop losses are calculated using the closest low or high values for long or short entries, respectively, with an offset using a percentage of the daily ATR value. This allows some price fluctuation without being stopped out prematurely. Price target is calculated by multiplying the difference between the entry price and the stop loss by a factor of 3. When price target is reach, this strategy will set stop loss at the price target and wait for exit condition to maximize potential profit. This strategy will exit an order if an opposing 3 candle pattern is detected, this could happen before stop loss or price target is reached, and may also happen after price target is reached. *Note that this strategy is designed for same day SPY option scalping. I haven't determined an easy way to calculate the # of contracts to represent the equivalent option values. Plus the option prices varies greatly depending on which strike and expiry that may suits your trading style. Therefore, please be mindful of the net profit shown. By default, each entry is approximately equal to buying 10 of same day or 1 day expiry call or puts at strike $1 - $2 OTM. This strategy will close all open trades at 3:45pm EST on Mon, Wed, and Fri. **Note that this strategy also takes into account of extended market data. ***Note pyramiding is set to 2 by default, so it allows for multiple entries on the way towards price target. Remember that market conditions are always changing. This strategy was only able to be back-tested using 1 month of data. This strategy may not work the next month. Please keep that in mind. Also, I take no credit for any of the indicators used as part of this strategy. Enjoy~Estrategia Pine Script®por PtGamblerActualizado 77 1.2 K
Scalping Trading System bot Crypto and StocksThis is a trend trading strategy scalping bot that can work with any type of market. However I concluded my tests so far with Crypto, Stocks and Forex, and with optimizations always could be found some profitable settings. Indicators SImple Moving Average Exponential Moving Average Keltner Channels MACD Histogram Stochastics Rules for entry long= Close of the candle bigger than both moving averages and close of the candle is between the top and bot levels from Keltner. At the same time the macd histogram is negative and stochastic is below 50. short= Close of the candle smaller than both moving averages and close of the candle is between the top and bot levels from Keltner. At the same time the macd histogram is positive and stochastic is above 50. Rules for exit We exit when we meet an opposite reverse order. This strategy has no risk management inside, so use it with caution !Estrategia Pine Script®por exlux2323 3.3 K
Forex Fractal EMA ScalperThis is a forex scalper designed for very short timeframes 1-5 min max. At the same time due to the short timeframe, is recommend to re optimize it weekly . Its components are Fractals Triple EMA with different lengths Rules for entry: For long : we have an up fractal and all 3 ema are in ascending order For short: we have a down fractal and all 3 ema are in descending order. Rules for exit We exit when we either get a reverse order or when we hit the take profit or stop loss calculated in fixed pips. Estrategia Pine Script®por exlux33 1.1 K
15m Candle ToolShows historical 15min candles for the 1m, 3m , and 5m time frames. Counts down the time until the current 5m, 15m, and 1H candles close. Recommended use on the 1m, 3m , and 5m TimeFrames!!! Legend: Vertical Lines (Left to Right) -15m Candle wick (solid line) * -Close of current 5m candle (red dotted) -Close of current 15m candle (blue dashed) - Close of current 1H candle (green solid) Horizontal Lines (Top to Bottom) - Previous 15m high (top of wick) * - Subdivisions of the low to high of the previous 15m candle (.25, .50, .75) (WHITE LINES, .50 is extended) - inter candle average of the highs within the previous 15m candle (solid green) - average of the inter candle highs and lows (grey dashed) - inter candle average of the lows within the previous 15m candle (solid red) - Previous 15m low (bottom of wick) * Previous Candle Body * * = Changes color based on the bar color. Indicador Pine Script®por SamRecioActualizado 66678
Forex Scalping 1min Bollinger Bands, RSI and ADX Trading SystemThis is a Forex Scalping Trading Sytem based on the Bollinger Bands. Its suited for major pairs, with lowest possible comission (below 1 pip) and with timeframes ranging between 1-15 min. Indicators: Bollinger bands ADX RSI Rules for entry: Long Entry: price to move below the upper Bollinger Bands RSI raise above the 30 line and ADX<32 at the same time. Short Entry: price to move above the upper Bollinger Bands, RSI raise below the 70 line and ADX<32 at the same time. Rules for exit Profit Exit: 3 options: 1, exit position when the price touches the middle band, 2) when the price touches the opposite band, X pips target profit. Loss Exit: X pips lossEstrategia Pine Script®por exlux99 1.8 K
Intraday FOREX london scalperThis forex System is only for ECN Broker Account. Pairs: Major with spread < 0.0001 (EUR/USD). Setup: Wait for the market to make to 60 minute from the open. If the market is near the intraday high be prepared to go short If the market is near an intraday low for the same time period, then be prepared to go long. Rules for entry For sell setups: Enter on sell stop 1 pip from low of the last 15 min bar. For buy setups: Enter in buy stop 1 pip from high of the last 15-minute bars. Rules for exit Take profit: Close out positions on 6 pips profit.. Stop Loss: Close out on 5 pips loss or if trade takes more than 1 minute.Indicador Pine Script®por exlux55202
Crypto BOT lower timeframesThis is a crypto bot designed for lower time frames. Its made of 2 EMA, one fast and one slower . They are combined together with Stochastic, MACD and price action patterns. For entries we have multiple conditions : First we check if one of our last 4 closed candles crossed above or below the faster EMA. After that for long, we check that last close is above the fast EMA, that the fast ema is above the slower EMA, at the same time that the histogram from MACD is positive and that we have crossover with the oversold line on stochastic. For the short , the opposite of long. For exit we have TP/SL mechanic based on price % movement, in this example if the price moved 10% from the initial position it will exit.Estrategia Pine Script®por SoftKill211111 3 K
Amazing scalper for majors with risk managementHello, Today I am glad to bring you an amazing simple and efficient scalper strategy. Best suited for 1M time frame and majors currency pairs. Its made of : Ema (exponential moving average) , long period 25 Ema(exponential moving average) Predictive, long period 50, Ema(exponential moving average) Predictive, long period 100 Risk management , risking % of equity per trade using stop loss and take profits levels. Long Entry: When the Ema 25 cross up through the 50 Ema and 100 EMA. and we are in london or new york session( very important the session, imagine if we have only american or european currencies, its best to test it) Short Entry: When the Ema 25 cross down through the 50 Ema and 100 EMA, and we are in london or new york session( very important the session, imagine if we have only american or european currencies, its best to test it) Exit: TargetPrice: 5-10 pips Stop loss: 9-12 pips Hope you enjoy it :)Estrategia Pine Script®por SoftKill2122764
Strategy - Bobo Intraday Swing Bot with filtersThis is an adapted version of my swing bot with additional filters that mean it works quite well on lower timeframes like 1min, 5 mins as long as you adjust the setting accordingly (reduce pivot timescale, band width) Entry conditions are filtered by an invisible trend calculation running in the background so the bot doesn't repeatedly try and fail to fade a strong trend. It has just about everything you should need for basic use, stop losses and targets, automatically close trade at pivot. I get good results on rangey instruments like major indices such as SPX / ES that kind of thing. Make sure you understand the minmum tick value of an index so the stop setting on the bot work properly Hope it's useful!Estrategia Pine Script®por BobVanders1111 1.1 K
Scalping with Bill Williams AlligatorScalping strategy based on Bill Williams Alligator technique but calculated with heikin ashi candles. This strategy has to be applied to standard candles and low time frames (1min to 5min) Thanks to all pinescripters mentined in the code for their snippets. It could be improved with stop loss based on ATR etc. I have also a study with alerts. Please use comment section for any feedback or contact me if you need support. Estrategia Pine Script®por 03.freeman2828 2.2 K
1 Min XBT FilterFor the 1min BitMEX junkies... be careful as always!Indicador Pine Script®por ballofpaper55602
[naoligo] 12x MA DT (5, 15, 30 & 60)This indicator is based on "Generic 8x MA Plotter", by @LazyBear. It is also based on my own indicator "10x MA (H, D, W, M)", which is good for Swing Trading and/or Position. This one is focused in daytrade and it will plot three Moving Averages based on current time interval (under 5 minutes) and nine based on chosen periods by 5, 15, 30 and 60 minutes. You will be able to see where is, for example, a 50 period's SMA of 15 minutes when using a 2 minutes time interval chart. I find it very useful to analyze, in a snap, possible price ranges and enter/exit points. All reference values are from setups known and used by daytraders. you can choose between EMA or SMA (default: SMA) for each time interval, that are distributed in: 3x MA current time interval; 3x MA 5 minutes; 2x MA 15 minutes; 2x MA 30 minutes; 2x MA 60 minutes. I've tried to keep the code as simple as possible, so you can increase the number of MA or modify the type for each time interval. Cons: Use it wisely, because if you choose to plot all the 12 Moving Averages, it will may consume a lot of your navigator resources. Enjoy!Indicador Pine Script®por naoligo22305