StockFetcher Forums · Stock Picks and Trading · Pattern Watching<< 1 ... 8 9 10 11 12 ... 20 >>Post Follow-up
Nobody
404 posts
msg #158187
Ignore Nobody
12/13/2021 9:19:20 AM

Thank you soo much Mactheriverrat

Trust you had a great weekend.

Nobody
404 posts
msg #158470
Ignore Nobody
modified
1/28/2022 5:03:09 PM

HAPPY NEW YEAAAAR





Nobody
404 posts
msg #158471
Ignore Nobody
modified
1/28/2022 5:05:52 PM

Thanks to Mactheriverrat, my first ever Cat Video on SF





Nobody
404 posts
msg #158512
Ignore Nobody
modified
2/3/2022 10:13:40 AM



Nobody
404 posts
msg #158513
Ignore Nobody
modified
2/3/2022 10:49:10 AM

How do we know when its safe to get back into market zoo?



via GIPHY



Nobody
404 posts
msg #158530
Ignore Nobody
modified
2/7/2022 4:07:01 PM





xarlor
561 posts
msg #158539
Ignore xarlor
2/8/2022 11:12:03 AM

Nobody
2/3/2022 10:49:10 AM
How do we know when its safe to get back into market zoo?


I have a Doomsday Filter for that. For those that don't have advanced sub, we're still in "Stay out of the market"

