StockFetcher Forums · Filter Exchange · HELP converting this filter please<< >>Post Follow-up
ricksieminski
5 posts
msg #135656
Ignore ricksieminski
4/28/2017 10:10:54 AM

It's called DMI Stochastic Extreme. Can anyone help with conversion to work here?
Thanks,
--Rick

input length = 10;
input highLowLength = 3;
input sumLength = 3;
input over_bought = 90;
input over_sold = 10;

def osc = DMI_Oscillator(length, "average type" = AverageType.WILDERS);
def hh = Highest(osc, highLowLength);
def ll = Lowest(osc, highLowLength);

plot Stoch = Sum(osc - ll, sumLength) / (Sum(hh - ll, sumLength)) * 100;
plot OverBought = over_bought;
plot OverSold = over_sold;
plot Up = if Stoch crosses above over_sold then over_sold + 5 else Double.NaN;
plot Down = if Stoch crosses below over_bought then over_bought - 5 else Double.NaN;

Stoch.SetDefaultColor(GetColor(1));
OverBought.SetDefaultColor(Color.GRAY);
OverSold.SetDefaultColor(Color.GRAY);
Up.SetDefaultColor(Color.UPTICK);
Up.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
Up.HideBubble();
Down.SetDefaultColor(Color.DOWNTICK);
Down.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
Down.HideBubble();

dwojahn
5 posts
msg #144098
Ignore dwojahn
7/15/2018 2:14:55 PM

I just noticed that the timing of these events/arrows may be an interesting substitute for DMI Stoch Ext. I call them my Hull Moving average arrows

/* Hull Green Section */
set{fast1,cwma(close,7)}
set{fast2,2 * fast1}
set{fast3,cwma(close,14)}
set{valfast,fast2 - fast3}
set{fastavg,cwma(valfast,4)}
and close crossed above fastavg /* hull green arrow signal */

/* Hull Red Section */
set{fast1,cwma(close,7)}
set{fast2,2 * fast1}
set{fast3,cwma(close,14)}
set{valfast,fast2 - fast3}
set{fastavg,cwma(valfast,4)}
and close crossed below fastavg /* hull red arrow signal */

StockFetcher Forums · Filter Exchange · HELP converting this filter please<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.