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
Well here was an interesting implementation of tick pulse analysis
https://www.mql5.com/ru/code/10912
I have flipped it around, it looks like nonsense... I mean, the idea is interesting and at first glance sensible, but when we deal with reality - tick pulses are in the wrong place and at the wrong time :) And, as the author then correctly pointed out, the indicator is better used to determine the degree of market activity rather than directional tick pulses, which I completely agree with.
Well here was an interesting implementation of tick pulse analysis
https://www.mql5.com/ru/code/10912
I have flipped it around, it looks like nonsense... I mean, the idea is interesting and at first glance sensible, but when we deal with reality - tick pulses are in the wrong place and at the wrong time :) And, as the author then correctly pointed out, the indicator is better used to determine the degree of market activity rather than directional tick pulses, which I completely agree with.
Ticks (and tick history) can be obtained viaCopyTicks- which means that MetaTrader 4 is an outsider in this matter and falls by the wayside. Therefore, ticks are investigated only in MetaTrader 5.
Here you can real-time monitor, ...
Expert Advisor"Impulse" version 1.00 gets history of ticks (viaCopyTicks) in 11 elements and compares the average of last 8 ticks with the average of the last 3 ticks (picture from the first post):
Forum on trading, automated trading systems and trading strategy testing
Impulse
Karputov Vladimir, 2015.07.26 06:27
This is how we calculate the momentum:
The information is displayed on the chart as follows:
Screenshots from MetaTrader trading platform
EURUSD, M1, 2016.02.01
MetaQuotes Software Corp., MetaTrader 5, Demo
Impulse. Comparison of average of last 8 ticks, with average of last 3 ticks
The Expert Advisor"Impulse" version 1.00 gets the history of ticks (throughCopyTicks) in 11 elements and compares the average of the last 8 ticks with the average of the last 3 ticks (picture from the first post of the thread):
The information is plotted like this:
Your calculation shows that the average price during the 11 ticks has changed from 1.2400... to 1.627...?
Where does this volatility occur?
By your calculations it appears that the average price during the 11 ticks has changed from 1.2400... to 1.627...?
Where does this volatility occur?
An error in the calculations. When OnTick() was entered, the EA global variables were not zeroed. The error has been fixed:
Attached Expert Advisor"Impulse"version 1.01