Salaam brother does this repaint at all,l thanks
I don't understand what you mean with a repaint. Perhaps you can give me a better explanation.
Thank you.
does it give signals after candle closes immediately and if the market goes the opposite way of the signal will the indicator change and remove the previous signal and put a new one
Hello sir, I tried this indicator out on my mt4 platform and it does not work at all. I left it on my platform all day and did not get one signal, please advise?
Sir,Is it possible to change the Support/Resistance lines to TF H1,i can change the code if you let me know
the lines of code to change.
This is a good indicator for the way i trade
Thank you.
Sir,Is it possible to change the Support/Resistance lines to TF H1,i can change the code if you let me know
the lines of code to change.
This is a good indicator for the way i trade
Thank you.
extern int Profit_Check = 1;
1 it's means 1 hour, 2 means two hours. and so on. Or you can try to change this code for your pending point:
//--- main loop
for(int i = limit-1; i >= 0; i--)
{
if (i >= MathMin(300-1, rates_total-1-10)) continue; //omit some old rates to prevent "Array out of range" or slow calculation
extern int Profit_Check = 1;
1 it's means 1 hour, 2 means two hours. and so on. Or you can try to change this code for your pending point:
//--- main loop
for(int i = limit-1; i >= 0; i--)
{
if (i >= MathMin(300-1, rates_total-1-10)) continue; //omit some old rates to prevent "Array out of range" or slow calculation
Thank you for your quick response,i check my code.Profit check is already set to =1.My problem is when i change my chart from TF H4 to TF H1
the S/R lines stay at H4 and do not line up with Arrows which do change to H1.
Thank you for your quick response,i check my code.Profit check is already set to =1.My problem is when i change my chart from TF H4 to TF H1
the S/R lines stay at H4 and do not line up with Arrows which do change to H1.
I think you can try to change the period of TF. Try to find this code:
//--- main loop
for(int i = limit-1; i >= 0; i--)
{
if (i >= MathMin(300-1, rates_total-1-10)) continue; //omit some old rates to prevent "Array out of range" or slow calculation
//Indicator Buffer 1
if(Open[i] > iFractals(NULL, PERIOD_H4, MODE_LOWER, i) //Candlestick Open > Fractals
)
{
Buffer1[i] = iFractals(NULL, PERIOD_H4, MODE_LOWER, i); //Set indicator value at Fractals
}
else
{
Buffer1[i] = 0;
}
//Indicator Buffer 2
if(Open[i] < iFractals(NULL, PERIOD_H4, MODE_UPPER, i) //Candlestick Open < Fractals
)
{
Buffer2[i] = iFractals(NULL, PERIOD_H4, MODE_UPPER, i); //Set indicator value at Fractals
}
else
{
Buffer2[i] = 0;
}
//Indicator Buffer 3
if(Open[i] > iFractals(NULL, PERIOD_H1, MODE_LOWER, i) //Candlestick Open > Fractals
)
{
Buffer3[i] = iFractals(NULL, PERIOD_CURRENT, MODE_LOWER, i); //Set indicator value at Fractals
}
else
{
Buffer3[i] = 0;
}
//Indicator Buffer 4
if(Open[i] < iFractals(NULL, PERIOD_H1, MODE_UPPER, i) //Candlestick Open < Fractals
)
{
Buffer4[i] = iFractals(NULL, PERIOD_CURRENT, MODE_UPPER, i); //Set indicator value at Fractals
}
else
{
Buffer4[i] = 0;
}
Change ifractals period 4 hours to 1 hours. Good luck!
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Real Signal:
This indicator provides an easy way to find out the current direction of a pair.
Author: kingkongking