Delay Indicator

MQL4 脚本

工作已完成

执行时间22 小时
客户反馈
very serious and professional programmer!
员工反馈
All perfectly! Good man!

指定

Hello I need help to change this code.
I wrote the code so as to delay the reading of the conditions after 3 seconds.
I wish that the reading time was between 3 seconds and 25 seconds. If for example the condition occurs after 25 seconds should not appear the arrow of Alert. It's possible?

Greetings Massimo.


#property indicator_chart_window


//--- indicator settings
#property indicator_chart_window
#property indicator_buffers 2

#property indicator_type1 DRAW_ARROW
#property indicator_width1 1
#property indicator_color1 0xFFAA00
#property indicator_label1 "Buy"

#property indicator_type2 DRAW_ARROW
#property indicator_width2 1
#property indicator_color2 0x0000FF
#property indicator_label2 "Sell"

//--- indicator buffers
double Buffer1[];
double Buffer2[];

double myPoint; //initialized in OnInit



//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {   
   IndicatorBuffers(2);
   SetIndexBuffer(0, Buffer1);
   SetIndexEmptyValue(0, 0);
   SetIndexArrow(0, 241);
   SetIndexBuffer(1, Buffer2);
   SetIndexEmptyValue(1, 0);
   SetIndexArrow(1, 242);
  
   
   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 i=0;
      static datetime BarStart=0;
   static bool check=false;
    if(BarStart!=Time[0])
     {
      BarStart=Time[0];
      check=true;
     }
   if(check &&  TimeCurrent()>=Time[0]+3)
     {
      check=false;
      //Check Condition
      if(iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i) > 50
      && iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i+1) < 50 //Relative Strength Index crosses above fixed value
      )
        {
         Buffer1[i] = Low[i] - 30 * Point(); //Set indicator value at Candlestick Low - fixed value
        }
      else
        {
         Buffer1[i] = 0;
        }
      //Indicator Buffer 2
      if(iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i) < 50
      && iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i+1) > 50 //Relative Strength Index crosses below fixed value
      )
        {
         Buffer2[i] = High[i] + 30 * Point(); //Set indicator value at Candlestick High + fixed value
        }
      else
        {
         Buffer2[i] = 0;
        }
     }
   return(rates_total);
  }
//+------------------------------------------------------------------+

反馈

1
开发者 1
等级
(71)
项目
156
44%
仲裁
22
41% / 14%
逾期
16
10%
空闲
2
开发者 2
等级
(586)
项目
1049
49%
仲裁
39
28% / 41%
逾期
49
5%
空闲
3
开发者 3
等级
(91)
项目
144
38%
仲裁
67
15% / 48%
逾期
55
38%
空闲
4
开发者 4
等级
(46)
项目
73
16%
仲裁
13
8% / 92%
逾期
37
51%
空闲
相似订单
Hello, thank you for your interest in my project. I want to develop a simple piece of code in ninjascript that does not exceed 8 lines of code. I will give the details of the code in the messages. the work is urgent Thank you
Need to copy the trades and orders generated by expert advisors from my MT4 platform to eToro broker. Etoro offers a trading API (). This could be used to make the connection to their propietary web platform. If the programmer considers there is more stable and faster way to do it then I'm open to suggestions
I have some specific conditions that i want to check during FVG, OB, BB, MSS, BOS, etc. but lets tell them in private if you will choose to work with me
DON'T REACH OUT IF YOU CAN'T CONVERT STRATEGY ON TRADINGVIEW TO A WELL AUTOMATED EXPERT ADVISOR THAT RUN WITHOUT PROBLEM ON METATRADER 5 Well, I am only looking for a programmer who is proficient in coding and can turn strategy on tradingview to a well customized expert advisor, please reach out if you can work timely on exactly what I just said
I want to pull a fib, with set entry price at a certain percentage, with stopploss set at another percentage of the fib. Risk is set in USD. Risk to match stop loss level. TP is set as ratio to stop loss. Calculate no. of contracts. A hot key for buy and one for sell. Illustration: In settings Inputs: Fib% to be displayed Entry level fib% stop loss fib percentage TP ratio Risk in USD or account percentage Operation
I need help with creating a website traders chatroom, it must show traders online,offline,inactive. the chatroom top section must show four clocks with different times and time scale like this.. the chatroom must have a history data of up to 10days, then longer history must be deleted automatically. if you have better chatroom please say your recommendations
I have a python script that connects MT5 to Deriv for binary trading which is having some bug. It stops executing trades after a while. I need someone to check the code and fix it. Negotiable price

项目信息

预算
10 - 20 USD
VAT (22%): 2.2 - 4.4 USD
总计: 12.2 - 24.4 USD
开发人员
9 - 18 USD
截止日期
 2  5 天