Page 710 of 2045

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 3:37 am
by BambinoFlex
moey_dw wrote: Thu Oct 10, 2019 2:30 am

oh........ u mean mql4 files only for requests?

Yes correct. Sorry, new to all this technical wording. Only mql4 files are allowed correct? I see that the thread is also about “ideas” so I’m guessing the ATRPercent chart line is an “idea”

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 5:37 am
by rogerha
BambinoFlex wrote: Thu Oct 10, 2019 2:08 am Just read that only ex4 files allowed. My mistake, didn’t read the rules.

Regarding my previous post, anyone knows if there’s a ATRP moving average? It’s based on ATR Percent and if it has a percent multiplier even better.

I have searched all over and can’t find anything regarding ATR percent.

Much appreciated.
Have you searched for ATR Channel ?

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 6:36 am
by pacois
string percent_method = input(
defval="MANUAL",
title=percent_method_description,
options=[
"MANUAL",
"ATR005 * X", "ATR010 * X", "ATR020 * X", "ATR050 * X", "ATR100 * X", "ATR250 * X"
]
)

var float percent = input(defval=0.25, title=percent_description, minval=0.0, maxval=99.0) / 100
float percent_multiplier = input(defval=1.0, title=percent_multiplier_description)
if percent_method == "ATR005 * X"
percent := atr(005) / open * percent_multiplier
if percent_method == "ATR010 * X"
percent := atr(010) / open * percent_multiplier
if percent_method == "ATR020 * X"
percent := atr(020) / open * percent_multiplier
if percent_method == "ATR050 * X"
percent := atr(050) / open * percent_multiplier
if percent_method == "ATR100 * X"
percent := atr(100) / open * percent_multiplier
if percent_method == "ATR250 * X"
percent := atr(250) / open * percent_multiplier

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 8:12 am
by BambinoFlex
rogerha wrote: Thu Oct 10, 2019 5:37 am

Have you searched for ATR Channel ?
Yup, I've searched all over the place. ATR channel isn't what I'm looking for. I could be wrong but when I put it on the chart I don't get the same results. Not sure if it has to do with a Percent part of the ATR. In essence, the original coder uses that line as a Pivot Line. Meaning that if price moves x% then most likely a reversal is happening. It could be done with the regular ATR I'm assuming but the original coder uses percentage amounts based on the ATR. ATR percentile rank. Something like that.

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 8:14 am
by BambinoFlex
pacois wrote: Thu Oct 10, 2019 6:36 am string percent_method = input(
defval="MANUAL",
title=percent_method_description,
options=[
"MANUAL",
"ATR005 * X", "ATR010 * X", "ATR020 * X", "ATR050 * X", "ATR100 * X", "ATR250 * X"
]
)

var float percent = input(defval=0.25, title=percent_description, minval=0.0, maxval=99.0) / 100
float percent_multiplier = input(defval=1.0, title=percent_multiplier_description)
if percent_method == "ATR005 * X"
percent := atr(005) / open * percent_multiplier
if percent_method == "ATR010 * X"
percent := atr(010) / open * percent_multiplier
if percent_method == "ATR020 * X"
percent := atr(020) / open * percent_multiplier
if percent_method == "ATR050 * X"
percent := atr(050) / open * percent_multiplier
if percent_method == "ATR100 * X"
percent := atr(100) / open * percent_multiplier
if percent_method == "ATR250 * X"
percent := atr(250) / open * percent_multiplier

So it in essence a an ATR multiplier line? Simply take the ATR period and divide it by the open then multiple that sum by my 1.5 multiplier?

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 8:22 am
by pacois
BambinoFlex wrote: Thu Oct 10, 2019 8:14 am


So it in essence a an ATR multiplier line? Simply take the ATR period and divide it by the open then multiple that sum by my 1.5 multiplier?
Hi, this is a part of the code of the link you sent, which I think concerns the atr, but I can't convert to mt4, maybe MrTool can certainly understand more.

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 8:49 am
by BambinoFlex
pacois wrote: Thu Oct 10, 2019 8:22 am

Hi, this is a part of the code of the link you sent, which I think concerns the atr, but I can't convert to mt4, maybe MrTool can certainly understand more.
Okay thank you for your help. I wish I could communicate better but maybe this would make sense to someone who understands it

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 9:02 am
by pacois
BambinoFlex wrote: Thu Oct 10, 2019 8:49 am

Okay thank you for your help. I wish I could communicate better but maybe this would make sense to someone who understands it
Have patience, slowly you will be able to make yourself understood, as you wish

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 10:13 pm
by cpoolrn
Hi mladen

Would it be possible to add the Heiken ashi (better formula) prices to the Wave trend oscillator 1.5? I sent this request as a DM, but doesn’t show that it was sent. I apologize if I am breaking protocol by this request.

Best,

Chris

Re: MT4 Indicator requests and ideas

Posted: Thu Oct 10, 2019 10:42 pm
by Naughty 77
Dear Mr Tools

Would you kindly be able to add the set of averages list to the following DPO indicator for me, im hoping it can be done and an ex4 file made,would be great

Best regards

Naughty 77