NQ Trading Indicator 2Buy Signal: Triggered when the MACD line crosses above the signal line and the RSI is below 30, indicating an oversold condition.
Sell Signal: Triggered when the MACD line crosses below the signal line and the RSI is above 70, indicating an overbought condition.
False Breakout Notification: Highlights when MACD and RSI indicate conditions opposing their typical breakout behavior (e.g., RSI is overbought during a bullish crossover or oversold during a bearish crossover).
指标和策略
NQ Trading Indicator for 1 min chartFor 1 minute scalp on NQ.
Buy Signal: Triggered when the MACD line crosses above the signal line and the RSI is below 30, indicating an oversold condition.
Sell Signal: Triggered when the MACD line crosses below the signal line and the RSI is above 70, indicating an overbought condition.
False Breakout Notification: Highlights when MACD and RSI indicate conditions opposing their typical breakout behavior (e.g., RSI is overbought during a bullish crossover or oversold during a bearish crossover).
ADX btw 15-30 and increasingWhen the ADX is between 15-30, it suggests that there’s a trend present but that it isn’t in full-blown momentum mode yet. This gives you the opportunity to enter before the trend becomes extremely strong, allowing for earlier entries in a fresh trend.
An increasing slope of the ADX confirms that the trend is developing into a stronger phase, which provides additional confidence that the trade is likely to continue in the same direction.
This indicator highlights when both of these conditions are met.
VFV Correction Levels
This Pine Script, "VFV Correction Levels," identifies significant daily price corrections and calculates corresponding investments based on fixed thresholds (paliers). Key features include:
Six predefined correction levels trigger investments between $150 and $600 based on the percentage drop.
Larger corrections correspond to higher investment amounts.
Graphical Indicators:
Visual labels mark correction levels and display investment amounts directly on the chart.
Investment Tracking:
Calculates total invested and tracks performance (yield percentage) relative to the initial correction price.
Improved Scalping Strategy with Alerts//@version=5
indicator("Improved Scalping Strategy with Alerts", overlay=true)
// EMA Settings for Scalping
emaLength = input.int(9, title="EMA Length")
emaValue = ta.ema(close, emaLength)
plot(emaValue, title="EMA", color=color.blue, linewidth=2)
// Volume Analysis for Scalping
volumeThreshold = input.float(2.0, title="Volume Threshold")
volumeSignal = volume > ta.sma(volume, 10) * volumeThreshold
bgcolor(volumeSignal ? color.new(color.blue, 90) : na, title="Volume Signal")
// RSI Settings for Scalping
rsiLength = input.int(9, title="RSI Length")
rsiValue = ta.rsi(close, rsiLength)
overbought = 70
oversold = 30
plot(rsiValue, title="RSI", color=color.purple, linewidth=2)
hline(overbought, "Overbought", color=color.red)
hline(oversold, "Oversold", color=color.green)
// MACD Settings for Scalping
fastLength = input.int(6, title="MACD Fast Length")
slowLength = input.int(13, title="MACD Slow Length")
signalSmoothing = input.int(5, title="MACD Signal Smoothing")
= ta.macd(close, fastLength, slowLength, signalSmoothing)
plot(macdLine, title="MACD Line", color=color.blue, linewidth=1)
plot(signalLine, title="Signal Line", color=color.red, linewidth=1)
// Strong Bullish and Bearish Conditions for Scalping
strongBullish = rsiValue > 70 and macdLine > signalLine and close > emaValue and volumeSignal
strongBearish = rsiValue < 30 and macdLine < signalLine and close < emaValue and volumeSignal
// Buy/Sell Signals for Scalping
buySignal = strongBullish
sellSignal = strongBearish
// Plot Buy/Sell Signals on Chart
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT")
// Alerts for Scalping
alertcondition(buySignal, title="Long Trade Alert", message="Strong Bullish Signal: Consider LONG Trade")
alertcondition(sellSignal, title="Short Trade Alert", message="Strong Bearish Signal: Consider SHORT Trade")
// Additional Alerts for Confirmation
confirmationBullish = ta.crossover(macdLine, signalLine) and rsiValue > 50 and close > emaValue and volumeSignal
confirmationBearish = ta.crossunder(macdLine, signalLine) and rsiValue < 50 and close < emaValue and volumeSignal
alertcondition(confirmationBullish, title="Confirmation Bullish Alert", message="Confirmation Bullish Signal: Consider LONG Trade")
alertcondition(confirmationBearish, title="Confirmation Bearish Alert", message="Confirmation Bearish Signal: Consider SHORT Trade")
OctradingFxDétection de la session asiatique :
La session asiatique est définie entre 23h00 et 08h00 UTC (à ajuster selon votre fuseau horaire).
La variable asianSessionStart est utilisée pour identifier cette plage horaire.
Calcul des hauts et bas de la session asiatique :
Les variables asianHigh et asianLow stockent les plus hauts et plus bas de la session asiatique.
Ces valeurs sont réinitialisées à chaque nouvelle session.
Affichage de la zone de range :
La zone de range est affichée en arrière-plan avec bgcolor pour mettre en évidence la session asiatique.
Les lignes horizontales asianHigh et asianLow sont tracées pour visualiser les niveaux de range.
Intégration avec les cassages de la MA50 :
Les cassages de la MA50 sur H1 et H4 sont toujours affichés avec des flèches et des alertes.
Systematic Savings Plan - Store of Value DCA v1.1.1 Systematic Savings Plan - Store of Value DCA v1.1
Hey there! 👋 I've created this tool to help with systematic saving during downtrends. While it can be used with any asset, it's primarily designed for Store of Value assets (like BTC, Gold, etc.).
Why Store of Value Focus?
- These assets tend to preserve wealth long-term
- Often perform well after significant downtrends
- Make sense for systematic, patient accumulation
- Great for long-term savings plans
What This Tool Does:
- Spots potential saving opportunities in downtrends
- NO selling signals - purely for accumulation
- Helps maintain saving discipline when markets look scary
- Tracks your saving progress
- Works with any Store of Value asset you choose
How It Works:
1. Trend Check (24/200 EMA):
- Watches for downtrend patterns
- Nothing fancy, just classic EMA crossover
2. Market Stress Check (MFI):
- Default: 14 periods, level 20
- Helps spot high selling pressure
- Daily chart: These defaults work fine
- Weekly chart: You might want to adjust MFI to 20-30 range
Buy Frequency Control:
- Default minimum gap: 7 periods between saves
- Helps manage your saving schedule
- Perfect for monthly salary saving
- Prevents too frequent entries when you have limited funds
- Adjustable to match your cash flow:
• Weekly paycheck? Try 7 days
• Monthly salary? Try 28-30 days
• Custom schedule? Set your own interval!
When It Suggests Saving:
- Must be in downtrend
- MFI shows high selling pressure
- Minimum gap reached since last save
Savings Dashboard Shows:
- How much you've saved total
- Number of times you've saved
- Total assets accumulated
- Your average saving price
- Progress tracking
Customize It:
- Saving amount per entry
- Time between saves
- Technical settings
- Pick your date range
- Choose your asset
Important Honest Notes:
- Just an experiment, not financial advice
- Won't catch bottoms - that's not the point
- Focused on steady, patient accumulation
- You might get multiple signals in big downtrends
- Please adjust settings to match your savings plan
- Feel free to modify the code - make it yours!
- Past patterns don't predict the future
สวัสดีครับ! 👋 ผมสร้างเครื่องมือนี้เพื่อช่วยในการออมอย่างเป็นระบบในช่วงตลาดขาลง แม้จะใช้ได้กับสินทรัพย์ทั่วไป แต่ออกแบบมาเพื่อสินทรัพย์ประเภทเก็บมูลค่า (Store of Value) เป็นหลัก (เช่น BTC, ทองคำ เป็นต้น)
ทำไมถึงเน้นสินทรัพย์เก็บมูลค่า:
- มักรักษามูลค่าได้ในระยะยาว
- มักฟื้นตัวได้ดีหลังผ่านช่วงขาลงหนักๆ
- เหมาะกับการสะสมอย่างเป็นระบบและใจเย็น
- เหมาะสำหรับแผนการออมระยะยาว
เครื่องมือนี้ทำอะไร:
- หาจุดที่น่าสะสมในช่วงขาลง
- ไม่มีจุดขาย - เน้นการสะสมอย่างเดียว
- ช่วยรักษาวินัยการออมเมื่อตลาดน่ากลัว
- ติดตามความคืบหน้าการออม
- ใช้ได้กับสินทรัพย์เก็บมูลค่าที่คุณเลือก
ทำงานยังไง:
1. เช็คเทรนด์ (EMA 24/200):
- ดูรูปแบบขาลง
- ใช้แค่การตัด EMA แบบพื้นฐาน
2. เช็คแรงขาย (MFI):
- ค่าเริ่มต้น: 14 คาบ, ระดับ 20
- ช่วยหาจุดที่มีแรงขายสูง
- กราฟรายวัน: ใช้ค่าเริ่มต้นได้เลย
- กราฟรายสัปดาห์: ลองปรับ MFI เป็น 20-30
การควบคุมความถี่ในการออม:
- ค่าเริ่มต้นขั้นต่ำ: เว้น 7 คาบระหว่างการออมแต่ละครั้ง
- ช่วยจัดการตารางการออมของคุณ
- เหมาะสำหรับการออมตามรอบเงินเดือน
- ป้องกันการออมถี่เกินไปเมื่อมีเงินจำกัด
- ปรับแต่งได้ตามกระแสเงินสด:
• รับเงินรายสัปดาห์? ลองตั้ง 7 วัน
• เงินเดือน? ลองตั้ง 28-30 วัน
• มีแผนเฉพาะตัว? ตั้งค่าเองได้เลย!
จะแนะนำให้ออมเมื่อ:
- อยู่ในช่วงขาลง
- MFI แสดงแรงขายสูง
- ถึงรอบเวลาออมตามที่ตั้งไว้
แดชบอร์ดแสดง:
- ออมไปเท่าไหร่แล้ว
- ออมกี่ครั้งแล้ว
- สะสมสินทรัพย์ได้เท่าไหร่
- ราคาเฉลี่ยที่ออม
- ติดตามความคืบหน้า
ปรับแต่งได้:
- จำนวนเงินออมต่อครั้ง
- ระยะห่างระหว่างออม
- ค่าทางเทคนิค
- เลือกช่วงวันที่ต้องการ
- เลือกสินทรัพย์ที่ต้องการออม
หมายเหตุสำคัญ (พูดกันตรงๆ):
- เป็นแค่การทดลอง ไม่ใช่คำแนะนำการลงทุน
- ไม่ได้จับจุดต่ำสุด - ไม่ใช่จุดประสงค์หลัก
- เน้นการสะสมอย่างสม่ำเสมอและใจเย็น
- อาจมีสัญญาณหลายครั้งในช่วงขาลงยาว
- ปรับค่าต่างๆ ให้เข้ากับแผนการออมของคุณ
- แก้ไขโค้ดได้ตามใจชอบ - ทำให้เป็นของคุณ!
- รูปแบบในอดีตไม่ได้การันตีอนาคต
Pivot Powerup indy for tradingviewThis script calculates and plots Pivot Points (P, R1, R2, R3, S1, S2, S3) on the price chart. Pivot Points are key levels used in technical analysis to identify potential support and resistance areas.
Features :
- Calculates daily Pivot Points using the standard formula.
- Plots Pivot Point (P), Resistance levels (R1, R2, R3), and Support levels (S1, S2, S3).
- Overlays the levels on the price chart for easy visualization.
- No user-configurable parameters in this version.
- This indicator is based on the previous day's data. It may not be accurate in highly volatile markets.
- Always use Pivot Points in conjunction with other technical analysis tools for better accuracy.
- To customize the indicator, modify the formula in the `calculate_pivot_points` function.
- You can also change the colors or line widths of the plotted levels by editing the `plot()` functions.
Created by chakrint. Feel free to use and modify this script.
SMA Crossover with VWAP Filter-Thiru YadavBuy/Sell Signals: Displayed as labels on the chart.
SMAs: Plotted as blue (9 SMA) and orange (21 SMA) lines.
VWAP: Plotted as a purple line.
KP - RSI >= 70 & EMA Trend Filter (Daily trend - buy mode) Explanation of the Code:
Inputs:
You can adjust the RSI length and EMA lengths using the input parameters.
Conditions:
rsiCondition: Checks if RSI is >= 70.
emaCondition: Checks if 9 EMA > 20 EMA > 50 EMA.
trendCondition: Checks if the price is above all three EMAs (confirming a positive trend).
Plotting:
The EMAs and RSI are plotted on the chart for visual confirmation.
Buy Signal:
When all conditions are met, the background is highlighted in green, and a "BUY" label is displayed.
Alerts:
You can set up alerts to notify you when the buy signal is triggered
9-20 EMA Crossover with TP and SL9-20 EMA Crossover: This script tracks the crossover of the 9-period EMA and the 20-period EMA.
When the 9 EMA crosses above the 20 EMA, a buy signal is triggered.
When the 9 EMA crosses below the 20 EMA, a sell signal is triggered.
Take Profit and Stop Loss Levels:
The take profit for a long position is set at 3% above the entry price (close * 1.03).
The stop loss for a long position is set at 1% below the entry price (close * 0.99).
The take profit for a short position is set at 3% below the entry price (close * 0.97).
The stop loss for a short position is set at 1% above the entry price (close * 1.01).
Leverage: The strategy uses 20x leverage for both long and short positions (leverage=20).
Alerts: Alerts are set up for the buy signal when the 9 EMA crosses above the 20 EMA and the sell signal when the 9 EMA crosses below the 20 EMA. These alerts can be used with a webhook to trigger trades on Binance Futures.
Strategy:
For long trades: The strategy enters a long position and sets a take profit at 3% above the entry price and a stop loss at 1% below the entry price.
For short trades: The strategy enters a short position and sets a take profit at 3% below the entry price and a stop loss at 1% above the entry price.
0DTE Trend Reversal StrategyChange the RSI setting to 7
MACD Fast: 6
MACD Slow: 13
MACD Signal: 4
Short SMA: 10
Long SMA: 30
ATR: 7
Scalping trading system based on 4 ema linesScalping Trading System Based on 4 EMA Lines
Overview:
This is a scalping trading strategy built on signals from 4 EMA moving averages: EMA(8), EMA(12), EMA(24) and EMA(72).
Conditions:
- Time frame: H1 (1 hour).
- Trading assets: Applicable to major currency pairs with high volatility
- Risk management: Use a maximum of 1-2% of capital for each transaction. The order holding time can be from a few hours to a few days, depending on the price fluctuation amplitude.
Trading rules:
Determine the main trend:
Uptrend: EMA(8), EMA(12) and EMA(24) are above EMA(72).
Downtrend: EMA(8), EMA(12) and EMA(24) are below EMA(72).
Trade in the direction of the main trend** (buy in an uptrend and sell in a downtrend).
Entry conditions:
- Only trade in a clearly trending market.
Uptrend:
- Wait for the price to correct to the EMA(24).
- Enter a buy order when the price closes above the EMA(24).
- Place a stop loss below the bottom of the EMA(24) candle that has just been swept.
Downtrend:
- Wait for the price to correct to the EMA(24).
- Enter a sell order when the price closes below the EMA(24).
- Place a stop loss above the top of the EMA(24) candle that has just been swept.
Take profit and order management:
- Take profit when the price moves 20 to 40 pips in the direction of the trade.
Use Trailing Stop to optimize profits instead of setting a fixed Take Profit.
Note:
- Do not trade within 30 minutes before and after the announcement of important economic news, as the price may fluctuate abnormally.
Additional filters:
To increase the success rate and reduce noise, this strategy uses additional conditions:
1. The price is calculated only when the candle closes (no repaint).
2. When sweeping through EMA(24), the price needs to close above EMA(24).
3. The closing price must be higher than 50% of the candle's length.
4. **The bottom of the candle sweeping through EMA(24) must be lower than the bottom of the previous candle (liquidity sweep).
---
Alert function:
When the EMA(24) sweep conditions are met, the system will trigger an alert if you have set it up.
- Entry point: The closing price of the candle sweeping through EMA(24).
- Stop Loss:
- Buy Order: Place at the bottom of the sweep candle.
- Sell Order: Place at the top of the sweep candle.
---
Note:
This strategy is designed to help traders identify profitable trading opportunities based on trends. However, no strategy is 100% guaranteed to be successful. Please test it thoroughly on a demo account before using it.
High-Low DifferenceThis script will display the high-low difference both as a histogram and as a label on the chart.
Explanation:
highLowDiff = high - low: This calculates the difference between the high and low prices for each candle.
plot(...): This will plot the high-low difference as a blue histogram on the chart.
label.new(...): This will create a label at the top of each candle with the value of the high-low difference. You can adjust the position of the label and its appearance as needed.
Customization:
You can change the color, line width, or style of the plot and the labels to suit your preferences.
If you'd prefer the label to appear at a different location, you can modify the parameters inside label.new(), such as adjusting the position or the size of the text.
Pivot Powerup (Indy)Pivot powerup(indy) Indicator for TradingView
This script calculates and plots daily Pivot Points (P, R1, R2, R3, S1, S2, S3) on the price chart. Pivot Points are key levels used in technical analysis to identify potential support and resistance areas.
Key Features
Calculates daily Pivot Points using the standard formula.
Plots Pivot Point (P), Resistance levels (R1, R2, R3), and Support levels (S1, S2, S3).
Overlays the levels on the price chart for easy visualization.
How to Use
Copy and paste the script into the Pine Script editor on TradingView.
Add the indicator to your chart.
The Pivot Points will be automatically calculated and plotted based on the previous day's high, low, and close prices.
Cautions
This indicator is based on the previous day's data. It may not be accurate in highly volatile markets.
Always use Pivot Points in conjunction with other technical analysis tools for better accuracy.
Customization
To customize the indicator, modify the formula in the calculate_pivot_points function.
You can also change the colors or line widths of the plotted levels by editing the plot() functions.
Credits
Created by Zhongli2566. Feel free to use and modify this script.
EMA Strategy with Long/Short Signals//@version=5
indicator("EMA Strategy with Long/Short Signals", overlay=true)
// Input for EMAs
ema22 = ta.ema(close, 22)
ema55 = ta.ema(close, 55)
ema100 = ta.ema(close, 100)
ema200 = ta.ema(close, 200)
// Plot EMAs
plot(ema22, color=color.blue, title="EMA 22", linewidth=2)
plot(ema55, color=color.orange, title="EMA 55", linewidth=2)
plot(ema100, color=color.purple, title="EMA 100", linewidth=2)
plot(ema200, color=color.red, title="EMA 200", linewidth=2)
// Long condition: Price above all EMAs and trending upward
longCondition = close > ema22 and ema22 > ema55 and ema55 > ema100 and ema100 > ema200
// Short condition: Price below all EMAs and trending downward
shortCondition = close < ema22 and ema22 < ema55 and ema55 < ema100 and ema100 < ema200
// Plot Long/Short signals
plotshape(longCondition, title="Long Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="Long")
plotshape(shortCondition, title="Short Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="Short")