[ARCHIVE]Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Can't go anywhere without you - 5. - page 315
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
Friends!
A global question has arisen
Is it possible to get the tick stream in the terminal on weekends, so that I could write and debug EAs quietly?
I've already got a few tips on how to use it in my trading robot.
i can't use one tick triggering the EA, i need a flow of ticks in a certain range
is there such a thing in nature?
mt4 servers that emulate streaming quotes on weekends ?
Friends!
A global question has arisen
Is it possible to get the tick stream in the terminal on weekends, so that I could write and debug EAs quietly?
I've already got a few tips on how to use it in my trading robot.
i can't use one tick triggering the EA, i need a flow of ticks in a certain range
is there such a thing in nature?
mt4 servers that emulate streaming quotes on weekends ?
tick emulation. I don't know if that's what you need or not. There is also a timer, either with kernel32 or user32, look it up on the forum.
Hello everyone, please help a newcomer.
The question is as follows ... for example I have an indicator and it is drawn in the #property indicator_separate_window, the indicator has two "buffers", it turns out two lines ... my question is how to make an arrow or line in the MAIN window (not the indicator window, but the price chart window) when the lines cross ...?
For example take a regular RSI, how to make a line crossing with zero to display arrows on the price chart ...
Hello everyone, please help a newcomer.
The question is as follows ... for example I have an indicator and it is drawn in the #property indicator_separate_window, the indicator has two "buffers", it turns out two lines ... my question is how to make an arrow or line in the MAIN window (not the indicator window, but the price chart window) when the lines cross ...?
For example take a regular RSI, how to make the line crossing zero to display arrows on the price chart ...
Other indicator on#property indicator_chart_window via iCustom, and there on DRAW_ARROW.
I can't understand the expression:
if number of bars counted =0 anddownloadhistory?downloadhistory is a global logical variable initiallyfalse. What condition does it carry? I would understand if the condition is this
if (counted_bars==0 && downloadhistory == false)
Explain to a beginner, please!
Friends!
A global question has arisen
Is it possible to get the tick stream in the terminal on weekends, so that I could write and debug EAs quietly?
I've already got a few tips on how to use it in my trading robot.
i can't use one tick triggering the EA, i need a flow of ticks in a certain range
is there such a thing in nature?
mt4 server that emulates a stream of quotes on weekends ?
Library.
Section"4.7 Functions to control chart updates".
One more thing:)
There is a ZigZag in the MT4 application in the custom indicators. It has parameters:
What do they stand for?
Vadim, it's not working. Since it's the weekend, I'm studying reading-writing on my own. I am writing two scripts for checking: I put one of them on a seconds timeframe and it generates an array element by element. The second one I send to any pair and it prints this array. So, scripts:
Seconds:
The second script, which prints the array, hangs on any pair already formed:
To be fair, I put
the second for. Looking at the log. At least some values are written at addresses, or rather offsets relative to nAddress: 0-3FF, 7FF-83FF, BFFF-C3FF. For all other ranges - critical error inMemoryWriteInt. I attach history file with seconds candlesticks.
Vadim, it's not working. Since it's the weekend, I'm studying reading-writing on my own. I am writing two scripts for checking: I put one of them on a seconds timeframe and it generates an array element by element. The second one I send to any pair and it prints this array. So, scripts:
Seconds:
The second script, which prints the array, hangs on any pair already formed:
To be fair, I put
the second for. Looking at the log. At least some values are written at addresses, or rather offsets relative to nAddress: 0-3FF, 7FF-83FF, BFFF-C3FF. For all other ranges - critical error inMemoryWriteInt. I attach history file with seconds candlesticks.
Is the test script from the kit working?
You don't need to change the allocated memory size so often. This is a brake. The memory is allocated discretely by 4Kb. Rounded up. This is a mapping feature.
Make a simple test project so that you could check it. What you are publishing is impossible to check. There are too many syntax errors.
I can't understand the expression:
if number of bars counted =0 anddownloadhistory?downloadhistory is a global logical variable initiallyfalse. What condition does it carry? I would understand if the condition is this
if (counted_bars==0 && downloadhistory == false)
Please explain to a beginner!
Let me try it now. When we write
then in all cases these actions will always be performed, because the first two are similar to the third (check, simplify the expression). That is, if they are boolean variables, we don't need to put ==true, ==false, because they are already true or false by themselves.