Discussion of article "Visual strategy builder. Creating trading robots without programming" - page 19

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
hello .Can you tell me how to use custom indicators to create a robot?
Good afternoon. There is an inbuilt template that shows how to use custom ZigZag indicator
Andrew,hello. I used to use ***, but they stopped supporting it. I see your work as a worthy alternative).
Tell me, how long are such elements as, for example, "New bar", "New tick" maintained in the "True" state after the appearance of the corresponding events?
Or is it necessary to catch the moment of transition of these elements to the "True" state? In other words, if the analysis of a new bar arrival will be checked with a certain delay (let's say, we waited for the fulfilment of several conditions, which also resulted in the arrival of a new bar), will it work? Is it necessary to "snap" the fact of such events with some trigger in order to analyse them over time?
Andrew,hello. I used to use ***, but they stopped supporting it. I see your work as a worthy alternative).
Tell me, how long are such elements as, for example, "New bar", "New tick" maintained in the "True" state after the appearance of the corresponding events?
Or is it necessary to catch the moment of transition of these elements to the "True" state? In other words, if the analysis of a new bar arrival will be checked with a certain delay (let's say, we waited for the fulfilment of several conditions, which also resulted in the arrival of a new bar), will it work? Is it necessary to "snap" the fact of such events with some trigger in order to analyse them over time?
A new bar and a new tick are true only on the first tick of a new bar.
In other cases it is necessary to analyse the start time of the current bar and the current time.
New bar and New truth tick only on the first tick of a new bar.
In other cases it is necessary to analyse the start time of the current bar and the current time.
I understand that if it is necessary to open only one trade on the "New Tick" trigger, it is necessary to insure against opening a series of extra trades while the "New Tick" is TRUE? Or will the new trade only trigger once, on the first detection of the "New Tick" TRUTH?
It depends on your strategy and how you implement it. But in general yes, on one tick usually only one trade is opened, and on the next tick the conditions will not be met. This approach works well in a tester, but for real trading you need to change it in order not to miss trades due to requotes, etc.
It depends on your strategy and the way of its implementation. But in general, only one trade is usually opened on one tick, and on the next tick the conditions will not be met. This approach works great in a tester, but for real trading you need to change it to avoid missing trades due to requotes, etc.
This product can use ichimoku indicator?
Yes, it works with all standard and most custom indicators.