gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
The above is the main reason why I want to use iCustom with visual indicator instead of MQH lib.
The MQH can come later, when everything is stable.
G.
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
The above is the main reason why I want to use iCustom with visual indicatorinstead of MQH lib.
The MQH can come later, when everything is stable.
G.
smallcat replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
@Lowphat : May i know what do you mean with “anomalies” ? Could you please explain it ? Did you test the indicator via strategy tester, and check the “visual” option to see how the indicator works on history data (and in realtime too) ? Thanks
smallcat replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
Very nice and clear steps bro
i like to use for instead if while too (i always forget to add i++ or i–, increment or decrement at the end of the while loops, so it is always looping and freeze my mt4). And if you don’t mind, i would like to see the whole code of this … thanks in advance.smallcat replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Just did a back test on EA penguin 1.2 by VlanFx. Tested on EU H4 from 2010-06-30 to 2015-12-11 with spread of 1.5 pips, result is great
Thanks to GG53 and all of you guys ….
smallcat replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Thanks a lot G … and thanks for the great link too
Wow, so many great developments here and at main thread … thanks guys
Edit: ( delete. Content and links is already provided by simplex. Sorry ).
smallcat replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Thanks a lot G … and thanks for the great link too
Wow, so many great developments here and at main thread … thanks guys
Edit:
Found short pdf @FF …[Read more]smallcat replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Thanks a lot G … and thanks for the great link too
Wow, so many great developments here and at main thread … thanks guys
smallcat replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
Thanks a lot brother Kiads, this is a good example for me to understand “OnArray” better …

smallcat replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
msgArray[2] = “Low Volume”; clrArray[2] = Blue; // … etc … msgArray[13] = “Very High Vol < Prev 2”; clrArray[13] = DarkOrange; msgArray[14] = “CAUTION – Ultra High Volume”; clrArray[14] = Red; return(true); }
What will happen when we compile the code (a) without #property strict and (b) with #property strict included? In both cases, our code…[Read more]MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
Hi Brother, forgive me for my noob idea..
1. You could use MA for this averaging , and you could use
double MathAbs(
double value // numeric value
);to make all the calculation in positive value.
for example ;
[Read more]
//for your 1st question
AverageRange{i} = MathAbs ( iMA(Symbol(),NULL,InpAveragePeriod,0,0,PRICE_CLOSE,i)
-…MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
Hi Brother, forgive me for my noob idea..
1. You could use MA for this averaging , and you could use
double MathAbs(
double value // numeric value
);to make all the calculation in positive value.
for example ;
[Read more]
//for your 1st question
AverageRange = MathAbs ( iMA(Symbol(),NULL,InpAveragePeriod,0,0,PRICE_CLOSE,i)
-…MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
Hi Brother, forgive me for my noob idea..
1. You could use MA for this averaging , and you could use
double MathAbs(
double value // numeric value
);to make all the calculation in positive value.
for example ;
[Read more]
//for your 1st question
AverageRange = MathAbs ( iMA(Symbol(),NULL,InpAveragePeriod,0,0,PRICE_CLOSE,i)
-…MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 6 months ago
Hi Brother, forgive me for my noob idea..
1. You could use MA for this averaging , and you could use
double MathAbs(
double value // numeric value
);to make all the calculation in positive value.
for example ;
[Read more]
//for your 1st question
AverageRange = MathAbs ( iMA(Symbol(),NULL,InpAveragePeriod,0,0,PRICE_CLOSE,i)
-…gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
I can understand the “excitement” coming with this Peak&Trough, but please stay focused.
We want the Peak&Trough to be a callable FUNCTION within the EA.
We currently want only one TF – which is H4.
We want the function to use iCustom calls to a viewable indicator, for easy debugging.
MQH, MTF’s, Trend, etc etc…. will come later, after…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Good job!!
Just verify that the external buffers/indexes are accessible to the EA and logic is Ok.
Also, verify that the results according to our base-line results on all 7 Majors, with same params.
Make a function, based on that indie, that returns entry signal to the penguin EA, replacing the current one.
Pls post indie + function…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Good job!!
Just verify that the external buffers/indexes are accessible to the EA and logic is Ok.
Also, verify that the results according to our base-line results on all 7 Majors, with same params.
Make a function, based on that indie, that returns entry signal to the penguin EA, replacing the current one.
Thanks!
G.
gg53 replied to the topic Trading made REALLY Simple in the forum Development 10 years, 6 months ago
This is quite Ok, and all is “forgiven”, especially if it’s YOU….
I’d love to see this DOC, and maybe after compilation with @VlanFx – we’ll make one that suits all, and benfit this community EA.
G.
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Please read this (by Ron Black, 2010): http://www.traders.com/Documentation/FEEDbk_docs/2010/09/Black.html
…and get access to the full article…
A short-cut to making a working Indicator (“translate” others code into MT4):
http://www.traders.com/Documentation/FEEDbk_docs/2010/09/TradersTips.html
Enjoy.
Once the above MT4 is bug-free and…[Read more]
gg53 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 6 months ago
Please read this (by Ron Black, 2010): http://www.traders.com/Documentation/FEEDbk_docs/2010/09/Black.html
…and get access to the full article…
A short-cut to making a working Indicator (“translate” others code into MT4):
http://www.traders.com/Documentation/FEEDbk_docs/2010/09/TradersTips.html
Enjoy.
Once the above MT4 is bug-free and…[Read more]
- Load More