Page 140 of 158

Re: Trend Indicators for MT4

Posted: Wed Feb 15, 2023 9:35 am
by Chickenspicy
mrtools wrote: Wed Feb 15, 2023 8:49 am This is an updated version Mladen's version of David Sepiashvili's b1 Trend quality. Has all the averages and prices I have, with floating levels. Also, has the usual coloring options and mtf with alerts on whatever color option you choose.
The Pdfs are really nice touch!

Re: Trend Indicators for MT4

Posted: Wed Feb 15, 2023 9:45 am
by Chickenspicy
There is a Cumulative Price Change % indicator on tradingview that has source code my phones not letting me copy anything though

That was mentioned in the Pdf, and there is also a uni trend balance system for mt4 out there which was also mentioned

Re: Trend Indicators for MT4

Posted: Wed Feb 15, 2023 10:09 am
by TransparentTrader
chickensword wrote: Wed Feb 15, 2023 9:45 am There is a Cumulative Price Change % indicator on tradingview that has source code my phones not letting me copy anything though
That was mentioned in the Pdf, and also is uni trend balance system for mt4 out there whichc was also menthioned

This one?

https://www.tradingview.com/script/NXm3 ... ce-Change/

If so, source code is below:

Code: Select all

//@version=3
study("Cumulative Price Change %")

val = input(4, type = integer, minval=1, title="Cumulative % Period")
//val1 = input(4, type = integer, minval=1, title="% Change Period")

deltaT = 0
sum = 0.0
for i = 1 to val
    sum := sum + (100 * ((close[i] - open[i]) / open[i]))
    deltaT := deltaT + ((close[i] - open[i]) > 0 ? 1 : -1)

//plot(ema((100*(close - open) / open),val1), color=red)
//osc = (100 * ((close - open) / open))
hline(0, title="Zero")
plot(sum)

//plot(deltaT, color=lime)

Re: Trend Indicators for MT4

Posted: Wed Feb 15, 2023 10:11 am
by Chickenspicy
TransparentTrader wrote: Wed Feb 15, 2023 10:09 am This one?
Yes! i wonder what modifications could be done to it

Re: Trend Indicators for MT4

Posted: Wed Feb 15, 2023 8:48 pm
by moey_dw
mrtools wrote: Wed Feb 15, 2023 8:49 am Trend Quality indicator by Mladen (David Sepiashvili's version) with Averages & Price filters
Mrtoolz!! Thank u for the brilliant update + the PDF article on this competent nrp indicator I have not heard of this indicator before & it works good on even rangebound & intrady markets using default settings........ I really like this one

Thanking both Mladen Mrtoolz & the David guy!! Awesome work :clap: :clap: :clap:

Re: Trend Indicators for MT4

Posted: Thu Feb 16, 2023 1:15 am
by Wole
mrtools wrote: Wed Feb 15, 2023 8:49 am Trend Quality indicator by Mladen (David Sepiashvili's version) with Averages & Price filters


Image



Having trouble detecting trends, or estimating their
duration when you do spot one?


This is an updated version Mladen's version of David Sepiashvili's b1 Trend quality. Has all the averages and prices I have, with floating levels. Also, has the usual coloring options and mtf with alerts on whatever color option you choose.

This indicator was designed to really help analysts that struggled with finding trends.
Image
As good as this indicator, it would be more real to me on the chart.
If it is possible, kindly make the Chart version.
Beautiful. Enjoy.

Re: Trend Indicators for MT4

Posted: Thu Feb 16, 2023 6:24 am
by mrtools
Wole wrote: Thu Feb 16, 2023 1:15 am As good as this indicator, it would be more real to me on the chart.
If it is possible, kindly make the Chart version.
Beautiful. Enjoy.
Sounds like a good idea, but not sure if it is possible.

Re: Trend Indicators for MT4

Posted: Thu Feb 16, 2023 8:57 pm
by vvFish
;)

Re: Trend Indicators for MT4

Posted: Thu Feb 16, 2023 11:32 pm
by zookeeper
vvFish wrote: Thu Feb 16, 2023 8:57 pm ;)
Image
Hi, would you kindly share your template please?

Re: Trend Indicators for MT4

Posted: Fri Feb 17, 2023 5:56 am
by Chickenspicy
zookeeper wrote: Thu Feb 16, 2023 11:32 pm Hi, would you kindly share your template please?
Trend Quality
Stoch color
Brilliant Session Levels
Bank Levels (really daily open 4 hour delay)
Not sure the other levels couldnt get them to work