Converting TAS-indicator to my Metatrader Platform

MQL4 Indicadores Sripts

Trabajo finalizado

Plazo de ejecución 1 día
Comentario del Ejecutor
Very nice to work with. Clear and concise communication.
Comentario del Cliente
Drazen did really a very good job! Very quick, well structured communication via mail and whatsapp, good quality and willingly to listen to questions of this newbie. Recommended!

Tarea técnica

I have got a simple TAS-script indicator, based on RSI and MA, that I use in my Dutch Alex Platform. But now I'd like to use it in Metatrader 4. Who can arrange this quickly for me with quaranteed quality?

I am not technical, so I need a guidance to implement the new script into the platform on my computer. I am new here. You can write me on info@20-80-specialist.nl .

This is the script. Numbers have to be customizable.


{- Filename: Indicator 20-80-specialist}

var
  RSIPeriode, MA1Periode, MA2Periode: integer;
  sRSI, sRSIosc, sZero, sMA1, sMA2: TSeries;
begin
  RSIPeriode := CreateParameterInteger('RSI periode', 1, 999, 5, true);
  MA1Periode := CreateParameterInteger('SMA kort', 1, 999, 8, true);
  MA2Periode := CreateParameterInteger('EMA lang', 1, 999, 13, true);

{ Indicator eigenschappen }
  with Indicator do
  begin
{ Aantal benodigde koersen om eerste indicatorwaarde te berekenen }
    RequiredBars := 5*(RSIPeriode+MA2Periode);
  end;

{ Indicatorberekening }
  sRSI := RSI(Close, RSIPeriode);
  sMA1 := MA(sRSI, maSimple, MA1Periode);
  sMA2 := MA(sRSI, maExponential, MA2Periode);

  sRSIosc := SubtractSeries(sMA1, sMA2);
  sZero := FillSeries(CreateSeries(BarCount), 0);
  Signals := CrossingsToEntrySignals(Crossings(sRSIosc, sZero));

{ lijnen tekenen }
  with CreateLine(sRSIosc) do
  begin
    Name := 'RSIosc';
    Color := clLime;
  end;
  with CreateLine(sZero) do
  begin
    Name := '0';
    Color := clSilver;
    LineContent := lcConstant;
  end;

end.

Looks like the file attached.


Archivos adjuntos:

Han respondido

1
Desarrollador 1
Evaluación
(10)
Proyectos
20
15%
Arbitraje
3
0% / 67%
Caducado
10
50%
Libre
2
Desarrollador 2
Evaluación
(54)
Proyectos
164
43%
Arbitraje
43
47% / 16%
Caducado
58
35%
Libre
3
Desarrollador 3
Evaluación
(8)
Proyectos
9
0%
Arbitraje
6
0% / 100%
Caducado
4
44%
Libre
Solicitudes similares
I’m looking for someone experienced with Think or Swim to create a backtesting script for an in-the-money Iron Condor strategy using options on the SPX. The strategy involves setting up 10 contracts of an Iron Condor with a 10-point spread width and a net credit requirement of $11 per contract. The goal is to backtest the performance over the last three years, focusing on trades where the SPX closes outside a
I currently have a license code that connects to my web server, and I add the account number, client name, and expiration date. I’d like something more automated. Currently I allow clients 10 licenses, but adding for them on my side can get exhausting. I’d like a better solution for myself and clients

Información sobre el proyecto

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