Spezifikation
//@version=5
indicator("Enhanced SMA Crossover with RSI Confirmation", shorttitle="SMA Cross RSI", overlay=true)
// Define the length of the short-term and long-term moving averages
shortLength = input.int(9, title="Short-term Moving Average Length")
longLength = input.int(21, title="Long-term Moving Average Length")
rsiLength = input.int(14, title="RSI Length")
rsiOverbought = input.int(70, title="RSI Overbought Level")
rsiOversold = input.int(30, title="RSI Oversold Level")
// ATR settings for calculating Take Profit and Stop Loss
atrLength = input.int(14, title="ATR Length")
atrMultiplier = input.float(1.5, title="ATR Multiplier")
// Calculate the short-term and long-term moving averages
shortSMA = ta.sma(close, shortLength)
longSMA = ta.sma(close, longLength)
// Calculate RSI
rsi = ta.rsi(close, rsiLength)
// Calculate ATR
atr = ta.atr(atrLength)
// Define Take Profit and Stop Loss levels
takeProfit = atr * atrMultiplier
stopLoss = atr * atrMultiplier
// Plot the moving averages
plot(shortSMA, color=color.blue, title="Short-term SMA")
plot(longSMA, color=color.red, title="Long-term SMA")
// Generate entry signals with RSI confirmation
longCondition = ta.crossover(shortSMA, longSMA) and rsi < rsiOverbought
shortCondition = ta.crossunder(shortSMA, longSMA) and rsi > rsiOversold
// Plot entry signals on the chart with labels
plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, text="BUY", title="Buy Signal")
plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL", title="Sell Signal")
// Labels for entry points with Take Profit and Stop Loss
if (longCondition)
label.new(bar_index, low, text="BUY\nTP: " + str.tostring(close + takeProfit, format.mintick) + "\nSL: " + str.tostring(close - stopLoss, format.mintick),
style=label.style_label_up, color=color.green, textcolor=color.white, size=size.small)
if (shortCondition)
label.new(bar_index, high, text="SELL\nTP: " + str.tostring(close - takeProfit, format.mintick) + "\nSL: " + str.tostring(close + stopLoss, format.mintick),
style=label.style_label_down, color=color.red, textcolor=color.white, size=size.small)
// Display alerts
alertcondition(longCondition, title="Buy Alert", message="Buy Signal: Short-term SMA crossed above Long-term SMA with RSI confirmation")
alertcondition(shortCondition, title="Sell Alert", message="Sell Signal: Short-term SMA crossed below Long-term SMA with RSI confirmation")
Bewerbungen
1
Bewertung
Projekte
22
9%
Schlichtung
6
33%
/
50%
Frist nicht eingehalten
1
5%
Arbeitet
2
Bewertung
Projekte
3
33%
Schlichtung
2
0%
/
100%
Frist nicht eingehalten
0
Frei
3
Bewertung
Projekte
30
20%
Schlichtung
8
63%
/
13%
Frist nicht eingehalten
9
30%
Frei
4
Bewertung
Projekte
87
29%
Schlichtung
24
13%
/
58%
Frist nicht eingehalten
7
8%
Arbeitet
5
Bewertung
Projekte
13
8%
Schlichtung
3
33%
/
67%
Frist nicht eingehalten
1
8%
Frei
6
Bewertung
Projekte
1
0%
Schlichtung
1
0%
/
100%
Frist nicht eingehalten
0
Frei
7
Bewertung
Projekte
5
40%
Schlichtung
0
Frist nicht eingehalten
0
Frei
8
Bewertung
Projekte
475
40%
Schlichtung
105
40%
/
24%
Frist nicht eingehalten
80
17%
Überlastet
Veröffentlicht: 2 Beispiele
9
Bewertung
Projekte
945
47%
Schlichtung
309
58%
/
27%
Frist nicht eingehalten
125
13%
Frei
10
Bewertung
Projekte
8
0%
Schlichtung
3
33%
/
67%
Frist nicht eingehalten
4
50%
Frei
11
Bewertung
Projekte
24
50%
Schlichtung
1
100%
/
0%
Frist nicht eingehalten
6
25%
Frei
12
Bewertung
Projekte
557
35%
Schlichtung
79
32%
/
43%
Frist nicht eingehalten
202
36%
Frei
13
Bewertung
Projekte
5
0%
Schlichtung
2
50%
/
50%
Frist nicht eingehalten
2
40%
Frei
14
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
15
Bewertung
Projekte
11
18%
Schlichtung
0
Frist nicht eingehalten
0
Frei
16
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Ähnliche Aufträge
Project Description I have three detailed CSV files containing: OHLC price data Timestamps Aggregated time & sales data A column called Arrow showing where signals occurred The data was captured using NinjaTrader 8 with NinZa Renko 8:4 bars on the ES market. All arrows are non-repainting and appear on candle close. Objective The goal is to create a NinjaTrader 8 indicator that reproduces the arrows in real-time
I need modifications to an existing MT5 Expert Advisor. Modification 1 EA must be able to run on indices as well as forex , specifically: SP500 US100 US30 No other changes to the current logic Modification 2 Other alterations/notes: Opening breakout range option for 15min or 30 min from session start. 5 min fair value gap (FVG) break outside of the range (instead of 1 min). At least one of the candles must be within
AutoTrade_v4_Arbon-v4
35 - 250 USD
============================================================ GOLD AI INSTITUTIONAL TERMINAL v4.0 - AutoTrade + EA Indikator EDISI GABUNGAN Sinkronisasi MT4 Realtime + Dasbor PWA + AI Multi-TF Menggabungkan MT4 + Server AI Node.js ============================================================ CARA MENJALANKAN (MUDAH): -------------------------- 1. Ekstrak ZIP ke folder manapun (misal: C:\GoldAI\) 2. Buka folder hasil
I am looking for an experienced quantitative developer to analyze and optimize an MT5 Expert Advisor that I have already developed. The EA is relatively complex and includes: Multiple strategies (Trend Pullback, Breakout, Mean Reversion, EMA Reclaim) Scoring system combining technical score and probabilistic filter Regime detection (ADX based) Volatility filters (ATR regime) Correlation and cluster exposure control
Powerful Trend-Following Indicator for MT5
100 - 250 USD
Hello traders, I have developed a high-performance trend-following indicator designed to help traders identify trend direction changes and precise entry points in the market. 🔹 Key Features: Detects trend direction changes early Provides clear buy and sell signals Shows accurate entry points Built with a stable architecture that does not repaint Suitable for different trading styles and market conditions Easy to use
Until zone detection is coded , you will be from that point . Trailing Stop Optimization for live chart . Apply with Specific Currency Support . Clean Code . Zone Upper Limit and Lower Limit . Apply with careful understanding of the project requirement
MT5 Trading Bot Developers (Professional Version)
30 - 200 USD
Subject: Professional MT5 Trading Bot Inquiry - Pre-Purchase Requirements Dear [Bot Name/Company Name] Developers, Greetings, I am a professional trader seeking a highly professional and extremely powerful MT5 trading bot , and after extensive research, your product has caught my attention. However, before I click the payment button, I have specific requirements as I am not looking for an ordinary bot, but rather a
hello, please take a moment to review my project. It is for Quanttower. it is very detailed in the instructions. Thank you, Just let me know if you can do it and the whats the cost and timeframe
GoldAI_v2_FINAL
30 - 70 USD
========================================================== Terminal Institusional GOLD AI v2.10 Sinkronisasi Realtime MT4 + Dasbor PWA + AI Multi-TF ========================================================== CARA MENJALANKAN (MUDAH): -------------------------- 1. Ekstrak ZIP ke folder manapun (misal: C:\GoldAI\) 2. Buka folder hasil ekstrak 3. Klik dua kali: INSTALL.bat → installotomatis 4. Klik dua kali
Exe source code
70+ USD
Need a developer to help with a exe file and provide the source code, if you can do this please kidnly apply and tell me what you need to get this started
Projektdetails
Budget
30+ USD