BRLTRADING/BOTICHIMOKU

Specifiche

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 !

Con risposta

1
Sviluppatore 1
Valutazioni
(32)
Progetti
57
23%
Arbitraggio
12
67% / 8%
In ritardo
2
4%
Gratuito
2
Sviluppatore 2
Valutazioni
(45)
Progetti
91
13%
Arbitraggio
34
26% / 59%
In ritardo
37
41%
Gratuito
3
Sviluppatore 3
Valutazioni
(296)
Progetti
475
40%
Arbitraggio
105
40% / 24%
In ritardo
80
17%
Occupato
Pubblicati: 2 codici
Ordini simili
Trading 30+ USD
Un stratégie très puissant qui me fait gagner beaucoup d'argent . Veillez rejoindre pour en bénéficier avec moi On est toujours ensemble .Le trading est bien facile avec des stratégies et le paramétrage des indicateurs de temps.On est toujours dedans depuis très longtemps
Copie signal 30 - 100 USD
Bonjour j’ai besoin d’un expert pas un coder IA pour me coder un script qui lis les signaux dans un canal privé Telegram et les répliques dans mon canal personnel
Modifier un Indicateur 50 - 100 USD
J'utilise un indicateur de tendance sur différentes unités de temps. Je souhaite être prévenu (SMS, mail, ou autre à définir) lors d'inversions de tendance pour réagir - ou pas - de manière discrétionnaire
Scalping M5 30 - 250 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
VICTOIRE MASTERCLASS 30 - 200 USD
import ccxt import pandas as pd import numpy as np import talib import time # Configuration exchange = ccxt.binance({ 'apiKey': 'VOTRE_API_KEY', 'secret': 'VOTRE_SECRET_KEY', }) # Paramètres de trading symbole = 'BTC/USDT' timeframe = '1h' montant = 100 # en USDT stop_loss = 0.98 # 2% de perte maximale take_profit = 1.03 # 3% de gain def recuperer_donnees(): ohlcv = exchange.fetch_ohlcv(symbole, timeframe
Je cherche un développeur pour modifier mon robots code source MQ5 je veux cacher le suiveur c'est a dire le trail steps et aussi l'ordre en attente si possible . Je veux qu' il es un bouton d'activation sur le paramètre qui va me permettre de cacher le suiveur ( trail steps ) au yeux des courtiers

Informazioni sul progetto

Budget
50 - 200 USD
Scadenze
da 1 a 20 giorno(i)