BRLTRADING/BOTICHIMOKU

Tarea técnica

BONJOUR!!

Je suis le Mr. Mauricio.

Jai développe mon robot a 3 ans sur tradingview avec des excellentes résultat , maintenant je voudrais quil soyez développe sur mt5.

INDICATEUR;

il es base sur indicateur ichimoku et MMsimple 200 et MM exponentiel a 50, 


la stratégie est très simples  sinal ichimoku classic, avec SL ou  SL suiveur a 0.5% , TP1.0%  . P ar contre Jai besoin justement dans les paramètres qui je vais envoyer !

en effet je vais envoyer mes paramètres tradingview, il faut  transforme en mt5!

tout les informations et photos Jai vais publie pour une facile compréhension! 


LE CODE SURCE DU BOT ICHIMOKU !!!

il faut justement le modifie pour MT5!!!!

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © Mauriciothanatos // BRLTRADING


//@version=4

study("BOT-ICHIMOKU 02", shorttitle=" BOT-ICHIMOKU 02", overlay=true)

// Criação e Plotagem do Ichimoku //

res = input(title="Time Frame", type=input.resolution, defval="")
TKlength = input(9, "Tenkansen Length", minval=1)
KJlength = input(26, "Kijunsen Length", minval=1)
CSHSlength = input(25, "Chikouspan Length/Horizontal Shift", minval=1)
SBlength = input(52, "SenkouspanB Length", minval=1)
SAlength = input(26, "SenkouspanA Length", minval=1)

TK = avg(lowest(TKlength), highest(TKlength))
KJ = avg(lowest(KJlength), highest(KJlength))
CS = close
SB = avg(lowest(SBlength), highest(SBlength))
SA = avg(TK, KJ)
TKk = security(syminfo.tickerid, res, TK)
KJk = security(syminfo.tickerid, res, KJ)
CSk = security(syminfo.tickerid, res, CS)
SBk = security(syminfo.tickerid, res, SB)
SAk = security(syminfo.tickerid, res, SA)


