[Archive!] Writing an advisor for free - page 24

 
granit77 >>:

Уже.

Когалы́м — город в Сургутском районе Ханты-Мансийского автономного округа Тюменской области. (с)


I know where my town is!

What does this have to do with my family...??

 

If the subject is still valid please help with an EA, I need it to open an order when:


EMA (8, close) crosses SMA (26, close) from bottom to top, for sell respectively the opposite.

CCI (55, close) should be ( X)

CCI (34, close) must be ( Y)

RSI (26, close) must be ( Z)

X Y Z parameters adjustable (i.e. shown in the EA parameters)


and lot, TP, SL as usually configurable.

 
Gentlemen programmers! Would anyone be willing to write an Expert Advisor for free?
I have a simple strategy that uses only two indicators, but it shows great results on almost any pair.
Unfortunately, I am not always in front of my computer, so I miss a lot of good signals. If somebody is ready to write some code, I will send you the description.
E-mail me at: allwell@li.ru
 

Hello

If there are people here who can write an EA using two MACDs and MAs (a worthwhile idea), email vadym-1989@mail.ru
I will send a description in response to your message

 
rustein >>:

Всем.

Если ТС основана на индикаторах, пишите, сделаю бесплатно.

write your email address so I can contact you

 
Kogalym >>:

Напишите пожалуйста советник по индикатору!

1.Стрелка вверх - закрываем все SELL и открываем ордер на покупку!

2.Стрелка вниз - закрываем все BUY и открываем ордер на продажу!

3.При убытке, каждые 50 пунктов открывать ордер в том же направление с удвоенным объемом!

И еще желательно параметры индикатора, начальный лот, коэффициент увеличения и шаг для открытия удвоенного ордера вынести!

Заранее спасибо, тому кто возьмется =)

Прикрепляю индикатор

The indicator is overdrawing.

 
What's stopping everyone who wants to get the code from posting the ToR here? The probability of getting the code then increases (if you post the ToR).
 
StatBars писал(а) >>
What, all who want to get a code prevent to put TK here? >> The probability of getting the code then increases (if you post the ToR).

What is TK? :)

 

About the same as KC. :)

 

Hello. I found an interesting RSI in Rulang. I would like to rewrite it in MQL4, but I am not too smart.

I want to rewrite it in MQL4 but I can't find it in my head...

variable : dc_U($data), dc_D($data), U($data), D($data);
n = inparam("RSI period", 1, 100, 14);
mr = inparam("RSI calculation method (1-s/2-e)", 1, 2, 2);
n1 = inparam("RSI averaging period", 1, 100, 1);
mru = inparam("averaging (1-s/2-e)", 1, 2, 1);
Tu = inparam("Level 1", 0, 100, 30);
Bu = inparam("Level 2", 0, 100, 70);
dc=c-ref(c,-1);
if (dc >=0) then dc_D=dc; else dc_U=dc;
if mr=1 then
begin
U=mov(dc_U,n,s);
D=mov(dc_D,n,s);
end;
if mr=2 then
begin
U=(ref(U,-1)*(n-1)+ dc_U)/n;
D=(ref(D,-1)*(n-1) + dc_D)/n;
end;
if (D<>0) then
if (1+U/D)<>0 then
begin
if mru=1 then MyRSI=mov(100/(1+U/D),n1,s);
if mru=2 then MyRSI=mov(100/(1+U/D),n1,e);
end;
MyRSI;
Tu;
Bu;