Filter Exchange · Bottom Filter
|
SAFeTRADE msg #159044 modified |
5/9/2022 3:43:43 PM
KSK8 I looked up the code for John Ehlers's bandpass and I cannot code that. I do not think even Stockfetcher as a platform can pull that off.
Glad you are back.
Safetrade
|
General Discussion · LRC of OBV
|
SAFeTRADE msg #158947 modified |
4/6/2022 8:45:57 PM
|
General Discussion · Normalized MACD
|
SAFeTRADE msg #158547 modified |
2/8/2022 7:13:37 PM
Forgot the normalized part.
|
General Discussion · Normalized MACD
|
SAFeTRADE msg #158537 |
2/8/2022 10:43:56 AM
Maybe this?
|
General Discussion · Jesse Stine
|
SAFeTRADE msg #158469 |
1/28/2022 7:42:14 AM
/*TRADER JOES BREAKOUT TRADING MACHINE*/
draw EntryLOW on plot price
draw EntryMID on plot price
draw Triggerline on plot price
/*--OFF THE RADAR-- BASE SET UP(1)*/
set{vola, count(volume > avgvol(100),50)}
and vola 10 days ago has been below 10 for the last 44 days
/* BUY BAND SIGNALS ENGINE (2) */
set{lowline, atr(22) * 4.5}
set{midline, atr(22) * 1.33}
set{setline1, upper bollinger band(63)}
set{setline2, upper bollinger band(11)}
set{topline, atr(5) * 2.8}
set{Triggerline, setline2 minus topline}
set{EntryLOW, setline1 minus lowline}
set{EntryMID, setline1 minus midline}
/*TRIGGER LINE(3)*/
set{ext, Triggerline - EntryMID }
and ext has crossed above 0 within the last 40 days
and pp > entrylow
/* GLOBAL*/
show stocks where price is between .4 and 4
and avgvol(90) is > 50000
/* VISUAL AIDS */
draw ext 60 day low
draw atr(22)
draw atr(5) on plot atr(22)
/*DO NOT DRAW*/
do not draw pp
and date offset is 22
|
Filter Exchange · My filter for Stock with Momentum
|
SAFeTRADE msg #158191 |
12/14/2021 6:38:39 AM
|
Filter Exchange · Something I have been working on that I think is self explanatory.
|
SAFeTRADE msg #157534 |
9/9/2021 1:45:29 PM
make sure
draw e_ema on plot price
is your first line to be drawn
|
Filter Exchange · Something I have been working on that I think is self explanatory.
|
SAFeTRADE msg #157525 |
9/9/2021 2:18:39 AM
Cheese, probably would be better to plot rs5c instead. Price above rs5c market is in up trend below
it would be in downtrend. One cannot see that very well unless one looks at inverse etf's such as
SPXS,SQQQ,SDOW.
|
Filter Exchange · Something I have been working on that I think is self explanatory.
|
SAFeTRADE msg #157524 |
9/9/2021 2:06:39 AM
Mac the code below is to plot MACD on price.
@safeTRADE
Can you explain your below code of your filter
I have not printed all three lines on e_ema
draw e_ema on plot price
_____________________________________________
Cheese I do not plot d1. d1 plots the zero line or a close approximation of it.
see below
@safeTRADE
Can you explain your below code of your filter
|
Filter Exchange · Something I have been working on that I think is self explanatory.
|
SAFeTRADE msg #157513 modified |
9/8/2021 6:43:39 AM
I call this Trading the Kitchen Sync!
|