Fetcher[
SYMLIST(SPY,QQQ,DIA)

set{wk1,cema(close,15)}
set{wk2,cema(close,50)}
set{Weekly_MACD,wk1 - wk2}

set{dy1,cema(close,3)}
set{dy2,cema(close,10)}
set{Daily_MACD,dy1 - dy2}

set{Weekly_and_Daily_MACD,Weekly_MACD + Daily_MACD}

/* Cheese's Uptrend
prices are above both of sty's ribbons
AND
snappy's Weekly_and_Daily_MACD above Weekly_MACD */

set{x1,count(close > clri(Donchian Center Band(8,0),25),1)}
set{x2,count(close > clri(Donchian Center Band(9,0),25),1)}
set{x3,count(close > clri(Donchian Center Band(10,0),25),1)}
set{x4,count(close > clri(Donchian Center Band(11,0),25),1)}
set{x5,count(close > clri(Donchian Center Band(12,0),25),1)}
set{x6,count(close > clri(Donchian Center Band(13,0),25),1)}
set{x7,x1 * x2}
set{x8,x7 * x3}
set{x9,x8 * x4}
set{x10,x9 * x5}
set{x11,x10 * x6}

set{y1,count(close > clri(Donchian Lower Band(3,0),18),1)}
set{y2,count(close > clri(Donchian Lower Band(4,0),18),1)}
set{y3,count(close > clri(Donchian Lower Band(5,0),18),1)}
set{y4,count(close > clri(Donchian Lower Band(6,0),18),1)}
set{y5,y1 * y2}
set{y6,y5 * y3}
set{y7,y6 * y4}

set{z1,count(Weekly_and_Daily_MACD > Weekly_MACD,1)}

set{uptrend1,x11 * y7}
set{uptrend,uptrend1 * z1}


/* Cheese's Downtrend
prices are below EITHER of sty's ribbons
OR
snappy's Weekly_and_Daily_MACD below Weekly_MACD */

set{j1,count(close < clri(Donchian Center Band(8,0),25),1)}
set{j2,count(close < clri(Donchian Center Band(9,0),25),1)}
set{j3,count(close < clri(Donchian Center Band(10,0),25),1)}
set{j4,count(close < clri(Donchian Center Band(11,0),25),1)}
set{j5,count(close < clri(Donchian Center Band(12,0),25),1)}
set{j6,count(close < clri(Donchian Center Band(13,0),25),1)}
set{j7,j1 * j2}
set{j8,j7 * j3}
set{j9,j8 * j4}
set{j10,j9 * j5}
set{j11,j10 * j6}

set{k1,count(close < clri(Donchian Lower Band(3,0),18),1)}
set{k2,count(close < clri(Donchian Lower Band(4,0),18),1)}
set{k3,count(close < clri(Donchian Lower Band(5,0),18),1)}
set{k4,count(close < clri(Donchian Lower Band(6,0),18),1)}
set{k5,k1 * k2}
set{k6,k5 * k3}
set{k7,k6 * k4}

set{l1,count(Weekly_and_Daily_MACD < Weekly_MACD,1)}

set{downtrend1,j11 + k7}
set{downtrend,downtrend1 + l1}



set{soFB,ind(FB,shares outstanding)}
set{clFB,ind(FB,close)}
set{mcFB,soFB * clFB}

set{soAAPL,ind(AAPL,shares outstanding)}
set{clAAPL,ind(AAPL,close)}
set{mcAAPL,soAAPL * clAAPL}

set{soAMZN,ind(AMZN,shares outstanding)}
set{clAMZN,ind(AMZN,close)}
set{mcAMZN,soAMZN * clAMZN}

set{soMSFT,ind(MSFT,shares outstanding)}
set{clMSFT,ind(MSFT,close)}
set{mcMSFT,soMSFT * clMSFT}

set{soGOOG,ind(GOOG,shares outstanding)}
set{clGOOG,ind(GOOG,close)}
set{mcGOOG,soGOOG * clGOOG}

set{soTSLA,ind(TSLA,shares outstanding)}
set{clTSLA,ind(TSLA,close)}
set{mcTSLA,soTSLA * clTSLA}

set{market_cap, shares outstanding * close}


set{wmc1,mcfb + mcaapl}
set{wmc2,wmc1 + mcamzn}
set{wmc3,wmc2 + mcMSFT}
set{wmc4,wmc3 + mcGOOG}
set{wmc5,wmc4 + mcTSLA}
set{wmc,wmc5 / 6}

set{wmcRSI,CRSI(wmc, 14)}

set{buy,count(wmcRSI above 60,1)}
set{no_touchie,count(wmcRSI between 50 and 59,1)}
set{sell,count(wmcRSI below 50,1)}

set{hlc3a,high + low}
set{hlc3b,hlc3a + close}
set{hlc3,hlc3b / 3}

set{number1,1}
set{pi,atan(number1) * 4}

set{h30,high 30-day high}
set{l30,low 30-day low}
set{range1,h30 - l30}
set{range2,range1 * l30}
set{range,25 / range2}

set{x1_ema34,0}
set{x2_ema34,1}
set{y1_ema34,0}
set{y2a,ema(34) 1 day ago - ema(34)}
set{y2b,hlc3 * range}
set{y2_ema34,y2a / y2b}

set{c1a,x2_ema34 - x1_ema34}
set{c1b,x2_ema34 - x1_ema34}
set{c1c,y2_ema34 - y1_ema34}
set{c1d,y2_ema34 - y1_ema34}
set{c1e,c1a * c1b}
set{c1f,c1c * c1d}
set{c1g,c1e + c1f}
set{c_ema34,sqrt(c1g)}

set{emaAngle1,x2_ema34 - x1_ema34}
set{emaAngle2,emaAngle1 / c_ema34}
set{emaAngle3,emaAngle2 / pi}
set{emaAngle4,acos(emaAngle3)}
set{emaAngle5,180 * emaAngle4}
set{emaAngle_1,round(emaAngle5)}

set{emaAngle6,count(y2_ema34 > 0,1)}
set{emaAngle7,count(y2_ema34 < 0,1)}
set{emaAngle8,emaAngle7 - emaAngle6}
set{emaAngle,emaAngle8 * emaAngle_1}

set{LONG,count(emaAngle > 5,1)}
set{SHORT,count(emaAngle < -5,1)}

add column separator
add column uptrend
add column buy
add column long

add column separator
add column no_touchie
add column separator

add column downtrend
add column sell
add column short

set{enter1,uptrend * buy}
set{enter,enter1 * long}
set{exit1,downtrend * sell}
set{exit,exit1 * short}
enter > -1
exit > -1
]



Nobody
404 posts
msg #158558
Ignore Nobody
2/9/2022 9:33:26 AM

xarlor

I have a Doomsday Filter for that. For those that don't have advanced sub, we're still in "Stay out of the market"


Big Thank You Xarlor

I will add to my files and study it Thank you

Nobody
404 posts
msg #158560
Ignore Nobody
modified
2/9/2022 1:23:48 PM





Nobody
404 posts
msg #158595
Ignore Nobody
modified
2/15/2022 9:46:00 AM




StockFetcher Forums · Stock Picks and Trading · Pattern Watching<< 1 ... 8 9 10 11 12 ... 20 >>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.