BRLTRADING/BOTICHIMOKU

Spécifications

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 !

Répondu

1
Développeur 1
Évaluation
(30)
Projets
55
22%
Arbitrage
12
67% / 8%
En retard
2
4%
Gratuit
2
Développeur 2
Évaluation
(40)
Projets
86
13%
Arbitrage
29
31% / 48%
En retard
35
41%
Chargé
3
Développeur 3
Évaluation
(250)
Projets
399
38%
Arbitrage
82
41% / 20%
En retard
69
17%
Occupé
Commandes similaires
MagicNumber= (X) MaxSpread= (X) Lot first order= (X) Lot 2nd ordrer= (X) 0=disable Lot 3rd order= (X) 0=disable first order= TP1=fixed by BHP SL1= fixed by BHP TP1= (X) points SL1= (X) points 2nd order= TP2=fixed by BHP SL2= TP1 - (X) points TP2= (X) points 3rd order= TP3=fixed by BHP SL3= TP2 - (X) points TP3= (X) points TrailingStop= enable/disable TrailingStart before= (X) points Trailing step= (X) points visible
Automatic bot 30 - 200 USD
je veux un robot qui fait des trades automatiques a ma place. je n'ai pas d'experience dans le trading je cherche seulement a faire du profit sans nécessairement avoir besoin de trade moi meme sur le marcher
Je souhaiterais un robot de trading similaire au "Gold Stuff EA" (30 USD) sauf qu'il y a quelques modifications à apporter (seulement 2 choses). Les voici : Commentaire - permet au conseiller d'afficher un commentaire lorsqu'il prend un ordre. Trade Buy - activation/désactivation d'un achat. Trade Sell - activation/désactivation d'une vente. Utiliser la couverture - permet au conseiller de négocier dans
Mahamat 299+ 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
Bonjour, Je suis à la recherche d'une personne pouvant me guider dans le choix d'un robot de trading sur la plateforme MQL5. De plus je souhaiterai être accompagné dans le processus d'installation dudit robot. Au plaisir d'échanger avec vous, Paul
$$$$$ 100+ USD
Bonjour cherche robot trader pour crypto et l or Avec de bon resultat a l appui pret a une belle aventure conctacter nous. Hello looking for robot trader for crypto and gold With good results in support ready for a great adventure contact us
bonjour, je suis a la recherche d'une personne qui pourrai me modifier un bot dont il est coder pour être utiliser sur mt5 admiral esclusivement. je voudrais que ce bot puisse être utiliser sur mt4. merci
Bonjour, Avec le robot ci-joint, je voudrais pouvoir régler une valeur négative dans le paramètre "FIRST POSITION TAKE PROFIT", c'est à dire que la première position se ferme à une valeur en perte définit. Est-ce faisable? Merci
Hello, i am looking for a mql5 developper that can code an expert advisor based on Andre Enger work, Harmonic pattern finder V3 . I also added 1 or 2 indicator to help with entry's and exits. Dm me for more informations, i know the method to do the bot, because the creator told it, but i dont have the knowledge in mql5 language
J'ai besoin d'un robot capable de repérer des divergence de RSI et rentré au position en même temps que le prix est situé sur l'une des bornes des bandes de bollinger

Informations sur le projet

Budget
50 - 200 USD
TVA (20%): 10 - 40 USD
Total: 60 - 240 USD
Pour le développeur
45 - 180 USD
Délais
de 1 à 20 jour(s)