@javaai
Active 10 years, 3 months agosimplex replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
Ok, this is my experimental version of Volume Zone Oscillator.
It contains two different implementations of the VZO algorithm to deal with the effect of an IIR filter that a certain number of precalculated values are required to ensure precise results.
When experimenting with both versions, it’s recommended to set parameter ‘maximum bars’ to a…[Read more]
simplex replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
Ok, this is my experimental version of Volume Zone Oscillator.
It contains two different implementations of the VZO algorithm to deal with the effect of an IIR filter that a certain number of precalculated values are required to ensure precise results.
When experimenting with both versions, it’s recommended to set parameter ‘maximum bars’ to a…[Read more]
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agoHi Peter!
Could you possibly post some more details about the Deep Q environment and your personal experience with it?
In case a group member would like to experiment for himself: which software and runtime environment is required?
Where are download sources?
Is it open source?
Recommended tutorials or other resources?
etc. …You’ve done…[Read more]
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
That’s great, @Emonts:
Please note that not all of my above remarks are necessarily relevant for our EA.
Re. my remark about symbol prefix / suffix, @VlanFx would better decide what to do before you put together some sort of ‘final version’ for the EA. I just wanted to denote that there’s some redundant logic in your function code and the…[Read more]
simplex replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
Thanks, G.:
So for the moment I’ll put together my EMA based version according to my above post, allowing roughly a tolerance of about 0.1 %. This can be achieved at reasonable CPU resource consumption, ans should be precise enough to trade.
s.
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agoJust a quick note. I’ve read the following article this morning: http://www.financial-hacker.com/whites-reality-check/
One short quote:
It gets even more diffcult with machine learning algorithms that optimize weight factors and usually do not produce discarded variants.
Maybe it’s interesting to keep an eye on this ‘White’s Reality Check’ when…[Read more]
simplex replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
Thank you, @smallcat:
This is not what I meant – I coded the ALMA in mq4 a long time ago. What I meant is whether anybody has tried to apply an FIR filter like ALMA to the VZO algorithm instead of the EMA (IIR).
s.
smallcat replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
[ quote=10922]
…. Alternative approach to the above mentioned: use an FIR filter instead of IIR, e.g. an ALMA. Has anybody tried that? s. [/quote] Never test it, but just got a small function that can be converted to mql4 i think : http://www.financial-hacker.com/trend-delusion-or-reality/
double ALMA(double &Data, int Period)
{
double m =…smallcat replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
Never test it, but just got a small function that can be converted to mql4 i think : http://www.financial-hacker.com/trend-delusion-or-reality/
double ALMA(double &Data, int Period)
{
double m = MathFloor(0.85*(Period-1));
double s = Period/6.0;
double alma = 0.0, wSum = 0.0;
int i;
for (i = 0; i < Period; i++){
double w =…smallcat replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
Never test it, but just got a small function that can be converted to mql4 i think : http://www.financial-hacker.com/trend-delusion-or-reality/
<pre style=”box-sizing: inherit; font-size: 13px; font-family: Inconsolata, monospace; border: 1px solid #d1d1d1; line-height: 15px; margin-top: 0px; margin-bottom: 1.75em; max-width: 100%; overflow: auto;…
smallcat replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agoThis is interesting. Some kind of nnea neural network that can be used as a pr3dictor ?
smallcat joined the group
Deep Q forex 10 years, 4 months agosmallcat replied to the topic Volume Zone Oscillator: Discussion in the forum Indicator discussion 10 years, 4 months ago
Happy New Year to all of you, the penguins …
This is nice discussion. I tried to implement the code based on Anti’s idea at other thread :if ((high – low) != 0) { res = (MathAbs(close-open)/(high-low) ) * Vol }
else { res = Vol }I am not sure, it is a right approach or not. And i do not so clear about the code above : if(Close < Close) , …[Read more]
simplex replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 4 months ago
I’d like to come back to this source posted. AFAIK, we do not have a version based on a single function for EA integration yet. I have two different versions of such a function now, following different algorithmic approaches to model the mathematical nature of the IIR smoothing with sufficient precision.
If we want…[Read more]
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 4 months ago
I’ve done a quick and dirty code review now and like to post some remarks for discussion:
EventKillTimer() missing
symbol prefix / suffix is checked inside function getNewsInfoPair(). Better remove this for Penguin EA use (redundant logic!)
panel object is not being deleted while deinitialization
custom enumeration for numeric…[Read more]simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agoThis morning I came across the following article: http://arstechnica.com/science/2015/02/ai-masters-49-atari-2600-games-without-instructions/
The examples mentioned in many articles seem to be attempts to let a Deep Q network learn how to master Atari games without any instruction. I’m no expert in Atari games. At first sight an Atari game…[Read more]
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agoPeter wrote:
Interesting vid! The ‘Theory of Everything’, and physical Unified Field Theory being only a part of it ? Wow – this guy has really got a vision! And all this uncovered by AI algorithms. Forgive me if I’m a bit doubtful about this.
Google brought his company for $400 Million, maybe the saw something of interest.
Back to our ‘simple…
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agosimplex wrote:
Interesting vid! The ‘Theory of Everything’, and physical Unified Field Theory being only a part of it ? Wow – this guy has really got a vision! And all this uncovered by AI algorithms. Forgive me if I’m a bit doubtful about this.
Back to our ‘simple’ FX business. After having lear…[Read more]simplex started the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 4 months agoLatest discussion between Peter and me in the What’s New branch of this group has become too unclear, so I decided to start this forum topic inside the group – should be much easier to follow.
I will start by reposting our latest 2 news posts for a start.
s.
simplex posted an update in the group
Deep Q forex 10 years, 4 months agoInteresting vid! The ‘Theory of Everything’, and physical Unified Field Theory being only a part of it ? Wow – this guy has really got a vision! And all this uncovered by AI algorithms. Forgive me if I’m a bit doubtful about this.
Back to our ‘simple’ FX business. After having learnt a bit more about the general approach, I might see those 52%…[Read more]- Load More