plot(TKk, linewidth=2, color=#fa04d9, title="TenkanSen")
plot(KJk, linewidth=2, color=#3002fc, title="KijunSen")
plot(CSk, offset=-CSHSlength, linewidth=1, color=#76ff14, title="ChikouSpan")

SenkouA = plot(SAk, offset=CSHSlength, linewidth=1, color=#d1d4dc, title="SenkouSpanA")
SenkouB = plot(SBk, offset=CSHSlength, linewidth=1, color=#434651, title="SenkouSpanB")

fill(SenkouA, SenkouB, color=SAk > SBk ?  #d1d4dc  : #434651, transp=80)

// Criação e plotagem das EMAs //

ema_50   = ema(close, 50)
sma_200  = sma(close, 200)
senkou_A = SA
senkou_B = SB
chikou_S = CS
tenkan_S = TKk
kinjun_S = KJk

plot(ema_50, linewidth=2, color=#ff9800, title="EMA 50")
plot(sma_200, linewidth=2, color=#fde800, title="SMA 200")


//Parametros de Compra

compra = open[0] < senkou_A[25] and close[0] > senkou_A[25] and close[0] > senkou_B[25] and senkou_A[0] >= senkou_B[0]
         and chikou_S[0] > high[25]  and chikou_S[0] > senkou_A[50] and chikou_S[0] > senkou_B[50] and open[0] < close[0]
         and close[0] > tenkan_S[0] and close[0] > kinjun_S[0] and chikou_S[0] > tenkan_S[25] and chikou_S[0] > kinjun_S[25]

plotshape(compra, style=shape.triangleup, color=#76ff14, size=size.tiny, location=location.belowbar, title="BUY", text="BUY", textcolor=#76ff14)
alertcondition(compra, title="BUY P", message=" BUYY!!! {{exchange}}:{{ticker}}")

compra1 = open[0] < tenkan_S[0] and open[0] < kinjun_S[0] and open[0] < senkou_B[25] and open[0] < senkou_A[25] and open[0] < ema_50[0] and open[0] < sma_200[0]
          and close[0] > tenkan_S[0] and close[0] > kinjun_S[0] and close[0] > senkou_A[25] and close[0] > ema_50[0] and close[0] > sma_200[0]
          and senkou_A[0] >= senkou_B[0] and chikou_S[0] > high[25] and chikou_S[0] > senkou_A[50] and chikou_S[0] > senkou_B[50]
          and chikou_S[0] > tenkan_S[25] and chikou_S[0] > kinjun_S[25] and chikou_S[0] > ema_50[25] and chikou_S[0] > sma_200[25]
          //and sma_200[0] > sma_200[5]
 
plotshape(compra1, style=shape.triangleup, color=#76ff14, size=size.tiny, location=location.belowbar, title="BUY+", text="BUY+", textcolor=#76ff14)
alertcondition(compra1, title="BUY + P", message=" BUY +!!! {{exchange}}:{{ticker}}")


//Parametros de Venda

venda = open[0] > senkou_B[25] and close[0] < senkou_B[25] and close[0] < senkou_A[25] and senkou_A[0] <= senkou_B[0]
         and chikou_S[0] < low[25]  and chikou_S[0] < senkou_A[50] and chikou_S[0] < senkou_B[50] and open[0] > close[0]
         and close[0] < tenkan_S[0] and close[0] < kinjun_S[0] and chikou_S[0] < tenkan_S[25] and chikou_S[0] < kinjun_S[25]

plotshape(venda, style=shape.triangledown, color=#b40505, size=size.tiny, location=location.abovebar, title="SELL", text="SELL", textcolor=#76ff14)
alertcondition(venda, title="SELL P", message="SELL!!! {{exchange}}:{{ticker}}")

venda1 = open[0] > tenkan_S[0] and open[0] > kinjun_S[0] and open[0] > senkou_A[25] and open[0] > senkou_B[25] and open[0] > ema_50[0] and open[0] > sma_200[0]
         and close[0] < tenkan_S[0] and close[0] < kinjun_S[0] and close[0] < senkou_B[25] and close[0] < ema_50[0] and close[0] < sma_200[0]
         and senkou_A[0] <= senkou_B[0] and chikou_S[0] < high[25] and chikou_S[0] < senkou_A[50] and chikou_S[0] < senkou_B[50]
         and chikou_S[0] < tenkan_S[25] and chikou_S[0] < kinjun_S[25] and chikou_S[0] < ema_50[25] and chikou_S[0] < sma_200[25]
         //and sma_200[0] < sma_200[5]
 
plotshape(venda1, style=shape.triangledown, color=#b40505, size=size.tiny, location=location.abovebar, title="SELL+", text="SELL+ ", textcolor=#76ff14)

alertcondition(venda1, title="SELL + P", message="SELL +!!! {{exchange}}:{{ticker}}")


merci en avance !

Archivos adjuntos:

Han respondido

1
Desarrollador 1
Evaluación
(32)
Proyectos
57
23%
Arbitraje
12
67% / 8%
Caducado
2
4%
Libre
2
Desarrollador 2
Evaluación
(45)
Proyectos
91
13%
Arbitraje
34
26% / 59%
Caducado
37
41%
Libre
3
Desarrollador 3
Evaluación
(298)
Proyectos
477
40%
Arbitraje
105
40% / 24%
Caducado
81
17%
Trabajando
Ha publicado: 2 ejemplos
Solicitudes similares
Je recherche un développeur MQL5 expérimenté pour créer un Expert Advisor MT5 professionnel destiné aux prop firms type FTMO. Objectif : système totalement automatisé, faible drawdown, protection anti-explosion, rendement régulier, compatible FTMO 1-Step, gestion du risque avancée, objectif long terme : 5 % mensuel minimum avec stabilité. Le cahier des charges complet est joint. Je recherche uniquement des
BéBé Bonheur Sté SCABB SAS Capital 200 000 €- Zone Commerciale Des Mangles – ACAJOU - 97232 LAMENTIN SIRET n° 81203272000011- Code NAF 4778C - Tél 05 96 50 45 25 Manager : José-Charles.sabin@wanadoo.fr +596 0696 28 70 50 _________________________________________________________________________ MESSAGE OFFICIEL À ENVOYER AU DÉVELOPPEUR MQL5 Demande de sélection TRES URGENTE pour un Développeur
Jarvis 30 - 200 USD
Spécifiez vos exigences de spécification ici point par point. Essayez de décrire vos besoins de manière brève et claire, afin que votre développeur potentiel soit en mesure d'évaluer correctement sa complexité et son coût, ainsi que le temps d'exécution requis. Une mauvaise description ou une description trop générique aura pour conséquence un manque d’intérêt pour votre commande, ou que vous passerez beaucoup de
Je possède un robot de Trading sous fichier EX5. J’ai acheté ce robot de Trading à quelqu’un. A aujourd’hui je cherche à obtenir le code source. Comment faire ? actuellement je possède le fichier compilé, mais j’ai besoin du fichier source ( code source )
Objet : Développement d’un Expert Advisor MT5 – Projet ROBOT ENERGY Bonjour, Je vous contacte pour vous confier le développement d’un Expert Advisor MT5 professionnel nommé ROBOT ENERGY . J’ai déjà préparé un cahier des charges complet , clair et structuré, que vous trouverez ci‑joint. Il contient : la logique multi‑unités de temps (H4 → H1 → M15) les règles d’entrée les filtres le calcul automatique du SL / TP le

Información sobre el proyecto

Presupuesto
50 - 200 USD
Plazo límite de ejecución
de 1 a 20 día(s)