kibo 14 posts msg #133162 - Ignore kibo |
12/10/2016 9:29:50 AM
@Kevin, I am kind of new... " (all entered on 12/7, yesterday). These were opened at 11.59 and are at 12.64 right now (up 9%). ", What instrument do you use? TVIX range were between 11.5-9.5 for the last 5 days. Where do you see that 12.64?
|
miketranz 978 posts msg #133163 - Ignore miketranz |
12/10/2016 10:17:39 AM
TVIX has basically been going down for the past 5 days.However,I've been following the "long signal" and the results of trading the SPY index or QQQ on the long side are very positive,right on the money.My opinion,TVIX is a high risk instrument,that will trade up rapidly only in conjunction with a market moving event.Most of the time it's either flat or going down.Miketranz...
|
pthomas215 1,251 posts msg #133164 - Ignore pthomas215 |
12/10/2016 10:25:26 AM
TVIX support level is 9.57 right now. if you see it around 9.60 Monday, your odds are improved that you took a good position without having to wait for it to come back.
|
Kevin_in_GA 4,599 posts msg #133166 - Ignore Kevin_in_GA |
12/10/2016 1:45:34 PM
@Kevin, I am kind of new... " (all entered on 12/7, yesterday). These were opened at 11.59 and are at 12.64 right now (up 9%). ", What instrument do you use? TVIX range were between 11.5-9.5 for the last 5 days. Where do you see that 12.64?
That is the closing value of the ^VIX index, not TVIX. This system uses the ^VIX index to generate the signals. This was all clearly explained in the very first post.
|
dtatu 143 posts msg #133173 - Ignore dtatu modified |
12/11/2016 12:59:13 PM
miketranz
... The problem is that VIX is ,most of the time, INVERSELY linked to SPY:long VIX=SHORT SPY; if you are long SPY, yes you are in the money, but you took the OPPOSITE signal.
|
miketranz 978 posts msg #133176 - Ignore miketranz |
12/11/2016 5:19:23 PM
It's not the simplest system to follow in any respect.How about a 75% or better win ratio based on the SPY long side trade only? 1 simple position... Any suggestions???
|
matt 15 posts msg #133178 - Ignore matt |
12/11/2016 8:34:00 PM
Another buy signal was triggered after the close on Friday, the other 4 open signals are a hold.
|
jackmack 334 posts msg #133186 - Ignore jackmack |
12/12/2016 10:32:39 AM
Kevin_in_GA
I looked back at the 10 VXX filters to see which generated the greatest number of signals so as maybe not needing to have 5 or 10 open positions when trying to be in the same instrument and played around just a little on the #10 filter as it generated the greatest number of entry/exit signals on my review and came up with the following;
symlist(vxx)
/*ENTRY CONDITIONS*/
set{EXIT1, count(ind(^vix, cci(19)) crossed ABOVE -119, 1)}
set{EXIT2, count(ind(^vix, ppo(3,60)) BELOW 0, 1)}
set{EXIT, EXIT1 * EXIT2}
/*EXIT CONDITIONS*/
set{ENTRY1, count(ind(^vix, cci(19)) crossed BELOW -119, 1)}
set{ENTRY2, count(ind(^vix, ppo(3,60)) ABOVE 0, 1)}
set{ENTRY, ENTRY1 + ENTRY2}
add column entry {long entry}
add column separator
add column exit
DRAW EMA(10)
DRAW long entry ON PLOT NULL
DRAW exit ON PLOT NULL
Then I thought about XIV since the times when VXX are up are typically in spike situations so here is the inverse for XIV
symlist(xiv)
/*ENTRY CONDITIONS*/
set{EXIT1, count(ind(^vix, cci(19)) crossed below -119, 1)}
set{EXIT2, count(ind(^vix, ppo(3,60)) above 0, 1)}
set{EXIT, EXIT1 * EXIT2}
/*EXIT CONDITIONS*/
set{ENTRY1, count(ind(^vix, cci(19)) crossed above -119, 1)}
set{ENTRY2, count(ind(^vix, ppo(3,60)) below 0, 1)}
set{ENTRY, ENTRY1 + ENTRY2}
add column entry {long entry}
add column separator
add column exit
DRAW EMA(10)
DRAW long entry ON PLOT NULL
DRAW exit ON PLOT NULL
Now just reviewing these (not back testing) it appears these two gave very good signals of when to get into which as needed - (the exit on the VXX side is left open to ones own liking - but if one just played it for a certain percentage gain - say 10-15% then exited and waited for the signal to get back into XIV it just seemed to work.
Thoughts?
|
kibo 14 posts msg #133188 - Ignore kibo |
12/12/2016 11:24:07 AM
@jackmack These seems to issue long entry for both XIV VXX at the moment.
|
johnpaulca 12,036 posts msg #133190 - Ignore johnpaulca |
12/12/2016 12:48:16 PM
inversely correlation coefficient between XIV and VXX is -0.99 not -1.00
|