Page 1656 of 2041

Re: MT4 Indicator requests and ideas

Posted: Sat Sep 24, 2022 2:55 pm
by Jedidiah
mrtools wrote: Sat Sep 24, 2022 2:04 pm This is a dynamic zone step oma, indicator has a choice of using heiken ashi smoothed bars or regular value chart bars, the step oma has value filter and or price filters also has limited bar display, which is kind of funky, but it still seems to work as long as you don't go too low with the amount of bars.
Image
A very valuable request.
Looking forward to Dear Mr Tools adding alerts and arrows to the dz step oma value chart.

Candle crosses DZ squeeze up line (yellow) upwards with an alert and arrow
Candle crosses DZ squeeze up line (yellow) downwards with an alert and an arrow
Candle crosses DZ squeeze down line (yellow) downwards with an alert and arrow
Candle crosses DZ squeeze down line (yellow) upwards with an alert and arrow

as well as
Candles entering above 0 line to sound the alarm.
Candles entering below 0 line to sound the alarm

Grateful

Re: MT4 Indicator requests and ideas

Posted: Sat Sep 24, 2022 9:01 pm
by alpha24
mrtools wrote: Sat Sep 24, 2022 2:11 pm Can make a for sure non-repainting version, probably in the regular loop would be around 3 lines of code then if you like it can add mtf to it, hate adding mtf to a repainting indicator.
sure sir please go ahead as you like.

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 25, 2022 11:21 am
by mrtools
alpha24 wrote: Sat Sep 24, 2022 9:01 pm sure sir please go ahead as you like.
Posted a version here Adx indicators

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 25, 2022 1:10 pm
by oskar656
chickensword wrote: Fri Sep 23, 2022 10:59 am oh then i dont know what you mean
It looks like the differences between both channels with the displacement is related to repainting nature of Xard semafors. I think I can backtest and work with the indicator as it is for now. However if you think it can be changed and show both channels at the same time I would appreciate it.

Thanks for your comments.

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 25, 2022 9:19 pm
by Tradehunter
Hello Mr Tools
Can you have a look at this indi.
It alerts non stop during the last minute of every hour.
I have it on the hourly and alerts are on current.
Maybe I will just turn the sound off if you cant find anything.

Thanks!

Re: MT4 Indicator requests and ideas

Posted: Mon Sep 26, 2022 12:53 am
by alpha24
mrtools wrote: Sun Sep 25, 2022 11:21 am Posted a version here Adx indicators
Thank you very much sir,
another small request please is it possible to use same technique in MACD?

Re: MT4 Indicator requests and ideas

Posted: Mon Sep 26, 2022 1:39 am
by mrtools
Tradehunter wrote: Sun Sep 25, 2022 9:19 pm Hello Mr Tools
Can you have a look at this indi.
It alerts non stop during the last minute of every hour.
I have it on the hourly and alerts are on current.
Maybe I will just turn the sound off if you cant find anything.

Thanks!
dsl obv 1.2.ex4
That indicator wasn't done by me so don't have the source code for it.

Re: MT4 Indicator requests and ideas

Posted: Mon Sep 26, 2022 4:57 am
by pantera
Could someone convert this indicator from Tradingview to MT4?

https://www.tradingview.com/script/3MJA ... ry-strong/

It is also know as the "Never Loss" indicator. I've used in in Tradingview (on M15) and it gives excellent signals.

Thank you!

Code: Select all

 1
  2   ///INDICATOR WBORSA - V1 - COMPLEX - 
  3   study("nonoiraq", shorttitle="never loss")
  4
  5
  6
  7   //area 2
  8   a2_top =input(4.5)
  9   a2=input(4)
10   li1=plot(a2_top,"Area 2 High",color=black)
11   li2=plot(a2, "Area 2 Low",color=black)
12   fill(li1,li2, color=white)
13
14   //area 1 
15   a1_top=input(3.5)
16   a1 = input(2.5)
17   li1_a1=plot(a1_top,"Area 2 High",color=black)
18   li2_a1=plot(a1, "Area 2 Low",color=black)
19   fill(li1_a1,li2_a1, color=#f44336)
20
21   //area -1
22   am1_top = input(-2.5)
23   am1 =  input(-3.5)
24   li1_m1=plot(am1_top,"Area 2 High",color=black)
25   li2_m1=plot(am1, "Area 2 Low",color=black)
26   fill(li1_m1,li2_m1, color=#09fa28)
27
28   //area -2
29   am2_top =  input(-4)
30   am2 = input(-4.5)
31   li1_m2=plot(am2_top,"Area 2 High",color=black)
32   li2_m2=plot(am2, "Area 2 Low",color=black)
33   fill(li1_m2,li2_m2, color=white)
34
35   // Math fomrula  / VWAP Z-SCORE 
36   vwapScore(pds) =>
37    	mean = sum(volume*close,pds)/sum(volume,pds)
38    	vwapsd = sqrt(sma(pow(close-mean, 2), pds) )
39    	(close-mean)/vwapsd
40
41   plot(vwapScore(48),title="ZVWAP2-2",color=#ffe0b2, linewidth=2,transp=0.75)
42   plot(vwapScore(199),title="ZVWAP2-2",color=#cfb9ff, linewidth=2,style=circles,transp=0.75)
43   plot(vwapScore(484),title="ZVWAP2-3",color=#ff0000, linewidth=2,style=circles,transp=0.75)

Re: MT4 Indicator requests and ideas

Posted: Mon Sep 26, 2022 5:33 am
by Jedidiah
mrtools wrote: Mon Sep 26, 2022 1:39 am That indicator wasn't done by me so don't have the source code for it.
honje19960321 wrote: Sat Sep 24, 2022 2:55 pm A very valuable request.
Looking forward to Dear Mr Tools adding alerts and arrows to the dz step oma value chart.

Candle crosses DZ squeeze up line (yellow) upwards with an alert and arrow
Candle crosses DZ squeeze up line (yellow) downwards with an alert and an arrow
Candle crosses DZ squeeze down line (yellow) downwards with an alert and arrow
Candle crosses DZ squeeze down line (yellow) upwards with an alert and arrow

as well as
Candles entering above 0 line to sound the alarm.
Candles entering below 0 line to sound the alarm

Grateful
Image
Looking forward to Dear Mr Tool s making it happen.
Gratitude

Re: MT4 Indicator requests and ideas

Posted: Mon Sep 26, 2022 7:21 am
by kvak
Tradehunter wrote: Sun Sep 25, 2022 9:19 pm Hello Mr Tools
Can you have a look at this indi.
It alerts non stop during the last minute of every hour.
I have it on the hourly and alerts are on current.
Maybe I will just turn the sound off if you cant find anything.

Thanks!
dsl obv 1.2.ex4
Try this new version...viewtopic.php?p=1295490272#p1295490272