guspenskiy13 976 posts msg #120314 - Ignore guspenskiy13 |
5/31/2014 4:47:00 PM
Thanks dustin,
I'm glad that the information I provide is some-what effective.
Just as klynn said, I would appreciate if you could share some details about your experience - such as time-frame, indicators
lengths and the process.
-Gus
|
guspenskiy13 976 posts msg #120322 - Ignore guspenskiy13 |
5/31/2014 11:26:12 PM
hint: try ($GVZ/GLD) or ($GVZ/GDX) in prophet using NUGT/DUST.
|
dustinb 29 posts msg #120332 - Ignore dustinb |
6/1/2014 6:17:21 PM
Hi gus,
I am using a combo of bottom dwelling fast stochs and Williams, Bollie's at or drop below 0, and your CCI tip to catch a quick bounce.
This week, I caught CRK for 10%, MHG for 5%, ANN for 4%, and my favorite hit, BIG for a whopping 13% from Wednesday.
Also hit on a couple of very, and I mean very, embarrassingly low priced penny stocks that hit too.
I will try and post some picks this week end of day for setups for the next day. I can't do it now I'm posting this from cell and its driving me nuts!
|
guspenskiy13 976 posts msg #120363 - Ignore guspenskiy13 |
6/2/2014 12:43:38 PM
Hey dustin,
if you could post some screens this week with some examples, that would be great.
Thanks-
|
guspenskiy13 976 posts msg #120467 - Ignore guspenskiy13 |
6/4/2014 9:01:56 PM
I did more tests on CCI and I have to apologize - the VXX/SPY CCI is useless...it has insignificant differences in comparison to the regular CCI of SPY...the example is below..
However, I absolutely love CCI and I decided to play with some ideas I had in the mind....
CCI(100) on 1 minute chart does give some killer signals... I had my pre-determined levels....but I felt like that just wasn't enough...
So I've modified the CCI with Average from ToS...and then I've made a little histogram for it....
CCI levels are 200 - to show generally unsustainable moves; 100 - trend, support/resistance - best moves usually have cci>100; 50 - last area of support, sometimes resistance - 50 cross is generally associated with coming reversals.
Histogram has two types of colors: green/red - when the cross above MA has CCI>-50 and when the cross below MA has CCI< 50.
Orange/Cyan is for the moves above with CCI < -50 and moves below >50.
Green or Red color doesn't guarantee you are on the right side - 0 cross, 50 cross, 100 cross are the levels of confirmation.
CCI does lag at the open, especially when the gap occurs. That's unfortunate.
What this is:
Typical Price (TP) = (High + Low + Close)/3
Constant = .015
Mean Deviation = 20-period average of the typical price subtracted from each period's typical price; taken into absolute value, summed and divided by the total number of periods.
CCI = (Typical Price - 20-period SMA of TP) / (.015 x Mean Deviation)
And then we have the EMA of CCI.
Both values also plotted as histogram to see the difference between the two.
Here are some screens:
Relatively trend-less day. Gap up messed up the value pretty bad. Notice the orange fader.
For the CCI:
declare lower;
input cciLength = 14;
input cciAvgLength = 9;
input over_sold = -100;
input over_bought = 100;
input zer0 = 0;
input level1 = 0;
input level1b = 0;
input level2 = 0;
input level2b = 0;
plot CCI = CCI(length = cciLength);
plot CCIAvg = ExpAverage(CCI, cciAvgLength);
plot OverBought = over_bought;
plot OverSold = over_sold;
plot Zero = zer0;
plot line1 = level1;
plot line1b = level1b;
plot line2 = level2;
plot line2b = level2b;
CCI.SetDefaultColor(GetColor(9));
CCIAvg.SetDefaultColor(GetColor(8));
OverBought.SetDefaultColor(GetColor(5));
OverSold.SetDefaultColor(GetColor(5));
Zero.SetDefaultColor(GetColor(5));
line1.SetDefaultColor(GetColor(5));
line1b.SetDefaultColor(GetColor(5));
line2.SetDefaultColor(GetColor(5));
line2b.SetDefaultColor(GetColor(5));
For the historgram:
declare lower;
input cciLength = 14;
input cciAvgLength = 9;
input over_sold = -100;
input over_bought = 100;
input zer0 = 0;
input level1 = 0;
input level1b = 0;
input level2 = 0;
input level2b = 0;
input level3 = 0;
input level3b = 0;
plot CCI = CCI(length = cciLength);
plot CCIAvg = ExpAverage(CCI, cciAvgLength);
plot Diff = CCI - CCIAvg;
plot ZeroLine = 0;
Diff.SetDefaultColor(GetColor(5));
Diff.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Diff.SetLineWeight(3);
Diff.DefineColor("Positive and Up", Color.GREEN);
Diff.DefineColor("Positive and Down", Color.DARK_GREEN);
Diff.DefineColor("Negative and Down", Color.RED);
Diff.DefineColor("Negative and Up", Color.DARK_RED);
Diff.DefineColor("Positive and 0p", Color.YELLOW);
Diff.AssignValueColor(if Diff >= 0 then if CCI > -55 then Diff.color("Positive and Up") else Diff.color("Positive and Down") else if CCI < 55 then Diff.color("Negative and Down") else Diff.color("Negative and Up"));
ZeroLine.SetDefaultColor(GetColor(0));
CCI.hide ();
CCIAvg.hide ();
|
guspenskiy13 976 posts msg #120653 - Ignore guspenskiy13 |
6/10/2014 8:43:12 PM
wanted to share
1 min chart with RSI(10) + EMA(30)
wait for EMA to get below 40 with oversold RSI(10) and wait for the cross
the fastest signal you can ever get of a quick pop or maybe even a reversal
|
guspenskiy13 976 posts msg #120700 - Ignore guspenskiy13 |
6/12/2014 2:13:03 AM
CCI(100) with average with histogram and paint-bars on UVXY.
|
satanscashcow 19 posts msg #121284 - Ignore satanscashcow |
8/8/2014 4:22:48 AM
Great work on all of this! Will have to try some of these setups.
|
Palmer 4 posts msg #124246 - Ignore Palmer |
7/4/2015 3:32:52 PM
Stumbled upon this thread today..HAPPY 4th!...No worries, the grill will be fired up soon.
Just wondering if this thread is still active???
|
Palmer 4 posts msg #124247 - Ignore Palmer |
7/4/2015 5:45:47 PM
Gus:
From your post on 6/10/2014:
1 min chart with RSI(10) + EMA(30)
wait for EMA to get below 40 with oversold RSI(10) and wait for the cross
the fastest signal you can ever get of a quick pop or maybe even a reversal
Can you explain wait for EMA to get below 40???
|