TradingView
LazyBear
5 janv. 2015 18:46

Market Direction Indicator [LazyBear] 

Bitcoin / U.S. dollarBitstamp

Description

Market Direction Indicator (MDI), by Donald Lambert, is an extension of simple moving average cross over systems. Series of price cross over points are determined to derive MDI.

Note that the short/long lengths will differ between instruments. They need to be tuned properly.

I have added an option to specify a "cutoff" parameter. When MDI is in the cutoff zone (-/+ cutoff), bars are colored gray. Set this to zero to turn off cutoffs.

Other options:
- OverlayMode: Enable this to color bars. MDI values are not plotted. If unchecked, MDI default rendering mode is Histogram mode.
- ShowBelowZero: Plots the negative values below zero (Oscillator mode)

Use "MDI" and "ZeroLine" for setting up alerts. Make sure MDI is in OscillatorMode.

Master list of all my indicators:
docs.google.com/document/d/15AGCufJZ8CIUvwFJ9W-IKns88gkWOKBCvByMEvm5MLo/edit?usp=sharing
Commentaires
jzunigafx
I cannot enable the indicator to its color mode, its all grey, what can I do let me know when you get a chance thanks
ChartArt
My first impression was this is a good indicator. Second impression is that it shows a lot of false signals typical to moving average cross systems. I studied moving average crosses a lot. As you wrote: "They need to be tuned properly. " So this is a good indicator, but only after extensive research of discovering the right combination of moving average periods for each time-frame.
ChartArt
Another setting which I highly recommend to tune properly is the "cutoff" parameter, which is able to drastically reduce the noise of the mentioned false signals.

For example your default periods with a much higher cutoff setting:
BALAJINALINI
@ChartArt, Hi Where can i access this indicator.
ChrisMoody
No That's a Good One.... Nice Job
SirNoseDvoidoffunk
Would there be a way to have it so that the indicator on the bottom can color the candles without losing the display? As in, not having to run two instances of the indicator (one merged to the candles, and another unmerged on its own)...
LazyBear
To allow both bar coloring and histogram, change Line 18 of the script to the following:

plot(0, color=gray, title="ZeroLine"), plot( sbz ? mdi : abs(mdi), style=columns, color=mdic, linewidth=3, title="MDI")
SirNoseDvoidoffunk
Thanks!
Plus