Friday 12-21-07


Shorting up here at 88.50 for 85 retest and then 80 if lucky...this 86-90 is a key zone to me.....my concern is that the market is/was ready to POP with that previous consolidation....other concern is that they sold it off directly from the open yesterday so I'm not looking for that quick thrust down today
89.75 will take out runners and will void the 60 minute high target and 94.50
here it is...good to have runners..can actually relax...almost..

ok the pop off the 5 minute high ( borsellino Subtley mentions this in a Trading Markets interview years ago) ..and you can see the matching 5 minute bars at the highs and the outside bar......to get there..looks like my miracle targets aren't going to happen...greedy to expect two miracles in one day

Click image for original size
No Description Entered
pulled two off at 90.75...3 contracts left with stop at 89.75..need new highs and then stop will go to 91.25 on last contract..but need the new highs to do any of that
dow at new highs but not S&P....obvious cause for concern...but I know they will get a 60 minute high or low...sometime today...lol
filled at 90....flat now...divergence overruled the 60 minute target,,,so far
I know you're going to think im nuts but ive used the Ichi for many many years and it shows lots of support below here on the ES 3min

Maybe the Santa Rally is upon us? lol

[file]ES.jpg,126,,0[/file]

triples sit at 90.50 so u know which way I am going from down at this 88.75 area....perhaps the 60 minute high will come through
quote:
Originally posted by BruceM

triples sit at 90.50 so u know which way I am going from down at this 88.75 area....perhaps the 60 minute high will come through



nice trade bruce - what do you mean by "triples" if you dont mind me asking thx
last contract off just now at 94.75...a true holiday miracle....
Hi Gio,

I hope this links you to my thread on the triples......nice work on the charts...I'm hoping to have more time later to check them out....here is the triples concept

http://www.mypivots.com/forum/topic.asp?TOPIC_ID=2163

quote:
Originally posted by gio5959

quote:
Originally posted by BruceM

triples sit at 90.50 so u know which way I am going from down at this 88.75 area....perhaps the 60 minute high will come through



nice trade bruce - what do you mean by "triples" if you dont mind me asking thx

/*********************************************************
Alexis C. Montenegro © December 2004
Use and/or modify this code freely. If you redistribute it
please include this and/or any other comment blocks and a
description of any changes you make.
**********************************************************/

function preMain() {

setPriceStudy(true);
setStudyTitle("Ichimoku");
setCursorLabelName("Tenkan", 0);
setCursorLabelName("Kijun", 1);
setCursorLabelName("Chikou", 2);
setCursorLabelName("SenkouA", 3);
setCursorLabelName("SenkouB", 4);
setDefaultBarStyle(PS_SOLID, 0);
setDefaultBarStyle(PS_SOLID, 1);
setDefaultBarStyle(PS_DASH, 2);
setDefaultBarStyle(PS_SOLID, 3);
setDefaultBarStyle(PS_SOLID, 4);
setDefaultBarFgColor(Color.red, 0);
setDefaultBarFgColor(Color.blue, 1);
setDefaultBarFgColor(Color.green, 2);
setDefaultBarFgColor(Color.purple, 3);
setDefaultBarFgColor(Color.green, 4);
setDefaultBarThickness(3, 0);
setDefaultBarThickness(3, 1);
setDefaultBarThickness(2, 2);
setDefaultBarThickness(1, 3);
setDefaultBarThickness(1, 4);
setPlotType(PLOTTYPE_LINE, 0);
setPlotType(PLOTTYPE_LINE, 1);
setPlotType(PLOTTYPE_LINE, 2);
setPlotType(PLOTTYPE_LINE, 3);
setPlotType(PLOTTYPE_LINE, 4);
}

var bInit = false;
var vInterval = null;
var Tenkan = null;
var Kijun = null;
var xChikou = null;
var Senkou = null;

function main(Interval) {

if (bInit==false) {
if(Interval==null) Interval = getInterval();
vInterval = Interval;
Tenkan = middleDonchian(9,inv(vInterval));
Kijun = middleDonchian(26,inv(vInterval));
xChikou = close(inv(vInterval));
Senkou = efsInternal("calcSenkou",inv(vInterval));
bInit=true;
}

if(vInterval==getInterval()){
var Chikou = offsetSeries(xChikou,-26);
} else {
var Chikou = close(26,inv(vInterval));
}

var SenkouA = getSeries(Senkou);
var SenkouB = getSeries(Senkou,1);

if (SenkouA>SenkouB)
setBarBgColor(Color.paleyellow,0,SenkouB,SenkouA);
if (SenkouA<SenkouB)
setBarBgColor(Color.paleyellow,0,SenkouA,SenkouB);

return new Array(getSeries(Tenkan),getSeries(Kijun),Chikou,SenkouA,SenkouB);
}

function calcSenkou(source) {

return new Array (offsetSeries(middleDonchian(52),26),(offsetSeries(middleDonchian(9),26)+offsetSeries(middleDonchian(26),26))/2);
}