Converting Tradingview pinescript strategy to a trading bot on MT5

MQL5 Konvertierung

Spezifikation

 Hi There"

I have a simply Tradingview strat in Pinescript, that I'd need you to convert into a mt5 ea.

Below is the details of my Pine Script strategy

It uses CCI with a length of 60, Bollinger Bands with a length of 60, the source is hlc3 and a macd indicator which gets its data from the 1m timeframe

//@version=5
strategy("CCI, Bollinger Bands, MACD Trading Bot", overlay=true)

length = input(60, title="Bollinger Bands Length")
src = input(hlc3, title="Source")
mult = input(2.0, title="Bollinger Bands Multiplier")
basis = ta.sma(src, length)
dev = mult * ta.stdev(src, length)
upper = basis + dev
lower = basis - dev

// CCI
cciLength = input(60, title="CCI Length")
cci = ta.cci(src, cciLength)

// MACD
macdResolution = "1"  // 1-Minuten-Zeitrahmen
[macdLine, signalLine, _] = request.security(syminfo.tickerid, macdResolution, ta.macd(src, 12, 26, 9))
macdCrossUp = ta.crossover(macdLine, signalLine)
macdCrossDown = ta.crossunder(macdLine, signalLine)

// Bedingungen für einen Long Trade
longCondition = (cci < -100 and low <= lower and macdCrossUp)

// Bedingungen für einen Short Trade
shortCondition = (cci > 100 and high >= upper and macdCrossDown)

// Pips Einstellungen
pip = syminfo.mintick * 10
slPips = 3.5 * pip
tpPips = 2.5 * pip

if (longCondition)
    strategy.entry("Long", strategy.long)
    strategy.exit("Take Profit/Stop Loss", "Long", stop=low - slPips, limit=close + tpPips)

if (shortCondition)
    strategy.entry("Short", strategy.short)
    strategy.exit("Take Profit/Stop Loss", "Short", stop=high + slPips, limit=close - tpPips)

// Zeichne Bollinger Bands und CCI auf dem Chart
plot(upper, color=color.blue, linewidth=1, title="Upper Bollinger Band")
plot(lower, color=color.blue, linewidth=1, title="Lower Bollinger Band")
hline(100, "Overbought", color=color.red, linestyle=hline.style_dashed)
hline(-100, "Oversold", color=color.green, linestyle=hline.style_dashed)
plot(cci, title="CCI", color=color.purple, linewidth=2)

Bewerbungen

1
Entwickler 1
Bewertung
(5)
Projekte
5
20%
Schlichtung
0
Frist nicht eingehalten
1
20%
Beschäftigt
2
Entwickler 2
Bewertung
(157)
Projekte
223
22%
Schlichtung
15
60% / 20%
Frist nicht eingehalten
1
0%
Überlastet
3
Entwickler 3
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Arbeitet
4
Entwickler 4
Bewertung
(512)
Projekte
773
63%
Schlichtung
33
27% / 45%
Frist nicht eingehalten
23
3%
Frei
5
Entwickler 5
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
6
Entwickler 6
Bewertung
(60)
Projekte
183
72%
Schlichtung
4
100% / 0%
Frist nicht eingehalten
1
1%
Arbeitet
7
Entwickler 7
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Ähnliche Aufträge
hello i need a professional to convert a fully functioning buy and sell signal strategy on tradingview to EA mt4 , the signals trigger when the bar closed match all conditions , it has a specific calculation for strength of each pair
Attached is a ThinkScript Strategy. I would like to convert it into an Expert Advisor for MQL4. Here is a link of a PineScript code for a similar indicator. This is just to give you additional info about the indicator, hence helping you to convert it from Thinkscript to MQL4
hi. I hv a strategy on tradingview need to convert to MT4/MT5 expert advisor for algo trading. would like to add some tradingview strategy setting to the EA(not included in my tradingview code): recalculate after order is filled, order size: xx% of equity
Only with feedbacks 30 - 100 USD
PINESCRIPT->MQL4 i need a exactly conversion of the file attached to mql4 with source code (i need the source code), obviously as indicator for mt4 let me know your bid and timeline
C onversion from Ninjatrader to Tradingview. This includes thorough testing and debugging to guarantee that the script functions as intended on Tradingview...If you are in for this job kindly bid
Hi, i have a tos script i need converted to Ninja script, but someone who knows both coding. Cant be someone who is just going to paste into chat gpt, it requires more understanding for compatibility
Hi, i have a tos script i need converted to Ninja script, but someone who knows both coding. Cant be someone who is just going to paste into chat gpt, it requires more understanding for compatibility
Hello great developer, I am a trader and I have an existing indicator in pinescript , but I need an expert to translate the specific concepts and functions of Pine Script to MQL4. I have many information to share with you in the comment section, so please if you are capable of handling this project successfully please apply to this order, looking forward to your response
Hello, I am looking for a highly skilled and experienced MT4 developer to assist with transferring a strategy currently coded in Pine Script to MetaTrader 4 (MT4). The project requires a professional who can handle this project successfully. I am looking for a dedicated and professional developer who can deliver high-quality results. If you have any questions or need further details about the project, feel free to
Hello there, I need an experience developer to help me in converting my tradingview strategy to mt5 EA. Let me know of this is something you can handle successfully. Thanks

Projektdetails

Budget
30 - 50 USD
Ausführungsfristen
von 1 bis 2 Tag(e)

Kunde

Veröffentlichte Aufträge7
Anzahl der Schlichtungen0