guspenskiy13 976 posts msg #120068 - Ignore guspenskiy13 |
5/25/2014 8:32:03 PM
Has anyone tried the TTM indicators?
They sell them for about ~$440 each, however some of them are included in ToS...
I believe they were made by John Carter....
I took a look at TNA chart from last Friday.... - impressive.
|
guspenskiy13 976 posts msg #120069 - Ignore guspenskiy13 |
5/25/2014 8:42:26 PM
1 minute..
|
guspenskiy13 976 posts msg #120075 - Ignore guspenskiy13 modified |
5/25/2014 10:24:09 PM
apparently the arrows are 3 bars late. that makes it less exciting
however still useful, especially when used on multiple time-frames
|
guspenskiy13 976 posts msg #120077 - Ignore guspenskiy13 |
5/25/2014 10:56:23 PM
interesting arrows for TOS
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);
|
guspenskiy13 976 posts msg #120093 - Ignore guspenskiy13 |
5/26/2014 6:43:55 PM
This is nice, you could just trade SPY based on the paintings, but:
we've got some RSI(2); PAR sar crossovers, money flow and 5/10 ema's....
who would think that PAR SAR would be so accurate in calling recent action...
hmmm
|
guspenskiy13 976 posts msg #120095 - Ignore guspenskiy13 |
5/26/2014 8:48:37 PM
When I look at those charts, sometimes I think that all you really need is the color....
You are long on blue, you are short on red...they last a long time and they define the trend...
maybe I should try that
|
johnpaulca 12,036 posts msg #120097 - Ignore johnpaulca |
5/26/2014 10:28:39 PM
if it was that easy we all be millionaires....glty
|
guspenskiy13 976 posts msg #120099 - Ignore guspenskiy13 |
5/26/2014 11:31:34 PM
that's what everyone says JP...and no one tries
|
jackmack 334 posts msg #120102 - Ignore jackmack modified |
5/27/2014 9:18:14 AM
guspenskiti13
Very nice indeed
Found it - helps to look - that's for sure.
Thank you for sharing
Cheers
|