Expert Advisor based on iRSIONARRAY

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

Время выполнения 1 день
Отзыв от исполнителя
great customer... respected human
Отзыв от заказчика
He's a great developer. He is great as a person who fervently serves

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

help me create an expert advisor with the iRSIonarray indicator. Here is the indicator's mql4 code:


//+------------------------------------------------------------------+

//|                                                  iRSIONARRAY.mq4 |

//|                        Copyright 2019, MetaQuotes Software Corp. |

//|                                             https://www.mql5.com |

//+------------------------------------------------------------------+

#property copyright "Copyright 2019, MetaQuotes Software Corp."

#property link      "https://www.mql5.com"

#property version   "1.00"

#property strict


#property indicator_separate_window

#property indicator_minimum    0

#property indicator_maximum    100

#property indicator_buffers 2

#property indicator_plots   1

#property indicator_level1     30.0

#property indicator_level2     70.0

#property indicator_levelcolor clrRed

#property indicator_levelstyle STYLE_DOT

//--- plot RSIOnArray

#property indicator_label1  "RSIOnArray"

#property indicator_type1   DRAW_LINE

#property indicator_color1  clrBlack

#property indicator_style1  STYLE_SOLID

#property indicator_width1  1

//--- indicator buffers

double         RSIOnArrayBuffer[];

double         OSMABuffer[];


input int BarsToCompute = 1000000;

input int OSMAFastPer = 12, OSMASlowPer = 26, OSMASignalPer = 9;

input int RSIPer = 14;


//+------------------------------------------------------------------+

//| Custom indicator initialization function                         |

//+------------------------------------------------------------------+

int OnInit()

  {

//--- indicator buffers mapping

   SetIndexBuffer(0,RSIOnArrayBuffer);

   SetIndexBuffer(1,OSMABuffer);

//---

   return(INIT_SUCCEEDED);

  }

//+------------------------------------------------------------------+

//| Custom indicator iteration function                              |

//+------------------------------------------------------------------+

int OnCalculate(const int rates_total,

                const int prev_calculated,

                const datetime &time[],

                const double &open[],

                const double &high[],

                const double &low[],

                const double &close[],

                const long &tick_volume[],

                const long &volume[],

                const int &spread[])

  {

   int limit = MathMin(BarsToCompute,MathMin(rates_total-1,rates_total-prev_calculated));

   

   for (int i=limit; i>=0; i--)

   {

      OSMABuffer[i] = iOsMA(_Symbol,_Period,OSMAFastPer,OSMASlowPer,OSMASignalPer,PRICE_CLOSE,i);

      RSIOnArrayBuffer[i] = iRSIOnArray(OSMABuffer,0,RSIPer,i);

   }

   

   return(rates_total);

  }

//+------------------------------------------------------------------+




Take profit = 30

Stop loss = 20

The lot = 0.01


We will use for the positions taken the RSI curve of the indicator above.

   

    Checklist for buying:

- H4, RSI> 70

- M30, RSI make a first peak on the line of 70 then a first trough on the line of 30

- H4, RSI is always> 70

- Position statement in M30.


Note:

- Do not take a long position if in step 4 the RSI < 70

- The checklist is valid if RSI > 70 in step 1 and 2 at the same time.  


     

  Checklist for selling:

- H4, RSI <30

- M30, RSI make a first dip on the line of 30 then a first vertex on the line of 70

- H4, RSI is always <30

- Position statement in M30.


Note:

- Do not take a short position if in step 4 the RSI > 30

- The checklist is valid if RSI < 30 in step 1 and 2 at the same time.

Do not forget to put the function that allows you to perform the backtest.

Thank you

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

1
Разработчик 1
Оценка
(36)
Проекты
50
28%
Арбитраж
2
0% / 100%
Просрочено
6
12%
Свободен
2
Разработчик 2
Оценка
(769)
Проекты
1033
44%
Арбитраж
50
8% / 50%
Просрочено
117
11%
Свободен
3
Разработчик 3
Оценка
(39)
Проекты
55
13%
Арбитраж
5
20% / 20%
Просрочено
6
11%
Свободен
4
Разработчик 4
Оценка
(277)
Проекты
334
55%
Арбитраж
14
36% / 29%
Просрочено
1
0%
Свободен
Похожие заказы
Personnal programmer 30 - 31 USD
Hey there! I’m looking for a talented NinjaTrader programmer to partner with on some exciting projects. If you have a knack for NinjaScript and a passion for trading tech, let’s team up! What You Can Expect: A friendly collaboration on diverse projects Fair pay—50/50 split on all earnings An opportunity to dive deep into innovative trading strategies What I’m Hoping You Bring: Experience with NinjaTrader and
MT5 中运行的 EA 的主要任务 : 1 EA 将同时选择两对货币进行交易,包括 AUDUSD 、 EURUSD 、 GBPUSD 、 NZDUSD 、 USDCAD 、 USDCHF 、 USDJPY 、 AUDJPY 、 EURAUD 、 EURJPY 、 GBPJPY 、 GBPNZD 和 GBPCHF ,默认设置 GBPUSD 、 EURAUD 。 2 蜡烛图 的时间 区间 包括 15M 、 30M 、 1H 、 2H 、 4H 或 1D 。对于两对货币中的 每一对而言, 将同时密切观察两个 时间区间图。 也就是说,两对 货币 同时 打开 四个窗口,每对默认设置 15M 和 4H 。 如果 您 不肯定如何 为同一货币对打开两个窗口,请不要考虑接受这项工作 。 3 将使用自主开发的指标 CMA 结合 CCI 预测走势。 在某些特殊情况下 ,将使用 马丁格尔策略进行操作。因此,如果您已经拥有基于 Martingale
Required to develop expert advisory which will work on any pair including crypto , forex, gold, silver, oil, simple stragy which will work on RSI,GRID, take profit, grid distance, start and stop button, only buy and only sell, filter for time frame Like 5m to 4 hr. stop loss and take profit .Detail will be shared once you except order
I have a indicator, mql file. The signals are seen below on a EURNZD H1 chart. Very important to get accurate entries. The signal to trade is the first tic after the the indicator signal paints. I've tried to demonstrate that below. Other than that the EA will have a lot size escalation, an on-screen pip counter, a button to stop taking new trades, SL/TP, and magic number. I would like the indicator to be within the
I would like to create an EA based on the Shved Supply and Demand indicator. you can find the Shved Supply and Demand v1.7 indicator in the following link https://www.mql5.com/en/code/29395 NB: Checks the trading robot must pass before publication in the Market ( https://www.mql5.com/en/articles/2555 ) MQ5 file to be provided
Hi Guys, I am looking to someone that can generate an indicator for MT4 as explained below. Basically I would need that the indicator point out the price that will close my position in stop out/margin call. The indicator should pick automatically the level of trade out for the broker (which can be different from a broker to another broker) It should write (ideally on the bottom on the left) the following information
Mbeje fx 50+ USD
I like to own my robot that why I want to build my own.i like to be a best to every robot ever in the life to be have more money
I need an MT5 EA that can do the following: I have to give the EA a price in advance, when the price is reached the EA has to automatically place a buy stop or sell stop order 0.5 pips below or above the price. Is this possible
Good day, I want someone to help me create a universal news filter with on/off switch, with start and end settings, and drawdown control with magic number of EAs, etc. Thanks
Hello, I am looking for a professional programmer to optimize my existing EA integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. i want it to be an EA that can be trusted to carry trade with the help of chat gpt and also have a very low drawdown

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

Бюджет
30+ USD
Исполнителю
27 USD