Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 1336

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
And for MT4?
You have a guide for MT4 in your terminal!!!
I don't see how this iCustom can be of any use to me
I don't see how I can use this iCustom
iCustom - Returns the value of the specified custom indicator .
Lack of logic - ERROR!
iCustom - Returns the value of the specified custom indicator .
I understand the principle, how do I write this? Indicator data 1 - My Owl with your iCustom - Write to TXT file.
I certainly understand that intergalactic knowledge may warm your ego on these winter pre-New Year's evenings, but after all, the forum thread is called "for newbies..." (and it's not about poison gas)
I understand the principle, how do I write this? Indicator data 1 - My Owl with your iCustom - Writing to a TXT file.
I certainly understand that intergalactic knowledge may warm your ego on these winter pre-New Year's evenings, but after all the forum thread is called "for newbies..." (and it's not about poison gas).
1. Read the documentation.
2. Do not be rude.
I understand the principle, how do I write this? Indicator data 1 - My Owl with your iCustom - Writing to a TXT file.
I certainly understand that intergalactic knowledge may warm your ego on these winter pre-New Year's evenings, but after all the forum thread is called "for newbies..." (and it's not about poison gas).
I am a beginner - far from a programmer)
Roughly how to save to file I understand, but how to read data from "read the other" - I can't figure out.
Write an indicator that will read the data with iCustom
for starters
Good afternoon, please help with the code.
In general, we need that under the condition when wave 1 SAR crosses wave 2 SAR order is not opened. The problem is in determining exactly 2 previous values of the parabolic wave 1 and 2.
At the moment, part of the code looks like this:
In res further the check is like this:
Thank you in advance!
Guys, help me in my Expert Advisor, I need it to open one trade a day on an instrument. But it only opens one trade on all instruments. Here is the code
int OPEN=1;
if(OrdersTotal())
OPEN=0; //open no more than one order
if(OPEN==1)
{
int ticket1=OrderSend(Symbol(),OP_SELLSTOP,1.5,limit1,10,SL1,TP1,NULL,0,0,clrRed); //open orders
}
Where did the error creep in?
Guys, help me in my Expert Advisor, I need it to open one trade a day on an instrument. But it only opens one trade on all instruments. Here is the code
int OPEN=1;
if(OrdersTotal())
OPEN=0; //open no more than one order
if(OPEN==1)
{
int ticket1=OrderSend(Symbol(),OP_SELLSTOP,1.5,limit1,10,SL1,TP1,NULL,0,0,clrRed); //open orders
}
Where did the error creep in?
everywhere
is the transaction needed at the start of the day or during the day ?