StockFetcher Forums · General Discussion · Gap Up code - How to remove extra noise from chart<< >>Post Follow-up
nainil
10 posts
msg #161505
Ignore nainil
modified
12/21/2024 10:09:38 AM

How do I remove the DI lines and ADX, ATR lines from showing on the chart? This is the code that shows a gap up. If there is a better way to observe gap-up or gap down I’d love to know that too.

After the gap-up I want another daily candle that closes above it for confirmation. How would I add that?

=
Fetcher[

show stocks where open is more than 5% above close 1 day ago
and volume is more than 100% above average volume(30) 1 day ago
and draw MA(50)
and draw MA(200)

/* Limit the universe of tickers */
close > 10
average volume(30) > 100,000

]



miketranz
969 posts
msg #161506
Ignore miketranz
12/21/2024 12:52:58 PM

Fetcher[show stocks where open is more than 5% above close 1 day ago
and volume is more than 100% above average volume(30) 1 day ago


and avg Average Volume(30) is above 2000000 PRICE BETWEEN .10 AND 100
]



styliten
303 posts
msg #161507
Ignore styliten
12/21/2024 5:57:17 PM

@nainil

You can create user defined variables to plot +di, -di and adx separately as you see fit.

Here is a sample code:

Fetcher[dow 30

set{adx14, adx(14)}
set{di14, -di(14)}
set{di14b, +di(14)}
set{di14_avg, clri(di14 multiply by 0.5, 2) + clri(di14b multiply by 0.5, 2)}

draw clri(di14, 9) on plot clri(di14_avg, 9)
draw clri(di14b, 9) on plot clri(di14_avg, 9)

draw adx14
]



StockFetcher Forums · General Discussion · Gap Up code - How to remove extra noise from chart<< >>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.