Converting TAS-indicator to my Metatrader Platform

MQL4 指标 脚本

工作已完成

执行时间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
开发者 2
等级
(54)
项目
164
43%
仲裁
43
47% / 16%
逾期
58
35%
空闲
发布者: 1 代码
3
开发者 3
等级
(8)
项目
9
0%
仲裁
6
0% / 100%
逾期
4
44%
空闲

项目信息

预算
50- USD
截止日期
 2 天