Disliked{quote} All the lines were disappearing,i think there is another indicator is in conflict,i will sort this out,thanks for your prompt reply and your efforts to guide me ,bless you.Ignored
Attached File(s)
2
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedI need the high lo mark of the first 4xH1 candles at market opening, easy to mark manual, but after a while I like an indi to do the mark for me... as a non-coder I could not get the indi together, but I realise that that should be same as first hour H4 hilo.... so I get you firsthourHilo v1.1 from Gumrai, modiied H1 to H4 to my surprise it does not show anything could you tell me what did I do wrong here? UPDaTED: unbelievable logic in the code of the great coder Gumrai, I found what I modified wrongly datetime bartimeplusday=bartime+((24-MarketOpenTime)*PERIOD_H4*15)-1;...Ignored
Disliked{quote} Hi T4Trade. I have this version. You can try this. {image} {file}Ignored
Disliked{quote} hi mate there are lot 4h hi low just search.you can try it and let me know thanks https://www.forexfactory.com/thread/...76#post8481376Ignored
Disliked{quote} oh my God,u r the best,thanks man! my chart is like a fresh breeze ,no clutter ,it is because of on off button indicators. why CPR is not working in your indicator,i want to use CPR lines ,please check,thanksIgnored
Disliked{quote} Hi T4Trade. I check my version. My version don't have CPR. I don't remember I load this version from?. Try this. This version from" babayaga" {file}Ignored
for (int i = 0; i <= 16; i++)
{
double TenCandleOpen;
int bartime = TimeHour(iTime(Symbol(),PERIOD_H1,i));
if (bartime == 10) TenCandleOpen = iOpen(Symbol(),PERIOD_H1,i);
}
Print("10 am Candle Open Price is: ",TenCandleOpen); DislikedNeed Help in this code given below: I need 10 am Candle's (H1 time frame) Open price from the last 17 candles only. I tried following code but it is giving only zero value. (my current server time is 23:02, which means my 10 am candle is there within last 17 candles). Please help. for (int i = 0; i <= 16; i++) { double TenCandleOpen; int bartime = TimeHour(iTime(Symbol(),PERIOD_H1,i)); if (bartime == 10) TenCandleOpen = iOpen(Symbol(),PERIOD_H1,i); } Print("10 am Candle Open Price is: ",TenCandleOpen); Thank you.Ignored
Disliked{quote} I wrote an indicator for the test. You can take the code from it. {file}Ignored
DislikedNeed Help in this code given below: I need 10 am Candle's (H1 time frame) Open price from the last 17 candles only. I tried following code but it is giving only zero value...Ignored
Disliked{quote} It was not specified for which language. Although, I could have guessed - TimeHour is only in mql4.I just try to use universal functions for mql4 and mql5. For MT4, you just need to specify a different structure name. {file}
Ignored
Disliked{quote} I suspect you're not using the strict property, and are modelling your code off old indicators that don't use it. When you start a new indicator template in mt4, the strict property is there by default, dont delete it......Ignored
Disliked{quote} Circled_Square_v1.01 - udpated line drawing, so lines can end closer to the chart edges instead of multiples of circle diameter - less objects {image} {file}Ignored
DislikedIs there an indicator that will plot a line on the chart from the low (and or high) from the 10th candle prior to the current candle. In other words it would be a moving line. If possible the user should be able to set the prior candle. If you do not know of an indicator would it be possible to code one please.Ignored