Friday, October 30, 2009

HSI / MHI Hang Seng

I've been searching the web for blog posts and forums to gain insight into the HSI. It seems some of the comments are dated. If you trade this I'd appreciate any feedback or information you can offer (what doesn't work, what works) from your experience. Here is what I have learned thus far;

It's technical intraday chart looks very technical and normal, the daily looks like its on crack, gapping all over the place. The opening gap break out seems to work well, gap and run. I've been using the first 5 to 8 minutes to gauge the direction and strength. Then I bottom fish and take the breakout for my position and let it ride. Last night worked perfect, huge gains, sold when the upwards trend line broke.

I also only trade the "morning session" up to about midnight EST, then its bedtime. The "afternoon session" seems to have a mind of its own, like a different day.

The first half of the morning session moves and trends, the second half can be choppy, the range (ATR) increases too. Just before each session closes the price goes nuts.

I've read that the market is heavily manipulated by technical traders? I'm not sure what that means, it looks like it has some structure on the 1 minute time frame.

Questions for you if you trade this;

  • What is your daily target (in points or dollars)
  • What is your daily loss limit?
  • Do you trade specific time of the market?
  • Do fibs work? I have noticed they work somewhat, good gauge of a pullback but I generally don't count on them.
  • Do pivot points work? My guess is not since the gaps are huge, perhaps weekly pivots?
So far the P/L is floating in the black a little above break even and that's OK with me. Since I'm new to the Asian market, I need to learn it before going to bigger positions.
Any input would be helpful for me as I am building my strategy and plan for trading this puppy.

I also open up the chat room just before the market opens, its been quiet. Anyone know of any chat rooms for the Asian market?

Tuesday, October 27, 2009

VWAP

Definition


"Volume Weighted Average Price. A measure of the price at which the majority of a given day's trading in a given security took place. Calculated by taking the weighted average of the prices of each trade. The method is used by institutional traders, who often break a given trade into multiple transactions."

Another definition

The VWAP for a stock is calculated by adding the dollars traded for every transaction in that stock ("price" x "number of shares traded") and dividing the total shares traded. A VWAP is computed from the Open of the market to the market Close, AND is calculated by Volume weighting all transactions during this time period.

VWAP, or Volume Weighted Average Price is a tool used by some traders, I first learned of it from Brian Shannon who trades stocks. This won't work for forex since there is no volume.

There are a few different ways of displaying this in Amibroker. It can be a simple line like a moving average, this is the most common way pro's use it. Amibroker has a function to display it behind price, look in the help for these two functions with examples;

  • PlotVAPOverlayA
  • PlotVAPOverlay
Here are a few ways tp lot it and some code to try out.

eTokes Blog post on VWAP
I suggest reading his post, as well as Brian's post on VWAP, links below. eToke used a vertical "study" line drawn on the chart. This might give you an error on your chart if there is no line drawn. Here is his code with a little fix for this problem (adding "Nz");


Plot VWAP starting at a horizontal study line (Study ID set to ST)

//VWAP since last change in sentiment
TurningPoint = IIf(Nz(Study(“ST”,GetChartID())==0,1,0));
BarsSinceLastTurn = 1 + BarsSince(TurningPoint==1);
StartBar = ValueWhen(TurningPoint==1, BarIndex());
RunVolume = Sum(V,BarsSinceLastTurn);
IIf (BarIndex() >= StartBar, MTVWAP = Sum (C * V, BarsSinceLastTurn ) / RunVolume,0);
Plot (MTVWAP,”MTVWAP”,colorPink, styleLine);

Other ways to plot VWAP

Plot VWAP starting at selector line

This is another way, it will display the VWAP starting from where your selector line is placed. I use it for short term trading to see where all the volume is, makes finding support / resistance a bit easier when working with breakout.

_SECTION_BEGIN("Selector Line VAP");
segments = IIf(SelectedValue(BarIndex()) == BarIndex(), 1, 0);
PlotVAPOverlayA( segments , 300, 50, ParamColor("Color", colorDarkGrey ), 6 );
_SECTION_END();

Plotted like a moving average

_SECTION_BEGIN("VWAP");
Bars_so_far_today = 1 + BarsSince( Day() != Ref(Day(), -1));
StartBar = ValueWhen(TimeNum() == 093000, BarIndex());
TodayVolume = Sum(V,Bars_so_far_today);
IIf (BarIndex() >= StartBar, VWAP = Sum (C * V, Bars_so_far_today ) / TodayVolume,0);
Plot (VWAP,"VWAP",colorOrange, styleThick);
_SECTION_END();


Other links on VWAP
VWAP link 1
VWAP link 2

Tuesday, October 20, 2009

Chat Room

Most nights I'm trading EURUSD or HSI (mini Hang Seng). Tonight I'm in the chat room mentioned in an earlier post. Join me if you like. Tonight I'm looking at HSI. IB symbol for Amibroker is MHIV9-HKFE-FUT-HKD

CHATROOM

I was contemplating using twitter as a chat medium but I haven't explored it much or used it. Stocktwits is also a possibility but again I don't know much about it. Any comments on it's use compared to a chat room would be beneficial. Also, are any readers interested in chatting in the evening?

Sunday, October 18, 2009

EURUSD

The last post on EURUSD talked about some basics and a short update as price was playing with the trend line. I am currently long and I plan on holding for the ride.


WEEKLY CHART
From the weekly chart we can clearly see that price has entered an "air" zone, there is no meaningful resistance on the way up to the top of the yellow box.









Daily Chart - Long History
The last time price had to overcome resistance it popped through the orange trend line on the third attempt (yellow circle). Price followed the upward red trend line and is still following it. More on this line later on.... We just broke the blue trend line, and as it happens, on the third attempt just like the prior break. No we are into the yellow free air space.








Daily Chart - Closeup
Price just broke through the blue horizontal trend line, on the third attempt, same as the last horizontal trend line break. The pullback after the breakout above the orange horizontal trend line came to the upwards trend line and the 50% retracement. Note that it did not come back to the orange trend line, indicating a strong upward trend following the red line. Keep this in mind when looking to enter on the recent break.








Intraday
The yellow area is the S/R "zone" from the weekly chart. It looks like we are clear for now. A good area to place a but LMT order would be at 1.4790 to 1.4844 for a low risk opportunity.







What's next?



Breaking the upward red trend line - This would only mean that the rate of increase or rise in price has slowed. Once it breaks through, look for it to come back to it and test it, then fall. No telling when this line will break.


Pullback - look for a pull back to the upward red trend line or the blue horizontal trend line. The best choice might be whichever one of those area also lines up with a fib level and a round number. I might even load up more on a pull back.


Be patient and wait for the pullback. If you need some help with pull backs watch this
Pullback Video.


Do you have a position right now? Are you planning on geting in on this move?

Monday, October 12, 2009

HSI - Mini Hang Seng, and the big brother MHI

I live near Toronto, eastern time zone, I work during the day (not in the finance or trading field). I have free time after dinner and do some short term trading. Forex doesn't do much from 7pm to midnight unless you want to play ranges and scalp. Scalping doesn't work for me. I was looking to trade something that moves a little less choppy, has some liquidity, shows the volume, and can be traded technically. From my research which includes reading forums and blogs I have found the Asian markets are a good place for that. I'm taking trades at night on the mini Hang Seng futures (HSI).

Other contracts I have looked at include the following;


SPI - S&P/ASX 200 Index (Australia)
APZ9-SNFE-FUT-AUD

mini Hang Seng Stock Index
(MHI) MHIV9-HKFE-FUT-HKD

MSCI Taiwan Index @ SGX
TWV09-SGX-FUT-USD

Be sure to adjust the symbol for the correct contract expiry before trading.


Of the above, I have chosen to concentrate on MHI. Here is the chart so far tonight, 1 minute time frame over several days.
As you can see it trends nicely and has the odd gap fill. Trading shuts down for lunch time in Asia and when the come back there can be huge swings in the opening price, so trade small. I typically trade 1 or 2 contracts, depending on the set up. Right now the P/L is up and down, I'm learning the instrument and as long as I stay afloat and break even over the week I'm generally happy for now.

Intraday - HSI


Daily Chart - HSI


UPDATE:

Mr. Addict blogs about his experience with trading this instrument, both discretionary and Auto trading. Very interesting read and to me, his blog shows that he checks his results, indicating a high level of interest in success. This is something I lack (the checking results part) but I'm working on keeping the trade journal up to date. I'm going to use another approach and use AFL to import my IB TWS generated trade log and plot the trades. Then my notes will make sense. Keeping a spreadsheet doesn't appeal to me, it to slow, I prefer scratching notes.

Mr. Addict contributed a very valuable comment for those that trade MHI or HSI and use IB as their broker. Here is his comment, I've inserted the approximate USD equivalent values beside the HKD value so you can easily relate.

Addict said...

Why don't you try the full size contract, i.e., HSI instead of MHI? The bundled commish on MHI is 34 HKD (4.38 USD) per round trip and it's worth 10 HKD (1.29 USD) per tick. So price has to move four ticks in your favor to break even.

With HSI, the commish is 60 HKD (7.74 USD) per round trip, but each tick is worth 50 HKD (6.45 USD). So price only has to move two ticks in your favor to at least break even.

Better yet, go unbundled and you pay only 20.30 HKD (2.61 USD) per round trip for trading HSI, and 13.16 HKD (1.69 USD) for MHI. With unbundled, you need only one tick movement in your favor to break even with HSI, and three ticks with MHI.

EURUSD

UPDATE
Looks like a false breakout to me. It could also be a shakeout but I dont think a shakeout is that easy in forex and given this is a well watched trandl ine, there are too many participants at this level to do that.




Original Post
I was looking at the EURUSD chart today, deciding how to play pair as it nears long term S/R. My son came into the room and asked me what I was doing. I explained the bar chart and told him that we could make lots of money if our prediction was right. I asked what he thought the chart would do, first taking no more than one minute to show him how prices bounces off previous S/R levels, showing him the trend lines and S/R lines I drew. His 30 second view into the future is attached below and I have to tell you, its as valid as any other.

I'm playing this as a breakout for one reason only, this level has acted as resistance four times already and there is upward pressure from a very long trend line. There are three outcomes I see in the next week or so;

1: Breakout and huge move to the upside because of the long term nature of the two trend lines.
2: Breakout and a failure within a few days, price will move back below the 1.4821 area in a classic 2B move and then tank over multiple weeks if not longer.
3: Price will bounce off this area and head lower, below the uptrend line, then we are moving sideways. until a low is broken.

BTW - I have used Tipster Trendlines to place my trades. Check out this AFL for Amibroker for placing error free trades. "Error free" refers to the task of placing the trade, it does NOT refer to a trading system. the AFL also offers a risk management tool.

In short - this is a great place to watch price and place a trade. In other words, don't waste your time trading in between S/R lines on your chosen time frame.

Not sure about the long term, I'm focusing on the weeks ahead. Just for kicks, I'm posting what a 9 year old boy thinks of this market.

Disclaimer

The information presented on this site is for educational and entertainment purposes only. This site contains no suggestions or instructions that you must follow, do your own research and due diligence before committing your cash to the markets. Your on your own.