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
Can we get a brief retelling of the last 20 pages of the thread? Who is winning?
Can we get a brief retelling of the last 20 pages of the thread? Who wins?
No one, as there are essentially no participants. Everyone is left with their own opinions.
Can we get a brief retelling of the last 20 pages of the thread? Who is winning?
You're the one who came up with it - I'm not suggesting it.
From my practice.
Where is the OOP here? OOP is some corporate requirement during development. and it has little effect on the final result, but it can be very useful (so it seems to me), if one person is found and develops all the classes for the whole project, will not mix up anything, the classes will be natural from the final goal of the project....
Your practice is outdated. And you are entrenched in your documentation, TOR and other dreary design systems. Agile development methodologies are in use now. Do words like Agile, XP mean anything to you? I think not. Here's an interview with an interesting man. He's about your age, but how he thinks and what a non-trivial life experience.
By the way, everyone's arguing etc., why doesn't anyone give simple life examples ?...although maybe I just missed it, the topic is growing very fast.
For example, let's take a frequently repeated single-type action: show/hide certain symbols in a market overview (only forex or only metals, etc.).
Also, if we consider function overloading. Is it possible without OOP? and millions of other things.For these actions, you can write your own functions, and there will be a dozen or more. Further, if they have to be connected to the robot, then firstly, we have to remember all their names, and secondly, we have to connect them all one by one. If they're formatted as a class, we don't have to remember all their names, we just connect them all together in one line. Not only is it faster and more convenient, but intellisense will also work. It's worth using OOP just for the sake of it alone, it's really convenient.
By the way, everyone's arguing etc., why doesn't anyone give simple life examples ?...although maybe I just missed it, the topic is growing very fast.
For example, let's take a frequently repeated single-type action: show/hide certain symbols in a market overview (only forex or only metals, etc.).
Also, if we consider function overloading. Is it possible to use it without OOP? and millions of other things.For these actions, you can write your own functions, and there will be a dozen or more. Further, if they have to be connected to the robot, then firstly, we have to remember all their names, and secondly, we have to connect them all one by one. If they're formatted as a class, we don't have to remember all their names, we just connect them all together in one line. Not only is it faster and more convenient, but intellisense will also work. It's worth using OOP just for the sake of it alone, it's really convenient.
Well, the particular example with functions is not very correct. After all, you can stuff multiple function calls into one wrapper function.
For you, all the examples are not correct.
For you, all the examples are not correct.
Well, a concrete example with functions is not very correct. After all, you can shove calls of multiple functions into one wrapper function.
intellisence will not work, which imposes on the developer the need to either remember all functions by heart with all parameters (which of course is nonsense), or constantly run through the files and look at their descriptions.
A static variable in a function. If the function will be called from different places with different parameters, then for each place and set of parameters we have to make a copy of the function - purely stupid copying - but this is idiotic. With OOP, an object is created, as many objects as needed.