Write a new indicator

MQL5 指标

工作已完成

执行时间14 小时
客户反馈
Traders Attention!!!!! Great Programmer!!!!! He has everything to be ONE OF THE BEST!

指定

      Requirements  Specification

1.       Objective: Objective: Write a technical indicator in MQL5 programming language to be used in Expert Advisorr

2.       Indicator name: HiLo Box MTF Indicator

3.       Source Code:

·         .mq5 file must be supplied with the source code (.mq5)

·         . mq5 file must be written in English

·         mq5 file should be all commented as the files are distributed along with the MT5 terminal, example in red:


//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
void OnInit()
  {
//--- check for input value
   if(InpWPRPeriod<3)
     {
      ExtPeriodWPR=
14;
      
Print("Incorrect InpWPRPeriod value. Indicator will use value=",ExtPeriodWPR);
     }
  
else ExtPeriodWPR=InpWPRPeriod;
//---- name for DataWindow and indicator subwindow label
  
IndicatorSetString(INDICATOR_SHORTNAME,"%R"+"("+string(ExtPeriodWPR)+")");
//---- indicator's buffer  
  
SetIndexBuffer(0,ExtWPRBuffer);
  
PlotIndexSetInteger(0,PLOT_DRAW_BEGIN,ExtPeriodWPR-1);
//--- digits  
  
IndicatorSetInteger(INDICATOR_DIGITS,2);
//----
  }
//+------------------------------------------------------------------+
//| Williams’ Percent Range                                          |
//+------------------------------------------------------------------+
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[])
  {
//---- insufficient data
  
if(rates_total<ExtPeriodWPR)
      
return(0);
//--- start working
  
int i=prev_calculated-1;
//--- correct position
  
if(i<ExtPeriodWPR-1) i=ExtPeriodWPR-1;
//---  main cycle
  
while(i<rates_total && !IsStopped())
     {
      //--- calculate maximum High
      
double dMaxHigh=MaxAr(high,ExtPeriodWPR,i);
      //--- calculate minimum Low
      
double dMinLow=MinAr(low,ExtPeriodWPR,i);
      //--- calculate WPR
      if(dMaxHigh!=dMinLow)
         ExtWPRBuffer[i]=-(dMaxHigh-close[i])*
100/(dMaxHigh-dMinLow);
      
else
         ExtWPRBuffer[i]=ExtWPRBuffer[i-
1];
      
//--- increment i for next iteration
      i++;
     }
   //--- return new prev_calculated value
  
return(rates_total);
  }

4.     Description Functioning: The indicator should plotting on the graph the design of a box based on the maximum(high) and minimum (low) prices in accordance with a specific amount of candles and timeframe set by the Trader in the parameters, every time that close one or more candlestick will be deleted the previous box and plotted a new box. The amount of closed candles to be plotted HiLo Box MTF is specified by the Trader in External parameters  

5.     Mode Functioning: FULL and INTERMITTENT

FULL:

 

 

 INTERMITTENT 

 

 

反馈

1
开发者 1
等级
(1855)
项目
3458
88%
仲裁
73
40% / 15%
逾期
265
8%
空闲
2
开发者 2
等级
(549)
项目
826
73%
仲裁
15
53% / 13%
逾期
193
23%
工作中
相似订单
Connect from Mt5 via binary deriv account api I have mt5 indicator, need to connect with binary deriv account through api. If anyone can setup via API then contact me. everything control mt5
Hello I am looking for a developer to create an 50% retracement Indicator of the previous candle . So once a candle close the Indicator is supposed to take the full candle size from high to low and make a 61% and 50% level on that candle and I would like the candle to show until the next previous candle is done creating. After this I would look to create an ea with it possibly
Hi, I have 2 indicators which are based on the super trend , the alerts on indicator (1) does not work at all , and on the other indicator the alerts do not come on time on time, which is kind of delayed. see attached file below
Looking for an experienced developer to modify my existing TDI strategy , want to add filter for Buy and Sell Signals, Arrows are displayed on chart and what only to leave high accurate arrows Source code to be provided
I have the mq5 file, I need a buffer adding to the indicator, so it appears in the data window so I can reference it later in an EA. As the below screenshot shows, there is a median ray line from yesterday (the dashed horizontal line) - I want this value in the data window called Median Ray. I want this to be a single value per day, so todays Median Ray would be 17868, and so on each day. So I want all the Developing
I would like to develop my own indicator on metatrader 4 and tradingview. We would start with a basic version that we would improve later. It is an indicator based on several analyses and which would provide several indications. I am looking for someone who can develop on MT4 and Mt5, initially I would like to do it on mt4 and then on mt5. If you have expertise in pinescript it is a plus because I would like to
I urgently require swift assistance to convert a complex indicator into a fully functional scanner, capable of automatically sending real-time data, alerts, and notifications via email, ensuring seamless integration and prompt delivery of critical information to facilitate informed decision-making and timely action
I need to improve the code of an indicator that is too heavy and slow when running and when used with iCustom in an EA. No other changes to the indicator are requested: the original features of the indicator should remain as theay are. I'll provide the indicator after job acceptance. I request final source code mq5 file. Thank you Regards
I have a mt5 indicator that is working perfectly but I will like to make it an expert advisor to have an automated trade. I will be glad if I can get a well experienced developer to execute this project. Thanks
O TRABALHO CONSISTE NA MUDANÇA DO HISTOGRAMA DO INDICADOR TREDN DIRECTION AND FORCE DSEMA SMOOTHED PARA O HISTOGRAMA DA FOTO ANEXA, OBEDECENDO AS TRES CORES VERDE (UP, VERMELHOR(DOWN) E CINZA(TREND). O MESMO TEM QUE ODECER O MESMO CALCULO E COLORIR DA MESMA FORMA POREM COM HISTOGRAMA DDE FORMATO DIFERENTE

项目信息

预算
30 - 60 USD
开发人员
27 - 54 USD
截止日期
 1  5 天