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
Weird thing, has anyone encountered this problem: when you first start the installed terminal and connect the EA online it trades, but as soon as you reopen the MT4 terminal, the EA stops trading.
The situation is stupid, every time I have to look for terminals of new brokerage companies and keep the terminal open for several days, using "switch to sleep mode" when I shut down the computer, and testing the Expert Advisors by changing basic Moving Average and MACD Sample codes in the editor. The operating system is Win2000 SP4.
And the main question is whether it is possible to teach the Expert Advisor to consider the Pound and Euro forecasts. For example the forecast of Yen nnv=yen, the Expert Advisor performs a buy deal, but the forecasts of GBP with EUR in B show more of a downtrend and it would be correct to perform a sell deal.
if the GBP and EUR today are BBB, then SELL trade is needed.
Strange thing, has anyone encountered this problem: when you first start the installed terminal and connect the EA online it trades, but as soon as you reopen the MT4 terminal, the EA stops trading.
The situation is stupid, every time I have to look for terminals of new brokerage companies and keep the terminal open for several days, using "switch to sleep mode" when I shut down the computer, and testing the Expert Advisors by changing basic Moving Average and MACD Sample codes in the editor. The operating system is Win2000 SP4.
And the main question is whether it is possible to teach the Expert Advisor to consider the Pound and Euro forecasts. For example the forecast of Yen nnv=yen, the Expert Advisor performs a buy deal, but the forecasts of GBP with EUR in B show more of a downtrend and it would be correct to perform a sell deal.
if the GBP and EUR are in BBB today it would need a SELL trade
The problem is in the terminal settings
The situation is stupid, every time I have to search for terminals of new brokerage companies and keep the terminal open for several days at a time, using the "switch to sleep mode" when the computer is off, and the Expert Advisors are tested by replacing the basic Moving Average and MACD Sample codes in the editor. The operating system is Win2000 SP4.
When I run out of hard drive space, I will need to buy a couple of new disks... then a couple of new computers.
Take a good look around you, look at your surroundings, especially at all the buttons in the terminal and especially at the F1 key.
The impression is that nowadays to be a fool is normal, even fashionable and cool. If someone doesn't get it just like you, he's a real fool.
ps. when there's no more space in the flat to accommodate new computers... well... we'll have to get a new flat.
Strange thing, has anyone encountered this problem: when you first start the installed terminal and connect the EA online it trades, but as soon as you reopen the MT4 terminal, the EA stops trading.
The situation is stupid, every time I have to search for terminals of new brokerage companies and keep the terminal open for several days, using "switch to sleep mode" when I shut down the computer, and testing the Expert Advisors by replacing the codes of Moving Average and MACD Sample in the editor. The operating system is Win2000 SP4.
And the main question is whether it is possible to teach the Expert Advisor to consider the Pound and Euro forecasts. For example the forecast of Yen nnv=yen, the Expert Advisor performs a buy deal, but the forecasts of GBP with EUR in B show more of a downtrend and it would be correct to perform a sell deal.
if the GBP and EUR today are BBB, then SELL trade is needed.
the price is final, a trivial task - that means five minutes. chirp, chirp and the script is written.
do you believe in miracles?
Hi all. Who knows how to replace the start time in the conditions with just the 30 Minute chart bars? The problem is that without "&& Minute()==30", just with Hour()==0 eight EAs of a set open eight positions at any time during the first hour from 00.00 to 00.59, and so if ( Hour() == 0 && Minute()==30) for one minute 00.30 positions manage to open 2-3 EAs from eight, they work only one minute. How to make them start like for Hour, during second bar of 30 Minutes from 00.30 to 00.59?
It seems to me the time if ( Hour() == 0 && Minute()== 30) can be conditioned by the number of bar 30M in that day, for example it was the second bar of the first hour, and this if ( Hour() == 0 && Minute()==0) is the first bar of the first hour.
if ( DayOfWeek()==5){/if today is Friday
if ( ????????? ) {// if the second bar is 30Minutes on the chart, which corresponds to the time if ( Hour() == 0 && Minute()==30)
What should be instead of (????????), does anyone know?
All thanks, that's the solution.