General Discussion · Any weekly chart trader's here?
|
ron22 msg #155920 |
2/22/2021 10:33:04 AM
@ED The Turnbull presentation is very good. He explained the logic for his strategy, how it works and why he started out with UPRO, TNA & TQQQ and ended up with only TQQQ. Good Trading, Ron
|
General Discussion · Any weekly chart trader's here?
|
ron22 msg #155909 |
2/21/2021 12:25:02 PM
@ED Thank you for your detailed and very quick reply. I look forward to watching the you tube presentation this afternoon. Is there a link available where I could review the backtest data for this strategy? Thanks again.
Ron
|
General Discussion · Any weekly chart trader's here?
|
ron22 msg #155900 |
2/21/2021 10:54:29 AM
@John(Mac) Thank you for your input on the 12stocks.com link. I agree that the daily and weekly trends are more useful than the monthly trends.
@ED What trailing stop do you recommend for the Weekly 2ema/ Weekly 5ema crossover strategy? Thank you for posting this strategy.
|
General Discussion · Any weekly chart trader's here?
|
ron22 msg #155887 |
2/20/2021 10:35:31 PM
Hi Mac, Do you find the 12stocks.com articles, charts and/or forums helpful? Thanks Ron
|
Filter Exchange · MOMENTUM PULLBACK FILTER
|
ron22 msg #155829 |
2/16/2021 5:02:26 PM
Mike, thank you for your reply which is very helpful as well as for the filter. Ron
|
Filter Exchange · MOMENTUM PULLBACK FILTER
|
ron22 msg #155790 |
2/15/2021 12:43:46 PM
Hi Mike. Thank you for this filter. What criteria do you recommend for entry and exit triggers? Thanks Ron.
|
Filter Exchange · Help with filter
|
ron22 msg #154712 |
11/20/2020 10:58:35 PM
Ed, You are probably right about the Gush stock split affecting SF's historical data. Thank you.
|
Filter Exchange · Help with filter
|
ron22 msg #154711 |
11/20/2020 10:56:00 PM
Cheese, Thank you for your work on the filter and for your input. I was a little confused . Things are much clearer now.
Sorry, I do not have the link to Dave's filter. I only had the longpositionkiss part of the code written down and I did a poor job of trying to remember the slope part. Thanks a lot for your help.
|
Filter Exchange · Help with filter
|
ron22 msg #154693 |
11/20/2020 11:29:59 AM
[apply to symlist(gush,)
set{E3, ema(8) - ma(10)}
set{LongpositionKISS, count(E3 > 0,1)}
set{ShortpositionKISS, count(E3 < 0,1)}
set{SL, 2 day slope of ema(8)}
set {LongSlopeEMA8, count(SL > 0.7,1) }
set {ShortSlopeEMA8, count(SL < 0.7,1) }
draw LongSlopeEMA8 on plot
draw ShortSlopeEMA8 on plot
add column seperator
add column LongSlopeEMA8 {BuySlopeEMA8}
add column ShortSlopeEMA8 {SellSlopeEMA8}
draw LongpositionKISS on plot
draw ShortpositionKISS on plot
add column separator
add column E3 {Delta}
add column separator
add column LongpositionKISS {Buy}
add column separator
add column ShortpositionKISS {Sell}
add column separator
add column atr(21) {Atr}
add column separator
add column average day range (21){ADR%}
add column separator
draw ema(8)
draw ma(10)
SORT COLUMN 9 deSCENDING
chart-time is 60 day
set{SLb, 2 day slope of ma(10)}
set {LongSlopema10, count(SLb > 0.4,1) }
set {ShortSlopema10, count(SLb < 0.4,1) }
draw LongSlopema10 on plot
draw ShortSlopema10 on plot
add column seperator
add column LongSlopema10 {BuySlopema10}
add column ShortSlopema10 {SellSlopema10} ]
----------------------------------------------------------------------------
I used davesaint86 code for part of this filter. Above filter works correctly except for counting longslopeema8,shortslopeema8, as well as longslopema10 and shortslopema10. It incorrectly counts "longslopeema8" from 8/2/20 to 10/2/20 when the 2 day slope of gush was clearly in a down slope condition. It incorrectly counts "shortslopema10 from 11/9/20 to 11/20/20 when gush was in an up slope trend. The buyslopeema8 and sellslopeema8 columns as well as buy & sell ma10 columns seem to be working properly.
I would greatly appreciate it if someone could fix the code so that the slope counting features work properly. Thank you. Ron
|
General Discussion · Breakout Trading Webinar (Kunal Desai) - owner of BullsonWallstreet.
|
ron22 msg #154666 |
11/18/2020 5:38:53 PM
@Mac, Thank you very much for your detailed explanation. This gives me a clear plan regarding how to use this filter. Good Trading. Ron
|