StockFetcher Forums · General Discussion · Does this drawing offer value to anyone<< 1 2 >>Post Follow-up
styliten
278 posts
msg #154057
Ignore styliten
modified
9/18/2020 10:49:34 AM

i.e., detecting underlying trend shift at the exact turning points?

Fetcher[dow 30
chart-time is 20 days

draw ma(12)
draw ma(13)
draw ma(14)

set{a1, clri(ma(3) multiply by 2, 5)}
set{a2, clri(ma(3) multiply by 3, 5)}
set{a3, clri(ma(13) multiply by 2, 5)}
set{a4, clri(ma(13) multiply by 3, 5)}

draw a2 minus a3 on plot price

draw a4 minus a1 on plot price
]



How would you improve upon the above code?

Cheese
1,374 posts
msg #154058
Ignore Cheese
9/18/2020 11:24:26 AM

THANK YOU very much, sty
You are now the new chart master
Your charting adds the CYCLE dimension to the TREND,
allowing us to see both the waves and the tide.

Cheese
1,374 posts
msg #154059
Ignore Cheese
9/18/2020 11:34:07 AM

Previously, Ed S nibor100 and graftonian wrote some excellent SCHAFF TREND CYCLE filters,
which add the OVERBOUGHT OVERSOLD dimension.

styliten
278 posts
msg #154060
Ignore styliten
modified
9/18/2020 11:44:33 AM

@ Cheese

Thanks for the kind words!


Cheese
1,374 posts
msg #154061
Ignore Cheese
9/18/2020 12:06:19 PM

Thanks again, sty
You are on a roll with many creative charting ideas
I certainly don't want to interrupt you creativity flow
For my own use, I like the ways you chart INTC, and I added Bollinger Width for VOLATILITY dimension,

snappyfrog
653 posts
msg #154065
Ignore snappyfrog
9/19/2020 10:23:35 AM

I am at a loss on how to use this to find trades or how it gives buy / sell signals.

Cheese
1,374 posts
msg #154066
Ignore Cheese
9/19/2020 12:46:30 PM

snappy,

As of 9/19/2020 11:09:24 AM a new improved sty's filter is now shown in the first post of this thread.


styliten
278 posts
msg #154067
Ignore styliten
modified
9/19/2020 1:20:41 PM

@ Cheese

Thanks again.

If anyone bother to use

Symlist(AVEO, FLDM, RVP, SRGA, VXRT, EVFM, SONO, GNUS, TOPS)

to test the efficacy of the auxiliary lines I offered, he/she will pretty soon realize that size & SHAPE matter | and are the only things that matter.

xarlor
562 posts
msg #154074
Ignore xarlor
9/20/2020 10:10:10 AM

@styliten Always appreciate folks sharing new filters. Even the code used adds to our coder's toolbox. Thank you for contributing.

@snappyfrog This might help. Added triggers on the crossovers.

Fetcher[
dow 30
draw ma(12)
draw ma(13)
draw ma(14)

set{a1, clri(ma(3) multiply by 2, 5)}
set{a2, clri(ma(3) multiply by 3, 5)}
set{a3, clri(ma(13) multiply by 2, 5)}
set{a4, clri(ma(13) multiply by 3, 5)}

set{bull_trend,a2 - a3}
set{bear_trend,a4 - a1}
draw bull_trend on plot price
draw bear_trend on plot price

set{long,count(bull_trend > bear_trend,1)}
set{short,count(bull_trend < bear_trend,1)}
set{long1,bull_trend crossed above bear_trend}
set{short1,bull_trend crossed below bear_trend}
set{trigger,long1 + short1}
trigger > 0
do not draw trigger
draw long
plottype{long,zerobar}
draw short
plottype(short,zerobar)
]



graftonian
1,089 posts
msg #154075
Ignore graftonian
9/20/2020 11:40:08 AM

@styliten, Great use of the many un-documented tools at SF. Keep up the good work, perhaps we all can learn a new trick.
It is going to take some time to wrap my blurry old mind around " ...the custom RSI of a linear regression indicator" but I am trying.
Graf

StockFetcher Forums · General Discussion · Does this drawing offer value to anyone<< 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.