Page 1482 of 2131

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 30, 2022 8:16 am
by pacois
sal wrote: Sat Jan 29, 2022 11:15 pm hi mr.tools/kvak

can you please additonal settings for upper /lower channel
lines shall be refelcted on chart for both prices

if possible on/off button

see snap
open/ close
high /low
Image
Hello, please insert in the chart 2 indicators with the settings you prefer. Thank you. Best regards.

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 30, 2022 4:42 pm
by sal
pacois wrote: Sun Jan 30, 2022 8:16 am Hello, please insert in the chart 2 indicators with the settings you prefer. Thank you. Best regards.
Image
Pacois
I know this and my snap you can see that. but i an interest in a single indicator with buffer

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 30, 2022 8:23 pm
by stereotomy
Hi dear coders.

I found this indi on tradingview, it gives very accurate entry-exit points with the correct settings. Do you think it can be ported to MT4?

https://www.tradingview.com/v/aiYdz8MI/
Alarms would be the cherry on top!

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 6:03 am
by Borshchov A.N.
stereotomy wrote: Sun Jan 30, 2022 8:23 pm Hi dear coders.

I found this indi on tradingview, it gives very accurate entry-exit points with the correct settings. Do you think it can be ported to MT4?

https://www.tradingview.com/v/aiYdz8MI/

Image


Alarms would be the cherry on top!
what kind of accuracy can we talk about if ALL of his signals are unprofitable on your screen ... Do you even understand this yourself?

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 8:51 am
by keys898
Hey Mr.Tools. Is it possible to get alerts for when this enters and exits ob/os levels?

Appreciate it and thank you.

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 10:20 am
by mrtools
keys898 wrote: Fri Jan 28, 2022 5:24 am Would you be so kind as to add MTF if possible. Thank you!
Check here

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 7:56 pm
by stereotomy
Borshchov A.N. wrote: Mon Jan 31, 2022 6:03 am what kind of accuracy can we talk about if ALL of his signals are unprofitable on your screen ... Do you even understand this yourself?
Umm... Well, it is profitable!

The general trend is the shaded area (I marked with squares).

During an uptrend, you buy the red dips.
During a downtrend, you sell the green tops.
You exit the trade when the trend is over.

That's it. How is this NOT profitable? Please explain, maybe I'm missing something, that's very possible.

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 9:07 pm
by sal
i have customized MA on chart with 3 colours (paid) +subwindow is free indicator..

for binary i took 3 trades a test and it win..
5 min expiry for 1min chart
nice

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 9:14 pm
by stereotomy
sal wrote: Mon Jan 31, 2022 9:07 pm i have customized MA on chart with 3 colours (paid) +subwindow is free indicator..

for binary i took 3 trades a test and it win..
5 min expiry for 1min chart
nice
These are the settings I used in D and H4 timeframes. They seem to work well.

Re: MT4 Indicator requests and ideas

Posted: Mon Jan 31, 2022 9:41 pm
by sal
stereotomy wrote: Mon Jan 31, 2022 9:14 pm These are the settings I used in D and H4 timeframes. They seem to work well.

Image
okay , let me try.. if i use m1 chart , the movements are sharp not smooth. i feel like this!!
byw.. i try to check the code for this 3colour ma line and try this works in your system.. not sure. loaded in my account and locked.. so i dont know this is correct full version or not.!

Code: Select all

study(title="5 minute", shorttitle="5 minute", overlay=true)

lenadx = input(15, minval=2, title="5 minute")
lensig = input(15, title="5 minute", minval=2, maxval=51)
limadx = input(19, minval=2, title="5 minute")


up = change(high)
down = -change(low)
trur = rma(tr, lenadx)
plus = fixnan(101 * rma(up > down and up > 0 ? up : 0, lenadx) / trur)
minus = fixnan(101 * rma(down > up and down > 0 ? down : 0, lenadx) / trur)
sum = plus + minus 
adx = 101 * rma(abs(plus - minus) / (sum == 0 ? 1 : sum), lensig)

macol = adx > limadx and plus > minus ? lime : adx > limadx and plus < minus ? red :aqua


len = input(35, minval=2, title="5 minute")
src = input(close, title="5 minute")
out = wma(src, len)
plot(out, color=macol, title="5 minute", linewidth= 4)