Job finished
Execution time 3 minutes
Feedback from employee
Good customer. Thank you for your order!
Feedback from customer
very professional programmer !!!!!
Specification
Hi, I wrote this simple code where the alert will appear after 10 seconds after the opening of the bar. I would like to know if you can have 10 real seconds after the end of the bar and not wait for the start of the new bar. (Time [0]).
//+------------------------------------------------------------------+ //| Delay_Alert.mq4 | //| Copyright 2016, MetaQuotes Software Corp. | //| https://www.mql5.com | //+------------------------------------------------------------------+ //--- 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" int CurrentTime; int extern Period1=2; //--- indicator buffers double Buffer1[]; double Buffer2[]; //+------------------------------------------------------------------+ //| 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[]) { static datetime BarStart=0; static bool check=false; if(BarStart!=Time[0]) { BarStart=Time[0]; check=true; } if(check && TimeCurrent()>=Time[0]+10) { check=false; //Check Condition //Indicator Buffer 1 if(iRSI(NULL, PERIOD_CURRENT, Period1, PRICE_CLOSE, 0) < 40 ) { Buffer1[0] = Low[0] - 10* Point(); } else { Buffer1[0] = 0; } //Indicator Buffer 2 if(iRSI(NULL, PERIOD_CURRENT, Period1, PRICE_CLOSE, 0) > 60 ) { Buffer2[0] = High[0] + 10 * Point(); } else { Buffer2[0] = 0; } } return(0); } //-----------------------------------------------------------------------------------------------------------------------------
Responded
1
Rating
Projects
72
8%
Arbitration
18
11%
/
56%
Overdue
18
25%
Free
2
Rating
Projects
34
29%
Arbitration
0
Overdue
1
3%
Free
3
Rating
Projects
341
58%
Arbitration
7
14%
/
71%
Overdue
9
3%
Free
4
Rating
Projects
218
50%
Arbitration
6
17%
/
67%
Overdue
11
5%
Free
5
Rating
Projects
228
60%
Arbitration
3
33%
/
33%
Overdue
6
3%
Free
Published: 1 code
6
Rating
Projects
314
49%
Arbitration
42
52%
/
19%
Overdue
22
7%
Free
7
Rating
Projects
1462
63%
Arbitration
21
57%
/
10%
Overdue
43
3%
Free
8
Rating
Projects
144
38%
Arbitration
67
15%
/
48%
Overdue
55
38%
Free
9
Rating
Projects
156
44%
Arbitration
22
41%
/
14%
Overdue
16
10%
Free
Published: 10 codes
10
Rating
Projects
564
26%
Arbitration
24
42%
/
38%
Overdue
85
15%
Working
Published: 6 codes
Project information
Budget
10 - 15 USD
Deadline
from 2 to 5 day(s)
