I'm looking for a robot to operate brazil stocks in the swing trade module only on the daily chart, in the high and low strategy, more details follow below.

İş tamamlandı

Tamamlanma süresi: 18 saat

İş Gereklilikleri

olá boa tarde venho através dessa plataforma encomendar um robô para operar ações em swing trade  somente no tempo gráfico diário

na estratégia máximas e mínimas segue abaixo um exemplo do código do robô que esta em outra linguagem que não e a padrão do MT5, 

quero esse robô travado para operar somente no tempo gráfico diário mais a parte do texto que esta em vermelho quero liberada para eu realizar as mudanças que quiser

agradeço desde já a quem se interessar a fazer esse trabalho.

-------------------------------------------------------------------------------------------------------------------------------------------------------------

hello good afternoon I come through this platform to order a robot to trade stocks in swing trade only on the daily chart time in the maximum and minimum strategy, below is an example of the robot code that is in a language other than the MT5 standard, I want this robot locked to operate only on the daily timeframe plus the part of the text that is in red I want it released so I can make the changes I want Thanks in advance to anyone interested in doing this work.

-------------------------------------------------------------------------------------------------------------------------------------------------------------

input

  pentrada(1);    //Número de barras para serem analisadas entrada;

  palvo(1);       //Número de barras para serem analisadas para alvo;

  stopnbarra(3);  //Número de barras para sair do trade ao utilizar stop no tempo;

  stoptempo(1);   //Utilizar stop no tempo:                           1 - sim; 2 - não;

  flucro(1);      //Ecerrar posição no primeiro fechamento no lucro:  1 - sim; 2 - não;

  dt(1);          //Encerrar a operação como daytrade:                1 - sim; 2 - não;


  //Configurações de KeltnerCh

  kchperiodo(20); //Período do Canal de Keltner;

  kchdesvio(0.20); //Desvio  do Canal de Keltner;

  kchtipo(0);     //Método de cálculo do Keltner: 0-Aritmético; 1-Exponencial; 2-Welles Wilder; 3-Ponderada;


 

//------------------------------------------------------------CÓDIGO-------------------------------------------------------------

// NÃO MEXER NO CÓDIGO ABAIXO

//------------------------------------------------------------CÓDIGO-------------------------------------------------------------

  var

    nbarra : integer;

    a      : float;

  

  begin

       if (IsBought=true) or (IsSold=true) then

       begin

       if (buyposition = 1) then

      begin

        

        if (TIME >= HF) and (dt=1) then

          begin

            closeposition;

          end;

        

        if (CurrentBar - nbarra > stopnbarra - 1) and (stoptempo=1) then

         begin

            closeposition;

          end;

        

        if (close > buyprice) and (Currentbar - nbarra >= 1) and (flucro=1) then

          begin

            closeposition;

          end;

          SellToCoverLimit(highest(high,palvo));

      end;

    if (sellposition = 1) then

      begin

        

        if (TIME >= HF) and (dt=1) then

          begin

            closeposition;

          end;

        if (CurrentBar - nbarra > stopnbarra - 1) and (stoptempo=1) then

          begin

            closeposition;

          end;

        if (close < sellprice) and (Currentbar - nbarra >= 1) and (flucro=1) then

         begin

           closeposition;

          end;

        BuyToCoverLimit(lowest(low,palvo));

      end; 

    end


    else if (IsBought=false) and (IsSold=false) and (TIME < HLA) then

      begin

        if (close > KeltnerCh(kchdesvio,kchperiodo,kchtipo)|0|) //FECHAMENTO ACIMA DO KELTNER SUPERIOR

        and(close > KeltnerCh(kchdesvio,kchperiodo,kchtipo)|1|) //FECHAMENTO ACIMA DO KELTNER INFERIOR

        then

          begin

            buylimit(lowest(low,pentrada));

            nbarra := CurrentBar;

          end;

        if  (close < KeltnerCh(kchdesvio,kchperiodo,kchtipo)|0|) //FECHAMENTO ABAIXO DO KELTNER SUPERIOR

        and (close < KeltnerCh(kchdesvio,kchperiodo,kchtipo)|1|) //FECHAMENTO ABAIXO DO KELTNER INFERIOR

        then

          begin

            SellShortLimit(highest(high,pentrada));

            nbarra := CurrentBar;

          end;

      end;

 end;

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(47)
Projeler
79
11%
Arabuluculuk
4
25% / 75%
Süresi dolmuş
2
3%
Serbest
2
Geliştirici 2
Derecelendirme
(33)
Projeler
54
22%
Arabuluculuk
2
50% / 0%
Süresi dolmuş
13
24%
Çalışıyor
3
Geliştirici 3
Derecelendirme
(11)
Projeler
17
59%
Arabuluculuk
2
0% / 100%
Süresi dolmuş
2
12%
Serbest
4
Geliştirici 4
Derecelendirme
(24)
Projeler
35
11%
Arabuluculuk
0
Süresi dolmuş
2
6%
Serbest
5
Geliştirici 5
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(22)
Projeler
25
4%
Arabuluculuk
0
Süresi dolmuş
5
20%
Serbest
7
Geliştirici 7
Derecelendirme
(259)
Projeler
420
38%
Arabuluculuk
86
44% / 19%
Süresi dolmuş
70
17%
Meşgul
8
Geliştirici 8
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
9
Geliştirici 9
Derecelendirme
(42)
Projeler
88
14%
Arabuluculuk
30
30% / 57%
Süresi dolmuş
36
41%
Çalışıyor
Benzer siparişler
Crie um indicador para mt5 que mostre no gráfico de candlesticks alguns sinais com alguns requisitos: A base do indicador são trêsmédias onde os sinais de compra só serão mostrados acima dessas duas médias, e o de venda abaixo dessas 3 médias: Média móvel de 9 períodos simples calculada aplicada a "median Price (HL/2);Média móvel simples 20 períodos azul com 2 de espessura; média móvel 200periodos vermelha com 3 de
Funcionamento do EA: 1) Dois indicadores: Gann-HiLo e Média móvel. 2) As entradas devem acontecer quando os dois indicadores estiverem virados para a mesma direção (várias entradas seguidas, dependendo do contexto). 3) As saídas devem ocorrer pelo take profit, pelo stop loss, ou pela mudança de posição do Gann-Hilo. 4) Não haverá reversões de posição. 5) Somente uma posição por bloco, independente ter ter ganho ou
Robo media movel 30 - 50 USD
Preciso de um ea cruzamento de medias para operar forex e cripto . ea simples com trailing stop e saidas parciais. onde ele deve entrar na vela seguinte ao cruzamento

Proje bilgisi

Bütçe
30 - 100 USD
Geliştirici için
27 - 90 USD
Son teslim tarihi
from 2 to 5 gün