Disliked{quote} I am using version v2.7, these are the images of the configuration. (Forexfactory won't let me load the .set file). Grateful for your responses. {file} {image} {image} {image} {image}Ignored
Grid - New indicator that replaces chart grid 60 replies
From Zero to Hero ? Trade with balance $2,3 3 replies
Grid (not grid system) or horizontal lines indicator 6 replies
Zero to Hero - £250 to £2500 in one week 7 replies
Disliked{quote} I am using version v2.7, these are the images of the configuration. (Forexfactory won't let me load the .set file). Grateful for your responses. {file} {image} {image} {image} {image}Ignored
DislikedAnother problem with Fleksy The Dragon is time management, that doesn't working. Please, fix it. {image} {image}Ignored
bool Time_to_Trade()
{
datetime current_time = TimeCurrent();
int weekday, hour, minute, second;
weekday = DayOfWeek();
hour = TimeHour(current_time);
minute = TimeMinute(current_time);
second = TimeSeconds(current_time);
if(Restricted_Working_Time)
{
if(weekday * 86400 + hour * 3600 + minute * 60 + second >= StartDay * 86400 + StartHour * 3600 + StartMin * 60 + StartSec
&& weekday * 86400 + hour * 3600 + minute * 60 + second <= StopDay * 86400 + StopHour * 3600 + StopMin * 60 + StopSec)
return(true);
else
return(false);
}
else
{
return(true);
}
} Disliked{quote} Haven't tested it, but try change the function Time_To_Trade into: bool Time_to_Trade() { datetime current_time = TimeCurrent(); int weekday, hour, minute, second; weekday = DayOfWeek(); hour = TimeHour(current_time); minute = TimeMinute(current_time); second = TimeSeconds(current_time); if(Restricted_Working_Time) { if(weekday * 86400 + hour * 3600 + minute * 60 + second >= StartDay * 86400 + StartHour * 3600 + StartMin * 60 + StartSec && weekday * 86400 + hour * 3600 + minute * 60 + second <= StopDay * 86400 + StopHour * 3600 + StopMin...Ignored
Disliked{quote} Haven't tested it, but try change the function Time_To_Trade into: bool Time_to_Trade() { datetime current_time = TimeCurrent(); int weekday, hour, minute, second; weekday = DayOfWeek(); hour = TimeHour(current_time); minute = TimeMinute(current_time); second = TimeSeconds(current_time); if(Restricted_Working_Time) { if(weekday * 86400 + hour * 3600 + minute * 60 + second >= StartDay * 86400 + StartHour * 3600 + StartMin * 60 + StartSec && weekday * 86400 + hour * 3600 + minute * 60 + second <= StopDay * 86400 + StopHour * 3600 + StopMin...Ignored
DislikedHello everyone, how to configure the advisor from signal to signal of the indicator so that it worksIgnored
Disliked1.facing small problems the ea 2.7 when added to chart it immediately place two trades buy & sell at the same please i need help on this 2.the TP when adjusted below 15pips it does not work only the grid stepping is working correctly {image}Ignored
Disliked{quote} Seems to work without any problems ? Just made a test using these params. No trades before 08:00 And no new series after 16:00 {image} {image} {image}Ignored
Disliked{quote} ok, fraggli, this is the set just to check that the time management is not working. please, send me your set, probably I do something wrong. thank you {file}Ignored
Disliked{quote} And for the closing, I changed your sample set to Weekday Stop to MON and enabled BB indi; also works without any problems, didn't open any new series after MON 16:00 {image}Ignored