MTH2014 replied to the topic Trading made REALLY Simple: Coder's Chat in the forum Development 10 years, 3 months ago
Hi Brother, zero divide should involving division operation, while in your code example this is multiplication operation, so the result could be zero but not zero divide error.
From my noob perspective, before that line of code you could make sure by ‘if’ condition like ‘if ( (High – Low) != 0.0 )’ to protect zero result condition
Hope it h…[Read more]
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Please feel free to contact me if you need further explanation, and also inform us your result so we could learn from your experience..best regards
MTH
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Yes Brother, we could use any tools in any charts
this example on how I calculate the r,s,u, periods setting

Hope it help and best regards
MTH
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Hi Brother, in general I learn about tick volume since the beginning of malcomb vsa thread at ff, so this need several years to learn and practice in forward test mode..lol.
And I never trust backtest especially with MT4 strategy tester, so when I learn about how to handle Tick Volume and use it as one of your trading tool, I use it in forward…[Read more]
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Hi Brother, I don’t have anymore the original from mladen since it’s already years ago..
Mladen TVI version is line version and I already share the mq4 for our brother smallcat here ;
http://penguintraders.com/forums/topic/q-a-for-mq4-coding-newbies/page/2/#post-10440
Hope it help and best regards
MTH
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Hi Brother, I don’t have anymore the original from mladen since it’s already years ago..
Mladen TVI version is line version and I already share the mq4 for our brother smallcat here ;
http://penguintraders.com/forums/topic/q-a-for-mq4-coding-newbies/page/2/#post-10278
Hope it help and best regards
MTH
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Hi Brother, I don’t have anymore the original from mladen since it’s already years ago..
Mladen TVI version is line version and I already share the mq4 for our brother smallcat here ;
http://penguintraders.com/forums/topic/q-a-for-mq4-coding-newbies/page/2/#post-10278
Hope it help and best regards
MTH
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Hi Brother, I don’t have anymore the original from mladen since it’s already years ago..
Mladen TVI version is line version and I already share the mq4 for our brother smallcat here ;
http://penguintraders.com/forums/topic/q-a-for-mq4-coding-newbies/page/2/#post-10440
Hope it help and best regards
MTH
MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 4 months ago
If I’m not wrong, you try to set 3 color condition in single index buffer ? you can’t do that. If you change according to current condition, then the new color will override the whole old color of that buffer. For 3 condition colors you need also 3 index buffers, that’s why Simplex use 2 buffers for his ClearMethodSimple indicator in histo…[Read more]
MTH2014 replied to the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Someone asking about , could we use this histo TVI to recognize trend change.. ?
well here we go..

As I already explained so many times, that this is only ‘tool’ just like any other indicators, so you could use ‘her’ whatever you like as long as you know what you do.. and you know what you want to ‘see’ visually..
Hope it help and best…[Read more]
MTH2014 started the topic MTH – MTF Histo Tick Volume Indicator in the forum Indicator discussion 10 years, 4 months ago
Hi Guys.., One of our brother here asking me to renew my Tick Volume Indicator version to match with MT4 build 940 and also need explanation on how to use ‘her’ as your trading tool..
My TVI histo version base on TVI created by Mladen several years ago. I just add some formula to make ‘her’ look more ‘fancy’.. hehehe..
How to use ‘her’ in…[Read more]
MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 4 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, 4 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, 4 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, 4 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 Trading made REALLY Simple in the forum Development 10 years, 4 months ago
Then I will put both Buy-Stop and Buy-Limit..

and yes, you are right there’s no absolute ‘open or close’ in keep moving price value
have a nice weekend brother..
MTH
MTH2014 replied to the topic MTH – Star Skull and Smiley Indicator (lite version) in the forum Indicator discussion 10 years, 4 months ago
Hi Brother.. lol, my old brother from more than 5 years ago..

Nice to met you here.. , feel free to contribute and share your knowledge brother..
May Allah Bless You and your family and friends with healthy, wealthy and strong faith..
Have a nice week end
MTH
MTH2014's profile was updated 10 years, 4 months ago
MTH2014 replied to the topic MTH – Star Skull and Smiley Indicator (lite version) in the forum Indicator discussion 10 years, 4 months ago
Hi Guys.. BE CAREFUL.. Market start to ‘dance’, it’s Luring time… lol..

MTH
MTH2014 replied to the topic Q & A For MQ4 Coding Newbies in the forum Development 10 years, 4 months ago
Thanks G & simplex. So if we have some buffers (arrays), and we use IndicatorCounted(), is it better to check for New Bar coming, then we shift the content of the array ? We add a new space to array for storing the new result later. In this case, we are only work with last (current) candle, which will safe CPU load … or ? Unfortunately TVI by o…[Read more]
- Load More

