StockFetcher Forums · Filter Exchange · Macd Hook-- UpperCut<< 1 2 >>Post Follow-up
sr7
101 posts
msg #160886
Ignore sr7
2/19/2024 11:55:45 PM




MACD Hook/UpperCut ----- Can anyone make a scan?


When the fast line goes down and bounces off the Slow line --- the stock sky-rockets!:





nibor100
1,010 posts
msg #160889
Ignore nibor100
2/20/2024 11:51:46 AM

I watched the video, and there seems to be an additional indicator on the chart named "TOP" ??? I am not familiar with the TOP indicator so I certainly can't code it yet.

My first searches for it have come up with nothing on the TOP chart indicator.

Ed S.

shillllihs
5,979 posts
msg #160891
Ignore shillllihs
2/20/2024 5:13:25 PM

I would recommend just ignoring these indicators and search for something more substantial.
Their goal is to promote and create excitement to profit off of you.

xarlor
562 posts
msg #160892
Ignore xarlor
2/20/2024 5:18:53 PM

The author replied in the comments section:
The TOP Indicator is a proprietary tool I designed many years ago. It was initially offered to the public until recently, but is now exclusively available to participants of the Technical Analysts Guild or the Technical Analysis Mastery programs, and it's specifically for those who use TradingView.

But here's the good news, if you don't have access to the TOP Indicator, you can still use the strategies I teach with any reliable timing indicator as a replacement for TOP. In this particular case, the indicator only worked as confirmation so you can use the strategy without it.

Always ensure you're familiar with how your chosen indicator works before implementing it in your trading strategy!


SAFeTRADE
630 posts
msg #160893
Ignore SAFeTRADE
modified
2/20/2024 6:56:27 PM

Here is a first effort at putting something together that may resemble what you are looking for.

Use the longer term Macd(8,6,8) for early or lat in trend along with MA5.



Fetcher[set{f, 8 + 1}
set{s, 6 + 1}
set{fastcoef, 2.00 / f}
set{slowcoef, 2.00 / s}

set{ema3, ema(8)}
set{ema6, ema(6)}

set{a, ema3 * fastcoef}
set{b, ema6 * slowcoef}
set{c, a - b}
set{d, fastcoef - slowcoef}
set{e, c / d}
set{e_ema, cema(e,8)}
set{cls2, close}
set{a1,1 - fastcoef}
set{a2, a1 * ema3}
set{b1,1 - slowcoef}
set{b2, b1 * ema6}
set{c1, a2 - b2}
set{c2, 0 - c1}
set{macdl, c2 / d}
DRAW macdl ON PLOT PRICE

set{up,count(macd(4,3,4) fast line crossed below macd(4,3,4) slow line,1)}
set{dn,count(macd(4,3,4) fast line crossed above macd(4,3,4) slow line,1)}
symlist(spy,dia,qqq)
draw ma(5)
draw macd(4,3,4)
draw rsi(2)
draw up
draw dn
draw macd(8,6,8)
]



nibor100
1,010 posts
msg #160895
Ignore nibor100
2/21/2024 9:53:26 AM

@SAFeTRADE,

2 questions regarding your updated filter please;

1. you have a variable named ema6 which is ema(6), but your ema3 variable is the ema(8), is that a typo?

2. What does the MACD1 line on the price plot represent in layman's terms?

Thanks,
Ed S.

nibor100
1,010 posts
msg #160896
Ignore nibor100
2/21/2024 11:43:39 AM

@sr7,

I believe this is what you wanted. You'll have to choose how many days back you want the Up crossover to occur as the video indicates it should be several days before the Hook; I chose 13 days...

Ed S.

Fetcher[
show stocks where MACD Fast Line(12,26,9) 13 days ago crossed above MACD Slow Line(12,26,9) 13 days ago
and MACD Fast Line(12,26,9) is above 0
MACD Histogram(12,26,9) is above 0 for the last 5 days
MACD Histogram(12,26,9) 3 days ago has been decreasing for 2 days
MACD Histogram(12,26,9) has been increasing for 2 days
add column MACD Histogram(12,26,9) 3 days ago
MACD Histogram(12,26,9) 3 days ago is less than .0015
]




SAFeTRADE
630 posts
msg #160898
Ignore SAFeTRADE
2/21/2024 12:43:07 PM

Ed, Macdl is the price line of MACD that rises to meet price. The code is to convert MACD to price. That is why I prefer to use the inverse of the MACD, macd(8,6,8). A little confusing at first or counter intuitive.
Hope that helps.

Safetrade

xarlor
562 posts
msg #160899
Ignore xarlor
2/21/2024 4:59:11 PM

My take. This filter looks for the MACD lines to cross twice (up then down or down then up) within the last 5 days. It further limits the occurrence to only one time in those 5 days.

You'll have to look at the chart to determine bullish or bearish hook.

Fetcher[
optionable

set{hook1,count(MACD Fast Line(12,26,9) crossed above MACD Slow Line(12,26,9),5)}
set{hook2,count(MACD Fast Line(12,26,9) crossed below MACD Slow Line(12,26,9),5)}
set{hook,hook1*hook2}

draw MACD Histogram(12,26,9)
hook equals 1
]



nibor100
1,010 posts
msg #160901
Ignore nibor100
2/23/2024 8:11:19 AM

I expanded the my Up Macd Hook filter to get more stocks.
Ed S.

Fetcher[
show stocks where MACD Fast Line(12,26,9) over the last 19 days 5 days ago crossed above MACD Slow Line(12,26,9) over the last 19 days 5 days ago
/*and MACD Fast Line(12,26,9) is above 0*/
MACD Histogram(12,26,9) is above 0 for the last 5 days
MACD Histogram(12,26,9) 3 days ago has been decreasing for 2 days
MACD Histogram(12,26,9) has been increasing for 2 days
add column MACD Histogram(12,26,9) 3 days ago
MACD Histogram(12,26,9) 3 days ago is less than .0015
]



StockFetcher Forums · Filter Exchange · Macd Hook-- UpperCut<< 1 2 >>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.