Wish I was up for this 300 pip overnight move, but had to get some sleep, the set up even though a little dirty on the previous post, did mark the top of the move within 25 pips. Good morning and good trading to all today, will keep you posted p.s. Euro Appears to be…
Ambush At Resistance On Euro
Update 9:42pm: Ambush level got a 19 pip bounce as of this writing, enough to hit first target and secure limited risk trade on remaining position. Ambush setting up on previous resistance of yesterday
Thursday March 26 Summary
Another interesting day in the world of trading today with ES resuming its recent uptrend-at-all-cost and closing at the highs while EC closed at the lows, sure dont see that every day. Here is how futures mutliple time frame trends ended up on the day: ES 120 minutes has stayed bullish the whole day with…
Thursday Market Trend Summary
Update 12:43 EST: While ES has remained rather bullish at kept plugging away at new highs , up until this moment, EC charts are starting to look more bearish. Update 8:00 am EST:So far ES is in uptrend / bullish on all 5 time frames, euro is bullish on all 5 times frames also and…
EC Wedge
Update 11:30am: this one played out false break out way and paused at the pivot. Euro is consolidating into a tighter range, usually followed by a large move. Trading above the pivot and overall bullish outlook on the Euro, suggests it could be to the upside, either way watch for break either way and be…
Welcome to ESECFutures.Com
Hello and welcome to ESECFutures.com, These are first hours of this blog, hopefully in the futures it will provide you with plenty useful trading resources as well as some objective technical analysis to aid you trading. Currently, main goal of creating this blog is to organize my personal analysis in convenient format and hopefully help…
Market Delta Code for Trade Station
This market delta code will only analyze price action data from the data displayed on you screen, so to go further back in time adjust your chart setting accordingly. inputs:Threshold1( 150 ),Threshold2( 300 ),Threshold3( 600 ),DisplayDelta( false ),Type( 1 ), // 1 = Use Upticks/Downticks, 2 = Use Bid/AskBidAskArraySz( 1000 ); variables:TickSize( MinMove / PriceScale…
Heikin Ashi Paintbars for TradeStation
Hey Traders, here is code for Heikin Ashi candlesticks, excellent tool for determining market trends inputs:HollowColor( White ),UpTrendColor( DarkGreen ),DnTrendcolor( Red ),Avg( 34 ) ; variables:GreenBar( false ),MyHaC(0),MyHaOpen(0),color(0),colorW(0),TMA1(0),TMA2(0),Diff(0),ZlHa(0),ZlCl(0),ZlDif(0),keep1r(false),keep2r(false),keep3r(false),keepingr(false),keepallr(false),keep1g(false),keep2g(false),keep3g(false),keepingg(false),keepallg(false),utr(false),dtr(false),upw(false),dnw(false),result(” “);{CrossOver formula}TMA1= Tema(haC,avg);TMA2= Tema(TMA1,avg);Diff= TMA1 – TMA2;ZlHa= TMA1 + Diff;TMA1= Tema((H+L)/2,avg);TMA2= Tema(TMA1,avg);Diff= TMA1 – TMA2;ZlCl= TMA1 + Diff;ZlDif=ZlCl-ZlHa; keep1g=(haC>=haOpen or haC[1]>=haOpen[1]);keep2g=ZlDif>=0;keepingg=(keep1g OR keep2g);keepallg=keepingg OR (keepingg[1] AND (Close…
Heikin-Ashi, Free “TTM TREND” Indicator Code for TradeStation
Hey Traders, you might have noticed that on most of my charts I use for analysis Candle Colors are not standard green for up candles, red for down candles, That is because I am using a paid version of TTM Trend indicators of TradeStation which essentially is Heikin Ashi modified bars. Heikin-Ashi is very useful…
Binary Heikin Ashi Crossover for TradeStation
Hey Traders, this binary heikin ashi code will be displayed in a subgraph with either 1 for uptrend or 0 for downtrend, excellent if you want to look at original style candles and still use the heikin ashi trend tool: {HACO}inputs:Avg( 34 ),AvgDn( 34 ); variables:TMA1g(0),TMA2g(0),Diffg(0),ZlHag(0),ZlClg(0),ZlDifg(0),TMA1r(0),TMA2r(0),Diffr(0),ZlHar(0),ZlClr(0),ZlDifr(0), keep1r(false),keep2r(false),keep3r(false),keepingr(false),keepallr(false),keep1g(false),keep2g(false),keep3g(false),keepingg(false),keepallg(false),utr(false),dtr(false),upw(false),dnw(false),result(” “);{CrossOver formula}TMA1g= Tema(haC,avg);TMA2g= Tema(TMA1g,avg);Diffg= TMA1g – TMA2g;ZlHag= TMA1g…