optionplayer333 801 posts msg #111841 - Ignore optionplayer333 |
2/27/2013 10:50:44 PM
|
jesus1968 9 posts msg #111848 - Ignore jesus1968 |
2/28/2013 12:41:09 AM
Hello how can i configure your magical Arrows.
|
karennma 8,057 posts msg #111854 - Ignore karennma |
2/28/2013 8:42:24 AM
Hola amigo!
Methinks "jesus" and "roper" are the same person.
rofl!
Seriously, I've been watching you optionsplayer.
You forgot to tell everyone the "magic" signal was in fact a double bottom - - on 2-21-13 and 2-25-13.
Tenga buen dia!
Y gracias por su ayuda,
:>)
|
karennma 8,057 posts msg #111855 - Ignore karennma |
2/28/2013 8:44:57 AM
Correction- typo - 2-22-13.
|
Kevin_in_GA 4,599 posts msg #111859 - Ignore Kevin_in_GA |
2/28/2013 9:25:58 AM
Yeah, Mary - tell us how those magic arrows are determined. Looks like they are drawn after the fact, and you have no detail on this graph that informs anyone of how this is done or even the time frame over which this occurs.
If you could in fact draw these in real-time, that would be impressive. I doubt this can be done, and challenge you to show people how you do it.
|
karennma 8,057 posts msg #111866 - Ignore karennma |
2/28/2013 10:36:58 AM
Hey Kevin,
It's on the other thread ("the simpliest most accurate filter") .
The original post gives you the filter, which several people have modified (to "3rd grade level" .. LOL!)
Then he tells you to go to ToS charts and look at the rsi(2) on the 2 and 4 hour.
I did it this morning and it works! Color-coding and all.
I didn't even know you could manually change a 2h chart to 4 hours.
You can also use "custom" and make up your own time frames.
Try it, you'll like!
:>)
|
karennma 8,057 posts msg #111867 - Ignore karennma |
2/28/2013 10:57:17 AM
Kevin_in_GA
2,726 posts
msg #111859
- Kevin_in_GA 2/28/2013 9:25:58 AM
Yeah, Mary - tell us how those magic arrows are determined.
======================================================
Kevin,
I used the "regular" RSI2, but here's how you get the RSI(2) with the arrows ...
I use the Prophet charts mostly, but it pretty much works the same on ToS charts.
- Go to your chart and type in SPY
- To the right of "Go" scroll down to the bottom and click "Custom".
- A calendar will pop up. Enter your time frame. For example, Feb 5 to present.
- To the right of "custom" scroll down to "2hr". You can use "2hr" or manually type in "4hr" and hit Enter.
- Click Studies, then "Edit Study Sets".
-Click "Studies" in upper LEFT corner (next to "My Study Sets).
- Scroll/drag down to RSI, Wilder with Breakout Signals
-Click Apply, Okay, Save or whatever.
Voila!
Magic!
:>)
|
karennma 8,057 posts msg #111868 - Ignore karennma |
2/28/2013 11:15:27 AM
On the ToS charts, it's pretty much the same ..
- Type in SPY on your chart
- Click "Studies", the click "Edit Studies"
- On the left under "studies" drag down to RSIWilder or (RSI_EMA)
- Change "length" to "2". (the default is "14").
- Under "Plots: Oversold/OverBought - you can change your colors
- Click "Style", then click "Intraday"
- Then (for example) click "20 days", then click 4 hours
Have fun!
:>)
|
karennma 8,057 posts msg #111869 - Ignore karennma |
2/28/2013 11:29:17 AM
On the ToS charts you can draw your own arrows by clicking "Drawings", scroll down to "Arrow", and click the pencil.
To get rid of the arrows, right click the arrows and click "delete" or "hide".
|
vinci 13 posts msg #111890 - Ignore vinci |
2/28/2013 3:59:18 PM
This was from a previous post by optionplayer333 for those with a thinkorswim platform
hgi arrows> i rarely lose when i use these 3 indicator together
declare upper;
input MALength = 5;
def DM = high - low;
def Trend = if hlc3 > hlc3[1] then 1 else -1;
rec CM = DM + if Trend == Trend[1] then CM[1] else DM[1];
rec VForce = if CM != 0 then Trend * 100 * volume * AbsValue(2 * DM / CM - 1) else VForce[1];
def KVOsc = ExpAverage(VForce, 34) - ExpAverage(VForce, 55);
def TriggerLine = Average(KVOsc, MALength);
plot crossingup = Crosses(KVOsc,TriggerLine, CrossingDirection.ABOVE);
crossingup.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
plot crossingdown = Crosses(KVOsc,TriggerLine, CrossingDirection.BELOW);
crossingdown.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
crossingdown.SetDefaultColor(color.YELLOW);
crossingup.SetDefaultColor(color.CYAN);
insert it in the new box
ttm-squeeze
insert into new box
# @new
# @reference
#
# TD Ameritrade IP Company, Inc. (c) 2009-2013
#
# Source code isn't available.
declare lower;
input price = CLOSE;
input length = 20;
input nK = 1.5;
input nBB = 2.0;
input alertLine = 1.0;
plot Histogram = Double.NaN;
plot VolComp = Double.NaN;
|