Machine learning in trading: theory, models, practice and algo-trading - page 1859

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
Write the file from the indicator dead number when collecting data from different characters. We've been through this. It didn't work....
First of all it is for the test. Secondly, I didn't check it, but according to the idea if the EA initialized an indicator, it starts to work in parallel, so it must also write data and if you have 100 symbols on 100 indicators, they all will be written, what's the problem?
Firstly, it is for testing. Secondly, I didn't check it, but according to the idea, if the EA initialized an indicator, it starts to work in parallel, and it means that it must also write data and if you have 100 instruments with 100 indicators, they all will be written, what is the problem?
Only if they are attached to the chart, and there is no such a thing... There is only an advisor that refers to the indicator at a certain time..... and no more...
And the indicator will not be able to write the multicurrency. Tested. I think I already said it, because we have moved from this scheme to the advisor... Checked it already....
Only if they are attached to the chart, and there is no such a thing... There is only an advisor that refers to the indicator at a certain time..... and no more...
And the indicator will not be able to write the multicurrency. Tested. I think I already said it, because we have moved from this scheme to the advisor... Checked it already....
So, when you call the indicator through the Handle from the EA, the file operations are cut, right? I have not checked it myself yet.
I need to spar such a tree into a working function in mql, how easy is it to do?
I can't help you here...
I need to spar such a tree into a working function in mql, how to make it easier?
Get into the package and look at the tree)
Get in the bag and look at the tree)
Are you good at parsing in python? I did half of it, I didn't have time to do it yet. There is only some brackets to fill.
No, parsing is always a pain for me) and I'm learning python now) and time is tight...
Let's say I did, but there are not enough closing parentheses, highlighted in red what I need to add. What's the best way to calculate where the brackets are missing and add? Purely logically
Let's say I did, but there are not enough closing parentheses, highlighted in red what I need to add. What's the best way to calculate where the brackets are missing and add? Purely logically
why not replace several if( condition_1 ) if( condition_2 )
to if( condition_1 && condition_2)
it's easier to search for closing parentheses, the code is faster to read, in general, more convenient, imho.