Lot size calculator for futuresEasily and quickly calculate lot sizes with this unique indicator for futures trading. Whether you're dealing with full contracts or micro contracts, this tool simplifies the process by allowing you to input your account balance, risk percentage, and stop loss in pips. The indicator then automatically calculates the optimal number of contracts to trade based on your risk parameters. Designed for both novice and experienced traders, it ensures precise risk management and enhances your trading strategy. Experience the ease and efficiency of lot size calculation like never before!
Indicators and strategies
EMA Scalperindikator EMA, untuk scalping berdasarkan harga EMA, dilangkapi dengan SL yang menggunakan 50% ATR
Dragonfly and Gravestone Doji with S/RThis is a single Pine Script indicator to identify both Dragonfly Doji (bullish reversal) and Gravestone Doji (bearish reversal) on the same chart. This script will mark the patterns with labels and symbols for easier identification
Vertical Lines on Every 25th CandleTime analysis strategy by Nabajit Hazarika ..... Time analysis strategy by Nabajit Hazarika
MACD + RSI Future Signals//@version=5
indicator("MACD + RSI Future Signals", overlay=true)
// تنظیمات مکدی
macdShortTerm = input.int(12, title="MACD Short Term")
macdLongTerm = input.int(26, title="MACD Long Term")
macdSignal = input.int(9, title="MACD Signal Line")
= ta.macd(close, macdShortTerm, macdLongTerm, macdSignal)
macdHist = macdLine - signalLine
// تنظیمات آر اس آی
rsiPeriod = input.int(14, title="RSI Period")
rsiValue = ta.rsi(close, rsiPeriod)
// تنظیمات پیشبینی
predictBars = input.int(10, title="Predict Bars Ahead")
// سیگنال خرید و فروش بر اساس MACD و RSI
buySignal = macdHist > 0 and rsiValue < 30
sellSignal = macdHist < 0 and rsiValue > 70
// رسم سیگنالهای خرید و فروش
plotshape(buySignal, color=color.green, style=shape.labelup, location=location.belowbar, text="BUY")
plotshape(sellSignal, color=color.red, style=shape.labeldown, location=location.abovebar, text="SELL")
// متغیرهای پیشبینی روند
var float predictedBuy = na
var float predictedSell = na
var line buyLine = na
var line sellLine = na
// محاسبه پیشبینی روند بر اساس سیگنالها
if (buySignal)
predictedBuy := close + (ta.ema(macdLine, macdShortTerm) * 0.1) // پیشبینی روند خرید
// رسم خط پیشبینی خرید
if (not na(buyLine))
line.delete(buyLine) // حذف خط قبلی
buyLine := line.new(x1=bar_index, y1=close, x2=bar_index + predictBars, y2=predictedBuy, color=color.green, width=2, style=line.style_dashed)
if (sellSignal)
predictedSell := close - (ta.ema(macdLine, macdLongTerm) * 0.1) // پیشبینی روند فروش
// رسم خط پیشبینی فروش
if (not na(sellLine))
line.delete(sellLine) // حذف خط قبلی
sellLine := line.new(x1=bar_index, y1=close, x2=bar_index + predictBars, y2=predictedSell, color=color.red, width=2, style=line.style_dashed)
// نمایش توضیحات در قسمت اطلاعات
plotchar(buySignal, title="Buy Signal", char='↑', location=location.belowbar, color=color.green)
plotchar(sellSignal, title="Sell Signal", char='↓', location=location.abovebar, color=color.red)
RSI-Bollinger-Volume-ATR-Trend Entry with Smart Money ConceptsЦей скрипт для TradingView на основі RSI, смуги Боллінджера, EMA, ATR, об'єму та концепції "Smart Money". Він враховує торгові сесії (Азія, Франкфурт, Європа, Нью-Йорк) для фільтрації сигналів і використовує рівні ордерних блоків для підтвердження входу. Сигнали купівлі/продажу відображаються стрілками.
RSI+EMA+MZONES with DivergencesFeatures:
1. RSI Calculation:
Uses user-defined periods to calculate the RSI and visualize momentum shifts.
Plots key RSI zones, including upper (overbought), lower (oversold), and middle levels.
2. EMA of RSI:
Includes an Exponential Moving Average (EMA) of the RSI for trend smoothing and confirmation.
3. Bullish and Bearish Divergences:
Detects Regular divergences (labeled as “Bull” and “Bear”) for classic signals.
Identifies Hidden divergences (labeled as “H Bull” and “H Bear”) for potential trend continuation opportunities.
4. Customizable Labels:
Displays divergence labels directly on the chart.
Labels can be toggled on or off for better chart visibility.
5. Alerts:
Predefined alerts for both regular and hidden divergences to notify users in real time.
6. Fully Customizable:
Adjust RSI period, lookback settings, divergence ranges, and visibility preferences.
Colors and styles are easily configurable to match your trading style.
How to Use:
RSI Zones: Use RSI and its zones to identify overbought/oversold conditions.
EMA: Look for crossovers or confluence with divergences for confirmation.
Divergences: Monitor for “Bull,” “Bear,” “H Bull,” or “H Bear” labels to spot key reversal or continuation signals.
Alerts: Set alerts to be notified of divergence opportunities without constant chart monitoring.
Nagz H&LEnglish:
The indicator shows the fractals where stop-losses may be located and can be used to trade from their taking.
You can adjust the length of the fractal (the number of bars with which it is surrounded on both sides, to confirm the validity).
You can also display lines from fractal points for clarity.
To keep the chart clean, you can enable deletion of already taken fractals.
Example of use with deleted fractals and without lines:
fm_surfing_1This is a pretty simple startegy that follows trend. Recommended time frams is D1.
when close price brakes up the EMA build based on high prices given that RSI is above 55 and RSI is above its Moving average - we buy.
when close price brakes down the EMA build based on low prices given that RSI is below 45 and RSI is below its moving average - we sell.
system closes previose trade if there is opposite signal
system uses take profit and stop loss as well as trailing stop
Dynamic ATR Levels (Last Bar Only)Dynamic ATR Levels (Last Bar Only)
This script uses the ATR (Average True Range) indicator to create dynamic support and resistance levels for a specified timeframe. Key features include:
1. ATR Calculation: The script calculates the ATR value based on the user-defined timeframe and lookback period.
2. Dynamic Levels: Support and resistance levels are calculated by adding and subtracting the ATR value to/from the current closing price.
3. Last Bar Execution: Support and resistance levels are displayed only on the last bar of the chart.
4. Labels: The levels are displayed as labels on the chart, positioned to the right side of the price.
This indicator helps traders quickly identify volatility-based support and resistance levels.
03 kingestrategia destinada apenas a analise educativa, sem fins monetarios, o que poderia ocasionar perdas.
RSI14 Crossover Above/Below RSI50
Edited Rsi Dual Indicator
I've added arrows directly on the chart to indicate RSI crossovers above and below the 50 level for both RSI lengths. Let me know if you need more changes!
Breadth of Volatility The Breadth of Volatility (BoV) is an indicator designed to help traders understand the activity and volatility of the market. It focuses on analyzing how fast prices are moving and how much trading volume is driving those movements. By combining these two factors—price speed and volume strength—the BoV provides a single value that reflects the current level of market activity. This can help traders identify when the market is particularly active or calm, which is useful for planning trading strategies.
The speed component of the BoV measures how quickly prices are moving compared to their recent average. This is done by using a metric called the Average True Range (ATR), which calculates the typical size of price movements over a specific period. The BoV compares the current price change to this average, showing whether the market is moving faster or slower than usual. Faster price movements generally indicate higher volatility, which might signal opportunities for active traders.
The strength component focuses on the role of trading volume in price changes. It multiplies the trading volume by the size of the price movement to create a value called volume strength. This value is then compared to the highest volume strength seen over a recent period, which helps gauge whether the current price action is being strongly supported by trading activity. When the strength value is high, it suggests that market participants are actively trading and supporting the price movement.
These two components—speed and strength—are averaged to calculate the Breadth of Volatility value. While the formula also includes a placeholder for a third component (related to fundamental analysis), it is currently inactive and does not influence the final value. The BoV is displayed as a line on a chart, with a zero line for reference. Positive BoV values indicate heightened market activity and volatility, while values near zero suggest a quieter market. This indicator is particularly helpful for new traders to monitor market conditions and adjust their strategies accordingly, whether they’re focusing on trend-following or waiting for calmer periods for more conservative trades.
Important Notice:
Trading financial markets involves significant risk and may not be suitable for all investors. The use of technical indicators like this one does not guarantee profitable results. This indicator should not be used as a standalone analysis tool. It is essential to combine it with other forms of analysis, such as fundamental analysis, risk management strategies, and awareness of current market conditions. Always conduct thorough research or consult with a qualified financial advisor before making trading decisions. Past performance is not indicative of future results.
Disclaimer:
Trading financial instruments involves substantial risk and may not be suitable for all investors. Past performance is not indicative of future results. This indicator is provided for informational and educational purposes only and should not be considered investment advice. Always conduct your own research and consult with a licensed financial professional before making any trading decisions.
Note: The effectiveness of any technical indicator can vary based on market conditions and individual trading styles. It's crucial to test indicators thoroughly using historical data and possibly paper trading before applying them in live trading scenarios.
Nahum - ZLSMA for Telegram [Nahum81]Este indicador ZLSMA (Zero Lag Least Squares Moving Average) proporciona una media móvil con un retraso casi nulo, lo que permite identificar la dirección de la tendencia de forma instantánea.
Características:
Alertas de Telegram: Recibe notificaciones en tiempo real en tu Telegram cuando se produzcan señales de compra o venta.
Integración con Telegram: Conéctate fácilmente a tu cuenta de Telegram para recibir alertas.
Configuración personalizable: Ajusta los parámetros del indicador y las alertas a tu estrategia de trading.
Advertencia:
Este indicador debe usarse con precaución.
Se recomienda contactar al desarrollador (@Nahum81) para comprender completamente la estrategia y su uso adecuado.
El trading implica riesgos y este indicador no garantiza ganancias.
Previous OHLC By JDThe "Previous OHLC By JD" indicator helps traders visualize key historical price levels on their charts. It tracks the Open, High, Low, and Close (OHLC) prices from a specified timeframe to identify potential support and resistance levels.
Features:
Custom Timeframe: Choose the timeframe for OHLC levels.
Visibility Toggles: Turn the Open, High, Low, and Close lines on or off.
Color Customization: Set unique colors for each OHLC line.
Adjustable Thickness: Modify line thickness for better visibility.
Automatic Labels: Each line is labeled with its price and timeframe.
How to Use:
Select Timeframe: Choose the desired timeframe (e.g., 1 hour, 4 hours, 1 day).
Toggle Visibility: Show or hide the Open, High, Low, and Close lines.
Customize Colors: Set colors for each OHLC line.
Adjust Thickness: Set the line thickness.
Interpret Levels:
Open Line: Sentiment at the start of the period.
High Line: Potential resistance level.
Low Line: Potential support level.
Close Line: Sentiment at the end of the period.
Use this indicator to gain insights into historical price action and make informed trading decisions.
Benzer Mumlar Bulucu (4 Saatlik)//@version=5
indicator("Benzer Mumlar Bulucu (4 Saatlik)", overlay=true)
// Mum özellikleri
body_size = math.abs(close - open) // Mumun gövde büyüklüğü
upper_wick = high - math.max(close, open) // Üst fitil uzunluğu
lower_wick = math.min(close, open) - low // Alt fitil uzunluğu
candle_range = high - low // Mumun toplam uzunluğu
// Benzerlik eşiği (kendi kriterlerinize göre değiştirebilirsiniz)
body_threshold = 0.2 // Gövde uzunluğunun toplam mum aralığına oranı (örneğin %20)
wick_threshold = 0.1 // Fitil uzunluğunun toplam mum aralığına oranı (örneğin %10)
// Benzer mum tespiti
is_similar = (body_size <= (candle_range * body_threshold)) and
(upper_wick <= (candle_range * wick_threshold)) and
(lower_wick <= (candle_range * wick_threshold))
// Grafikte işaretleme
plotshape(is_similar, style=shape.triangleup, location=location.abovebar, color=color.green, size=size.small, title="Benzer Mum")
Crypto Trading BotFirst attempt at creating a Trading bot that uses 21 and 200 emas, stochastic rsi, smart money concepts (Choch & BOS), and trendline.
Needs some tweaking for sure. any advice would be greatly appreciated.
Holiday spiritHi all!
This is a take on a Christmas feeling. Snowflakes are dropping down from clouds in the sky to some candles. A moon and a few stars are in the sky. The stars/moon and the snowflakes are visible through labels and ascii characters and emojis. This feels a little bit like cheating, but it ads to the spirit at least. The clouds are made from polylines, so no 'cheating' there. I hope that it's enjoyable.
Happy holidays!
Kalman Trend Levels [BigBeluga]Det är nog en sak som världens filosofer kan komma överens om, så snart du börjar grotta i vad meningen med livet är så mår du sämre. Samtidigt har forskning visat att en känsla av mening är starkt ihopkopplat med ett gott välmående, hur kan det komma sig? Det ska vi försöka bena ut i detta inlägg.
Det är egentligen ett viktigt budskap som vi önskar att alla människor får lära sig, nämligen att en känsla av mening inte kan uppstå bara sådär. Du behöver agera för att skapa mening i ditt liv. Det är inte meningen med livet du ska söka efter, utan du ska agera för att skapa ett meningsfullt liv. Känslan av meningsfullhet uppstår nämligen när du upplever att du har kompetens att ta dig framåt, när du inser att du kan göra skillnad och när du agerar för att hjälpa andra människor. Man skulle nästan kunna säga att meningen med livet är att skapa mening med ditt liv!
For the meaning of life differs from man to man, from day to day and from hour to hour. What matters, therefore, is not the meaning of life in general but rather the specific meaning of a person’s life at a given moment. – Viktor E. Frankl
Samtidigt är det viktigt att inse att du inte behöver rädda världen för att uppleva mening. Du bör istället lära känna dig själv och komma fram till vad som är viktigt för dig. Någon önskar att ta hand om barn och se dem växa upp till välmående och starka individer, en annan vill ta hand om djur genom att bli veterinär. Oliver i Malmö lägger större värde i att få spendera mycket tid med sina vänner och Hanna i Åmål föredrar att starta företag för att bidra till sitt lokalsamhälle. Vad som är viktigt för just dig kan bara du veta!
Här behöver vi dock tillägga ett stort MEN. Att som ung vuxen redan vara medveten om vad som skapar mening i ditt liv är ganska sällsynt. Visst finns det personer som har en klar bild av sin framtid sedan barnsben, du har säkert hört talas om den personen som alltid har sagt ”Jag vill hjälpa människor, jag ska bli läkare”, och som håller fast vid det fram till personen en dag står där med sin läkarlegitimation! Vi unnar verkligen de få personerna som tidigt vet vad de vill bidra med till världen, men majoriteten av ungdomar har sällan koll på hur de vill spendera sin tid ens ett år framåt. Vi kan dessutom vara ärliga och avslöja att väldigt få vuxna ens är medvetna om vad de vill göra i livet…
Så känn ingen stress genom att pressa dig själv att komma fram till vad du vill skapa för känsla av mening. Du behöver testa dig fram och undersöka vad som känns bra för dig. Samtidigt kan en coach hjälpa dig att bena ut dina tankar kring vad du tycker är meningsfullt, bland annat genom att landa i vilka värderingar du har just nu. Det du kommer fram till idag kanske är annorlunda om några år, men när du tar tid till att lära känna dig själv och är redo att förändras med dina erfarenheter så har du kommit otroligt långt på vägen. Och kanske kan du till och med göra det som krävs för att ska skapa en liten känsla av mening redan idag!
Även om det hade känts fint att avsluta inlägget där, så är det ändå en sista sak vi vill ta upp. Det är nämligen en sak som forskning har kommit fram till när det gäller känslan av mening, att den uppstår för de allra flesta när de hjälper en annan människa. Så om du känner dig lite vilsen, fundera då på vem du kan hjälpa idag. Dina föräldrar kanske skulle uppskatta hjälp med att vika tvätten, din kollega skulle bli glad om du bjuder på en god lunch eller så kan du bjuda personen bakom dig i kön på en kaffe. Med lite kreativitet finns det massor du kan göra för att i stunden uppleva en härlig känsla av meningsfullhet, genom att fokusera på andra människor!
rsi 1450The code has been reverted to its original version without the arrow modifications. Let me know if you need any further adjustments!
Indicador Radial com Visualização de Graus ( versão de teste )Indicador baseado em graus para captar movimentos de liquidez do mercado( associado ao RSI)