Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 991
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Thank you too! And bothering right away! Suddenly the navigator has expanded to the full width of the screen and obscured all the charts! Do you know how to get it back to its normal size, like Market Review?
I tried to copy it to show you, but it doesn't work! I'll explain:
I don't know what to do! Seems to have tried everything, only open/close in help. There's no hint that it might suddenly expand wide, obscuring the charts.Maxim, it's difficult for me to advise you. Alternatively, try restarting the terminal and computer. If it's just a glitch, maybe this will help.
I usually save a terminal profile for such purposes, which I then restore from. Try loading the default profile from there.
Maxim, it's difficult for me to advise you. Alternatively, try restarting the terminal and computer. If it's just a glitch, it might help.
I usually save a terminal profile for such purposes, from which I then restore. Try loading the default profile from there.
Thank you, Sergei! Allow me to introduce myself, Boris!
Nice to meet you, Boris! : )) I stand corrected.
Hello!
I found a good Expert Advisor (according to the tester) and ran it on the demo and it is losing money in the Japanese session.
If you know the code, how to make it run at a certain time and at a certain time to close all my orders and then exit.
Also a place where to insert this code.
Thank you in advance!
Thank you!
Hello!
I found a good EA (from the tester) and ran it on the demo and it is losing money in the Japanese session.
If you know the code, how to make it run at a certain time and at a certain time to close all my orders and then exit.
Also a place where to insert this code.
Thank you in advance!
The code will make the EA 'silent' at certain times.
Insert this code into your EA:
extern HourStart=0; // The hour of the start of the session to be skipped
///
extern HourEnd=0; // End of the session which must be skipped//+------------------------------------------------------------------+
int start()
{
if(Hour()>=HourStart)
{
{ if(Hour()<=HourEnd)
{
return(0);
}
//Paste this code (above) in front of your EA.
}// your EA body
}
//+------------------------------------------------------------------+
How, elegantly, can you describe the same thing? Something is breaking 96 times, describing the same thing.
Thank you!
The code will make the EA 'silent' at certain times.
paste this code into your EA:
extern HourStart=0; // The hour of the beginning of the session to be skipped
///
extern HourEnd=0; // End of the session which must be skipped//+------------------------------------------------------------------+
int start()
{
if(Hour()>=HourStart)
{
{ if(Hour()<=HourEnd)
{
return(0);
}
//Paste this code (above) in front of your EA.
}// your EA body
}
//+------------------------------------------------------------------+
Thank you very much!
It would also close orders...