pthomas215 1,251 posts msg #132985 - Ignore pthomas215 |
12/1/2016 5:14:57 PM
safetrade, I assume VXX?
|
SAFeTRADE 644 posts msg #132986 - Ignore SAFeTRADE |
12/1/2016 6:15:23 PM
That is correct.
|
shillllihs 6,044 posts msg #132996 - Ignore shillllihs |
12/1/2016 9:19:43 PM
I've played this twice for profit my way.
I wait for real deep dips by all the green then try to ride these up to upper bollinger or upper Acc. Band(20)
Look at Uco Ugaz.
|
jackmack 334 posts msg #133008 - Ignore jackmack |
12/2/2016 2:02:11 PM
SAFeTRADE
One last observation on JNUG/JDST and it has to do with your inclusion of the Bollinger band.
Amazing to see how price reacts to a break above and conversely below.
To bad there wasn't a way to incorporate that condition into the filter so that one
was only trading long when the conditions were optimal.
|
pthomas215 1,251 posts msg #133010 - Ignore pthomas215 |
12/2/2016 2:09:54 PM
jackmack, could you please post the filter you use for JNUG and JDST currently? I have a couple and got confused.
|
jackmack 334 posts msg #133011 - Ignore jackmack |
12/2/2016 2:36:09 PM
I added the last line so you get the email notification after close
set{f, 3 + 1}
set{s, 6 + 1}
set{fastcoef, 2.00 / f}
set{slowcoef, 2.00 / s}
set{ema3, ema(3)}
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,6)}
set{cls, close}
draw Upper Bollinger Band(50,.8)
draw e_ema on plot price
draw e on plot price
draw d1 on plot price
draw price line at d1
symlist(jnug,jdst)
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{d1, c2 / d}
draw d1 on plot price
add column e{mfastline}
add column e_ema{mslowline}
add column d1{zeroline}
draw macd(3,6,9)
add column close above d1
|
pthomas215 1,251 posts msg #133014 - Ignore pthomas215 |
12/2/2016 3:26:35 PM
thank you
|
SAFeTRADE 644 posts msg #133015 - Ignore SAFeTRADE modified |
12/2/2016 6:05:41 PM
jackmack, add these lines to your filter'
set{clsabv, count(close crossed above Upper Bollinger Band(50,.08),1)}
set{clsblo, count(close crossed below lower Bollinger Band(50,.08),1)}
be careful not to add too many restrictions, leave some human intervention.
shillllihs, I cannot code "gut feel" into a filter. You will have to keep finding success
with how you have been trading. Been doing pretty good it appears, keep it up.
Safetrade
|
Mactheriverrat 3,153 posts msg #133020 - Ignore Mactheriverrat |
12/3/2016 3:46:56 AM
What's behind using Upper Bollinger Band(50,.8) when its really just the MA(50).
|
SAFeTRADE 644 posts msg #133023 - Ignore SAFeTRADE |
12/3/2016 11:08:12 AM
Trades that are at or above the Upper Bollinger Band(50,.8) tend to fail. Not always though.
The Upper Bollinger Band(50,.8) is not really the ma(50).
Safetrade
|