Converting TAS-indicator to my Metatrader Platform

Работа завершена

Время выполнения 1 день
Отзыв от исполнителя
Very nice to work with. Clear and concise communication.
Отзыв от заказчика
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!

Техническое задание

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.


Откликнулись

1
Разработчик 1
Оценка
(10)
Проекты
20
15%
Арбитраж
3
0% / 67%
Просрочено
10
50%
Свободен
2
Разработчик 2
Оценка
(54)
Проекты
164
43%
Арбитраж
43
47% / 16%
Просрочено
58
35%
Свободен
3
Разработчик 3
Оценка
(8)
Проекты
9
0%
Арбитраж
6
0% / 100%
Просрочено
4
44%
Свободен
Похожие заказы
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

Информация о проекте

Бюджет
50- USD
Сроки выполнения
до 2 дн.