simplex replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 5 months ago
Adaptive Take Profit
I’m referring to @gg53 proposal posted here and here. At the moment, I won’t present the final solution as demanded in his 2nd post, rather take a step back and post an experimental indicator that shows 3 different implementations of his basic Adaptive TP proposal for further conceptual discussion.
The implementations are…[Read more]
simplex replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 5 months ago
Adaptive Take Profit
I’m referring to @gg53 proposal posted here and here. At the moment, I won’t present the final solution as demanded in his 2nd post, rather take a step back and post an experimental indicator that shows 3 different implementations of his basic Adaptive TP proposal for further conceptual discussion.
The implementations are…[Read more]
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 5 months ago
Thanks for clarifying:
Depends on the logic. Just wanted to be sure. From decades of IT development, I have some experience with incomplete or ambiguous requirements specifications. IMO, it makes sense to ask if you’re not sure what your communication partner intended.
s.
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 5 months ago
G:
Do you mean a function that just displays the adaptive TP relative to the current bar, or a function setting an adaptive TP in relation to a given entry price, thus monitoring a certain trade?
s.
simplex replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 5 months ago
Here you are:
Place mqh file in the include folder.
Have fun testing, and any feedback welcome!
s.
simplex replied to the topic Volume Zone Oscillator: Discussion in the forum Indicator discussion 10 years, 5 months ago
Yes:
… and the original article written by Waleed Aly Khalil over here tells even more (quote from the abstract):
The main idea of the VZO was to try to change the OBV to look like an oscillator rather than an indicator
s.
simplex replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 5 months ago
I have it:
Will post it later after some code cleaning.
s.
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 5 months agoThanks:
I came across that a while ago. It seems interesting technically, but IMO, a test phase of 15 days on demo before having to open a live account is not enough to check it out. I certainly will try it when I’m having some more spare time for an intensive test.
s.
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 5 months agoThanks:
And how would a typical process of system development and optimization look like working on your ai.marketcheck.co.uk/Forex platform?
Which is the format an algorithm / network is forwarded to MT after the learning process?
Which limitations do apply regarding number of rows / columns?
Re. optimization: how to avoid over-optimization…[Read more]
simplex replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 5 months ago
Yep, this is obviously true:
IMO, the really interesting question is: how does the else if branch look like? You can exclude division by zero easily by some standard code, but you’ll have to make an individual decision what should be done after the case happened.
s.
simplex replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 5 months ago
Yep, this is abviously true:
IMO, the really interesting question is: how does the else if branch look like? You can exclude division by zero easily by some standard code, but you’ll have to make an individual decision what should be done after the case happened.
s.
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 5 months ago
Hi @VlanFx:
I’m currently reviewing version 1.3 of the EA. In function CalcLot() you have the following line of code:
actualRisk = (100 * minLot * StopLoss * pipValue) / AccountBalance();That variable
actualRiskis never used thereafter. Is it reserved for some future use?s.
simplex replied to the topic Deep Q Forex: Basic Discussion in the forum
Deep Q forex 10 years, 5 months agoLet’s consider I’d like to set up a local Deep Q environment.
What would be my steps to take before integrating to MT4 via Node.js?
Best,
s.
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 5 months ago
My version 1.0 of Volume Zone Oscillator. It consists of a simple indicator file, and an mqh-library which should be placed in the include folder.
In final and practical EA use, there will only be one line of code required:
varName = iiVZO(symb, tf, vzoPeriod, shift);For debugging and optimizing the EA, a simple iCustom() call of the indicator…[Read more]
simplex replied to the topic Trading made REALLY Simple in the forum Development 10 years, 5 months ago
My version 1.0 of Volume Zone Oscillator. It consists of a simple indicator file, and an mqh-library which should be placed in the include folder.
In final and practical EA use, there will only be one line of code required:
varName = iiVZO(symb, tf, vzoPeriod, shift);
For debugging and optimizing the EA, a simple iCustom() call of the indicator…[Read more]
simplex replied to the topic Filtering by Volume in the forum Trading Systems Discussion 10 years, 5 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, 5 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, 5 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, 5 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, 5 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.
- Load More