Saturday, July 24, 2010

StockValuer migrated to Unfair Value

I've moved to new web location http://www.unfairvalue.com/ . The Stock Valuer will be soon removed from the cyberspace. Please visit the new site for new articles.

Regards
Kamlesh

Saturday, May 16, 2009

test

package com.test; import java.util.List; import java.util.stream.DoubleStream; import javafx.application.Application; import javafx.collections.ObservableList; import javafx.scene.Scene; import javafx.scene.chart.Axis; import javafx.scene.chart.CategoryAxis; import javafx.scene.chart.LineChart; import javafx.scene.chart.NumberAxis; import javafx.scene.chart.XYChart; import javafx.scene.chart.XYChart.Data; import javafx.stage.Stage; public class SeriesChart extends Application { private LineChart lineChart; @Override public void start(Stage stage) { stage.setTitle("Line Chart Sample"); final CategoryAxis xAxis = new CategoryAxis(); final Axis yAxis = new NumberAxis(); xAxis.setLabel("X"); lineChart = new LineChart(xAxis,yAxis); // lineChart.getData().add(createSeries("geometric", Series.geomatricSeries(10, 1.4))); // lineChart.getData().add(createSeries("Arithmatic", Series.arithmaticSeries(100, 200))); // lineChart.getData().add(createSeries("Fibonacci", Series.fibonacciNumbers().mapToDouble(x -> x))); // lineChart.getData().add(createSeries("Primes", Series.primeNumbers().mapToDouble(x -> x * 100))); // lineChart.getData().add(createSeries("arithmeticoGeometric", Series.arithmeticoGeometric(100, 25, 1.2))); // lineChart.getData().add(createSeries("power Series", Series.powerSeries(DoubleStream.iterate(1.0d, i -> i * 1.2), 2.3, 1.0))); // lineChart.getData().add(createSeries("Collatz", Series.collatzSequence(649).asDoubleStream())); // lineChart.setTitle("Mathematical Series"); Scene scene = new Scene(lineChart,800,600); stage.setScene(scene); stage.show(); } public XYChart.Series createSeries(String name, DoubleStream series) { XYChart.Series line = new XYChart.Series<>(); line.setName(name); int[] holder = {0}; series.limit(23) .mapToObj(i -> new XYChart.Data(holder[0]++ + "", Double.valueOf(i))) .collect(() -> line.getData(), List::add, List::addAll); return line; } public static void main(String[] args) { launch(args); } } package com.test; import java.util.Random; import java.util.function.BiPredicate; import java.util.function.BooleanSupplier; public class MonteCarlo { private static Random random = new Random(); //whether the point is in circle of radius r with center at (r,r) public static BiPredicate inCircle(double r) { return (x, y) -> (Math.pow(x-r, 2) + Math.pow(y-r, 2)) <= Math.pow(r, 2); } public static BooleanSupplier randomPointInCircle() { return () -> inCircle(1.0).test(random.nextDouble(), random.nextDouble()); } public static double monteCarlo(BooleanSupplier experiment, int trials) { int pass = 0; int remaining = trials; while (remaining-- > 0) { pass += experiment.getAsBoolean() ? 1 : 0; } return pass/(double)trials; } public static double computePi(int trials) { return monteCarlo(randomPointInCircle(), trials) * 4; } public static int gcd(int m, int n) { return n == 0 ? m : gcd(n, m % n); } public static BooleanSupplier coprime() { return () -> gcd(random.nextInt(Integer.MAX_VALUE), random.nextInt(Integer.MAX_VALUE)) == 1; } public static double computePiCesaro(int trials) { return Math.sqrt(6 / monteCarlo(coprime(), trials)) ; } public static void main(String[] args) { // double piVal1 = computePi(10000000); // System.out.println(piVal1 + " vs " + Math.PI); double piVal2 = computePiCesaro(10000000); System.out.println(piVal2 + " vs " + Math.PI); } } package ui; import java.util.Iterator; import java.util.stream.Stream; import javafx.animation.AnimationTimer; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.canvas.Canvas; import javafx.scene.canvas.GraphicsContext; import javafx.scene.paint.Color; import javafx.stage.Stage; import ui.VogelsModel.CartesianCoordinate; public class VogelsModelVisualization extends Application { private static final long SECOND = 1_000_000_000l; public static void main(String[] args) { launch(args); } @Override public void start(Stage primaryStage) { primaryStage.setTitle("Drawing Operations Test"); Group root = new Group(); Canvas canvas = new Canvas(900, 600); GraphicsContext gc = canvas.getGraphicsContext2D(); root.getChildren().add(canvas); primaryStage.setScene(new Scene(root)); primaryStage.show(); gc.setFill(Color.SADDLEBROWN); gc.setStroke(Color.BLACK); int x = 450; int y = 290; Stream points = VogelsModel.florets() .map(coor -> coor.move(x, y)) .limit(800); Iterator iter = points.iterator(); new AnimationTimer() { private long lastUpdate = 0; Color[] colors = {Color.DARKGREY, Color.TEAL, Color.BLACK}; int n = 0; @Override public void handle(long now) { if (now - lastUpdate >= SECOND / 10) { lastUpdate = now; if (iter.hasNext()) { CartesianCoordinate point = iter.next(); double radius = 14.5; //gc.setFill(colors[n % colors.length]); gc.fillOval(point.x, point.y, radius, radius); n++; } else { stop(); } } } }.start(); } } package ui; import java.util.stream.IntStream; import java.util.stream.Stream; public class VogelsModel { private static final double C = 10; private static final double GOLDEN_ANGLE = Math.PI * (3 - Math.sqrt(5)); public static Stream florets() { return IntStream.iterate(0, i -> i + 1) .mapToObj(VogelsModel::floretLocation) .map(PolarCoordinate::toCartesian); } public static PolarCoordinate floretLocation(int n) { return new PolarCoordinate(C * Math.pow(n, 0.5), n * GOLDEN_ANGLE); } public interface Coordinate { } public static class PolarCoordinate implements Coordinate { private double r; private double θ; private PolarCoordinate(double r, double θ) { this.r = r; this.θ = θ; } public CartesianCoordinate toCartesian() { return new CartesianCoordinate(r * Math.sin(θ), r * Math.cos(θ)); } public static double degreeToRadian(double degree) { return degree * Math.PI / 180; } } public static class CartesianCoordinate implements Coordinate { public final double x; public final double y; private CartesianCoordinate(double x, double y) { this.x = x; this.y = y; } public PolarCoordinate toPolor() { return new PolarCoordinate(Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)), x == 0 ? 0 : Math.atan(y / x)); } public CartesianCoordinate move(int ox, int oy) { return new CartesianCoordinate(x + ox, y + oy); } } }

Wednesday, June 04, 2008

Oil Prices: Suprise again

The forever rising oil prices have continued to throw up surprises in the face of analysts who talk as if oil tells them every morning where it is headed. The surprises are not only limited to the course of the price movement, but its speed, its impact on economy and its inflationary expectations.

When teh crude started moving from 20$ per barrel people predicted it will go to 50$ and the economy will grind to halt.It will have wide reaching consequences in the industries consuming oil. They even talked about the third world war.

Oil did move to 50 but the much feared impacts didn't happen. People started talking about crude at 80. Some bolder ones said 100. OPil followed suit and economies of the world did largely bore the oil shock well.

Now the analysts changed their predictions. While they continued talking about their next target price (essentially 2X) of 150$. Oil gave them hope by touching 135$. The audacious 200$ oil folks were found smiling.

However, the impact of rising oil prices began to show its impact. It happened very silently. It happened in direct impact on inflation and secondary impacts through rising prices of few food items which started feeding oil guzzling cars rather than hungry mouths.

As we talk about the 200$ oil, I'm getting signals which suggest that oil may surprise people once more. It may correct to as low as 70-80$ per barrel in coming 12 months. However by this time the damage would have been done and the economies of he world would have shaved 2-3% in their GDP growth rates.

In find the fears about oil running out or rising from this levels completely unfounded. They ignore the basic laws of demand and supply. The day oil starts hurting growth, it will lose the steam which was driving it so far. The seemingly unstoppable engine of crude oil prices is about to stall in its upward journey and will hurtle backwards under the effect of its own gravity.

Good times will be back soon.

Tuesday, October 02, 2007

Black someday

We have them so often. Once in a while in different countries the headlines scream "Black Monday". The days when parties rudely come to an end and markets tank. And we are left with a hangover and a nonsensical talk of healthy corrections.

Don't get me wrong . I'm not reading out from pages of financial history. I'm writing about a not so far future, (before the end of year) when we are going to see a 1000 point drop in Sensex almost without a reason. The reasons will be invented later but if look carefully the reasons are being present now. The towering 1.321 trillion dollar market cap of Indian equity market is crumbling under its own weight. The leaning tower of PISA is much more stable. It has withstood centuries. You can years before it falls but the markets?? You better look at figures

The sensex 23.42 times its earning, 5.57 times its book value. The boards of these companies know that these earnings are not sustainable. That is why the dividends yield is at 1.02%. This means only 24% of the earnings is being distributed as dividends.

The E in the P/E ratio is inflated due to
  • Clever(but legal) accounting which marks down the interest costs. The indian companies have taken more than 25billion dollars of ECBs/FCCBs. The currency fluctuation gains due to declining rupee are against interest cost. These one time gains are propping up the earnings.
  • High prices of all commodities are benefiting primary producers like mines, oil exploration etc. The secondary producers are able to pass up these costs down. For example lets say few years ago I bought X tons of steel at Y crs and sold steel pipes at 1. 2Y crs. Today the same X tons of steel costs me 3Y crs and I sell it at 3.5 Y crs. Even though my business hasn't moved an inch my sales have grown almost 3 times and profit 2.5 times.
  • Apart from these special factors there is a genuine growth in economy which is being helped by benign economic atmosphere characterized by low inflation, not so high interest rates, demographic factors and increased productivity.
The P/E rations are inflated because
  • The markets are confusing the growth in revenues/profits to growth in output. The output of the companies is growing at much slower pace and once the price rise stops, the growth in revenues and profits would be much lower
  • The markets are not adjusting for special factors contributing to the earnings
  • The markets are extrapolating the growth far to ahead in future when the current global environment doesn't seem to be so conducive for growth.
So we are in a situation where the companies are showing better than average earnings and markets are giving these earning better than average discounting in the hope that these earnings are not only sustainable but indicative of even brighter future.

When this optimism comes to an end(I wish I knew when!) a sudden realization would struck the investors that like fools they have been holding risky securities which are paying 4.25% earning yield (out of which you get 1.02% as dividend) when your conservative grandfather is earning a cool 9.5% in FDs riskfree

On the eve of that Black day, the high-flyer portfolio manager will come home and say "You were right dad"

Saturday, October 14, 2006

Logical fallacies: representativeness bias

Decision making is science in its own right. I have seen very few people who are good decision makers in one field and very poor in others. Many people fail to realize this. If their investing decisions go often wrong then they would probably infer that
1. They don’t have the correct information
2. They have the correct information but They don’t have required skills to derive correct inferences from that information.

Their comments on their failures give away their beliefs.. “If only I had the insider information I would have made money”…. “If I had done MBA in finance I would have been able to analyze the stock and made money”

More often than not, the reason of their failure can be attributed to failure in making rational decisions. It has nothing to do with finance. It has nothing to do with the amount of information they get. In coming few weeks I would explain the fallacies in reasoning which cause erroneous decisions.

Suppose I tell you that in last one year, every Monday morning I wrote a BUY or SELL in my diary for Sensex. In past one year 69.2% of my weekly BUY decisions were correct. Would you be interested in buying a weekly newsletter from me?

Interesting question. Think about it before you jump to a conclusion. As I’ve already hinted I’m questioning your capability to take rational decisions.
..

..

Before you send me the mail confirming you decision, I would like you to know the secret behind my correct predictions. I tossed the coin every Monday to decide whether the market will rise or fall.

Number of weeks I gave a BUY signal : 26
Number of weeks the Sensex closed higher than previous week: 36
Number of weeks I gave a BUY signal and Sensex rose : 18
% of weeks where my BUY signal was correct = 18/26 => 69.2%

Now you can infer that if you succeeded in 69.2% of all your BUY decisions this year, you haven’t done better than a Buffett’s orangutan in coin flipping contest. Similarly if an analyst brags about his “in the bull’s eye” recommendations he hasn’t done great job either. In Behavioral finance this is known as representativeness bias.

Regards
Kamlesh

Sunday, October 01, 2006

The two envelopes problem

Many times the investors switch stocks with fallacious reasoning created by a flawed argument. I would show an example of one simple puzzle which leads into complex error of judgment.

Let's say you are given two indistinguishable envelopes, each of which contains a positive sum of money. One envelope contains twice as much as the other. You may pick one envelope and keep whatever amount it contains. You pick one envelope at random but before you open it you're offered the possibility to take the other envelope instead.

Now, suppose you reason as follows:

  1. I denote by A the amount in my selected envelope
  2. The probability that A is the smaller amount is 1/2, and that it's the larger also 1/2
  3. The other envelope may contain either 2A or A/2
  4. If A is the smaller amount the other envelope contains 2A
  5. If A is the larger amount the other envelope contains A/2
  6. Thus, the other envelope contains 2A with probability 1/2 and A/2 with probability 1/2
  7. So the expected value of the money in the other envelope is

V = ½ * 2A + ½ * A/2 = 5/4 *A

  1. This is greater than A, so I gain on average by swapping

Source- wikipedia

Your intuition would most probably realize that there is something wrong but you may find it difficult to spot flaw in the reasoning given above.

When you are calculating expected values using the equation in step 7, you are assuming that 50% of the time the other envelop would contain 2A and 50% of the time it would contain A/2. Its like saying that 50% of the time the envelops would be (A/2, A) and rest 50% of the time these would be (A, 2A). This is incorrect because the problem statement doesn’t say that. I can play the same game by giving (100$,200$) envelops repeatedly.

What you should see is that for any given set of envelops (A,2A), you would pick A 50% of the time and 2A, 50% of the time. If you are holding the 2A then you have conditional probability of 100% to lose by a swap. When your are holding A then you have conditional probability of 100% to gain by a swap. It is important to note that both his gain and loss are same as the smaller sum and the expected gain by swapping is zero.

V = 1/2 * 100% * A + 1/2 * 100% * (-A) = 0

When you are offered a chance to swap, you haven’t gained any extra information about the contents of another envelop, hence the probability of choosing the higher value envelop remains same. I’m as good as with the chosen envelop as I’m by swapping.

This situation can have real life equivalents with an additional twist. A transaction cost involved in swapping which makes swapping a losing proposition because the expected value is negative.

Another variation of the problem where the following 2 arguments lead to conflicting conclusions:

  1. Let the amount in the envelope you chose be A. Then by swapping, if you gain you gain A but if you lose you lose A/2. So the amount you might gain is strictly greater than the amount you might lose.
  2. Let the amounts in the envelopes be Y and 2Y. Now by swapping, if you gain you gain Y but if you lose you also lose Y. So the amount you might gain is equal to the amount you might lose.

Solution:

Argument 2 has already been explained above so let us focus on argument one. When I lose I’m holding a sum twice as large as the sum I’m holding when I gain by swapping. So the A/2 in losing swap transaction is equal to A in the gaining swap transaction because A in both are not same.

Saturday, July 29, 2006

PEG Stands for Purely Esoteric Garbage

PEG is completely worthless piece of information in analysing a stock. Its The relation to price and earning is non linear. First look at the DCF equations would tell you that. You would have used DCF models. Just plot a graph on the DCF valuation and different values of expected growth. Notice the curvature of the graph. You will see that any approximation of this curve using a straight line plot will lead you to huge errors.

PEG comes handy when you have to convince yourself to buy a stock which has cought your fancy. The decision has been made but the rational mind requires justification. In comes PEG. At stock growing at 20% available at PEG of only 1. Utter bullshit!

PEG would give you wrong result even if your growth estimation was correct. If you are ready to tolerate bit of maths then here is why I'm saying this.

Suppose PEG is a constant.

P = P/E * E
P/E = PEG * growth
P = PEG * growth * E

Suppose you have 3 companies with EPS, of Rs. 1 per year.

  1. Available at price 100, expected to grow at 3%
  2. Available at price 300, expected to grow at 9%
  3. Available at price 900, expected to grow at 27%

PEG of all these choices are same. Suppose you invest Rs. 9000 in each of these companies. Lets also assume that your prediction about growth was correct. Now see what happens in the 20th year from now.

  1. Earning 157.8, accumulated profit 2418.3
  2. Earning 154, accumulated profit 1534.8
  3. Earning 938, accumulated profit 4375

Earnings = EPS* no. of shares

In hindsight company C was obviously better choice than A but A was significantly better than B. Why did we get this bizarre result? This is because PEG is a variable. Its different for each combination of price and growth.

Mathematically PEG is a slope of the curve plotted between growth and P/E applicable for that growth. When you compare PEG of two different companies then you are assuming that linear relationship between growth and P/E and you would get wrong results here even when you correctly predict the growth.

Sourced from:
http://in.groups.yahoo.com/group/lawarrenbuffet/message/2169

Mad rush for high growth

  1. If the investing public in general, anticipates growth then the prices move up. Many times this rise in prices negates any advantage that the investor would get if the growth did materialize
  2. If the prices are high you are essentially paying for a future which has not yet materialized. [compare this with paying for the assets which exist as of now]
  3. As the business conditions are subject to change there is a risk involved in paying for growth. Higher the expected growth, higher the risk.
    1. If you are expecting 27% per annum growth for 20 years and the company grows at 24.3% for 20 years, you have been amazingly accurate in your prediction. Your forecast is just 2.7%(0.1G) off the mark. But the accumulated profits in these 20 years would be 30% less than what you forecasted and the profit in the terminal year would be 35% less than your forecast. If you paid for this high growth you may end up loosing even after this stellar clairvoyance.
    2. For a 10% growth prediction the same 0.1G, i.e. 1% forecasting error would result in only 12% and 17% hit to accumulated profits and terminal year profits.
  4. Its easy to overrate growth expectations. If a company has grown at a rate of 50% p.a. in last 5 years and future looks bright, can I expect the CAGR of 27% p.a. for next 20 years. Its very difficult. If the company grows at CAGR of 27% for 20 years its profits would be 119 times current profits. Given that the company had grown 50% p.a. in last 5 years, the profits 20 years later would be staggering 904 times the profits it had 5 years ago. The question arises
    1. Does the company has management capacity and vision to achieve this? Scaling up 904 times in 25 years is almost impossible(except for startups which have low base).
    2. Even with 10% p.a. productivity enhancements, this would require 17.7 times resources. It can be capital or human resource. Can the company raise so many resources?
    3. If the future is indeed that bright many more competitors would join the fray. The margins would go down due to law of diminishing returns. Can you expect the revenues to grow more than 119 times?
    4. Suppose the company has 10% market share of the industry. If the industry grows at 15% in the same period the market share of this company would rise to 72.7%, almost a monopolistic level. What is the strength that makes you assume that this company would become a monopoly in 20 years.
  5. The more you look at these arguments the more you would realize the fallacy of the growth assumptions. When you do this you become averse to paying high for high growth. I would love to buy a growing company if I don’t have to pay an extra dime for that growth. The profits of M&M, Sterlite, Jindal have grown as fast as market favorites like Infosys, Wipro. But I paid P/E of 2-5 compared to p/E of 25-40 commanded by Infosys, Wipro. When the growth materialized I gained 20 to 30 times appreciation. If the companies were to fail and go bankrupt I would have got out without significant loss because the price paid was 50% less than the market value of the assets. Such valuations look highly improbable now but the markets have history of manic depressive syndromes. So its better to wait patiently when markets are in manic phases.
  6. Finally what makes you think that the underdogs wont turn the tables. In 2002 SAIL was deep in red. It reported loss of 1707 crs. You may have thought SAIL would go bankrupt, but it bounced back to profitability. In FY05 the profits were 6817 crs., in FY06 4013 crs. Needless to say stock price jumped through the roof.
  7. Growth is good. We all want our companies to grow. But we want them to grow more than the growth that’s already built into prices. Absolute growth number is meaningless and its pursuit has been one of main blunders, the money managers have made throughout the financial history[I’ll explain this some other day].

Saturday, July 15, 2006

On Discounted Cash Flow Valuation

If we would have been able to reduce the stock valuation to a set of mathematical equations then equity investing wouldn’t have been fun. While I understand the utility of following a systematic approach to valuation, I give very little weightage(approx. 2.5%) to the results of my DCF models in my decision making process. The reason for that is simple. The process required so many assumptions that the probability of being right is very small. It is, however, important to do this exercise because it makes you aware of the risks you are taking and it can give you some clues about the upside.


I generally prefer doing sensitivity analysis on the results of these models. For example if valuation resulting from a set of assumptions is X then I would like to see how this changes if the variables change. For example what if the growth tapers off? What if the interest rates rise? This gives me some idea of the margin of safety I have, while making the investment decision.

Each long term investor must understand that at the bottom of it, he is a businessman. You may be owning smalls parts of many businesses but that doesn’t change the essential nature of the argument. When a businessman takes a decision, say to expand capacity, he would do rough calculation on the expected returns. He would analyze the output price levels which would be needed to make the breakeven. He would check the investments required, fixed costs, running costs to make an educated guess about profitability of the project. He would do an analysis of competitive advantages and disadvantages. He would analyze the market to see if there is room for expanded capacity. If the plan looks fine on paper, he would check if he has resources, expertise and capital to execute the plan. Finally he would think about fall back plans, exit options in case the things don’t go as planned.

To me it would look pretty odd to see a businessman basing his investment decision solely on the output of discounted cash flow valuation models. If this argument is correct then the utility of DCF model to for long term investors should not be overrated.

There is a difference in analyzing the expected returns from a mature business and analyzing the expected returns from a new project. The mature businesses tend to be more predictable but not predictable enough to e reduced to a set of mathematical equations.

Regards
Kamlesh
La Warren Buffett

Saturday, May 20, 2006

Butterfly Effect

"What happened? 13.2% down in 7 days. It's brutal. It didn't even give you time of adjust your expectations. And all for no obvious reasons. You tune into CNBC and the analysts talk about the correction that was long over due. Correction! all right..but why the **** you didn't tell me that it was incorrect."

I've seen it happening so many times that I've almost lost interest. But I want to answer the question that many people have asked me in past few days.Why did the markets fall?

Do you know about Butterfly Effect?

No?

Ok…Do you know butterfly's wings might create tiny changes in the atmosphere that ultimately cause a tornado to appear (or, for that matter, prevent a tornado from appearing).

No jokes. It a concept from Chaos Theory. The butterfly effect is a phrase that encapsulates the more technical notion of sensitive dependence on initial conditions in chaos theory. Small variations of the initial condition of a dynamical system may produce large variations in the long term behavior of the system.

The concept becomes relevant in investing world because the valuation methods used to estimate value of a stock are ultra sensitive to the initial variable. On top of that we routinely indulge in oversimplification of valuation concepts so that they can be expressed in simple ratios.

Lets talk about P/E. Most of you would know that the ratio is calculated by diving price by earnings. But which year's earning are talking about. You would often see reports stating that the stock is quoting just 8 times its FY08 EPS! Cheap..isn't it?

Even if you calculate by taking the average earnings of last 3 years, as Graham suggested, how would you know if P/E 15 is expensive or not? What's the benchmark?

The benchmark is provided by the risk free interest rate and the estimate of risk premium.

The valuation process is known as Discounted cash flow method.

But the problem with the model is that it takes estimates of highly volatile variables as inputs. There is no way of predicting the growth rate of next 10 years. Nor can you ascertain the trends in risk free interest rates or the right level of risk premium. At best we go by our guesstimates which are susceptible to changes in general mood. When everything looks positive people find 1% risk premium enough to invest in blue chip stocks. At the same time they overestimate the expected growth rate. To see the effect lets take an example.

Suppose you were given a task for estimating these variables for 10 year period and here are the actual results


Growth

Interest rate

Risk premium

Estimate

22%

8%

5%

Actual

18%

9.00%

6.00%

The interest rate rise a bit. Growth is a little lower and investors little more cautious. By all means you have performed very well. But the result.

You valuation model will show that the value of stock must be 75% of your initial estimate. Its shocking. and it's analogous to Butterfly Effect in chaos theory.

This minor change in initial estimates can cause the estimates of correct valuations to change. The impact is almost always coordinated. That means the changes in these variables impact the valuations in the same direction. For instance when the interest rates rise the estimates of growth are revised downward and risk premium shoots up. The combined effect can be disastrous.

To answer the question..Why did the markets fall? A butterfly flapped its wings, which, through complex chain of intermediate events, caused instability in the world financial system and well......Rest is history

Cheers
Kamlesh

Note: text in italics sourced from wikipedia

Thursday, May 04, 2006

Sensex and Sensibility

In 2004 end I has posted a report Exclusive report on Sensex underperformance on the poor performance of Sensex and reason behind that. The summary of the report was that BSE has done rather too many changes in the index and has gone more ‘with the momentum‘ which has made it a speculative portfolio which can never beat a long term portfolio.

Though it is too early to say, but the Sensex has become more stable as a portfolio. The number of changes per year have come down and have become sensible. In last 2 years they made only 3 changes with Maruti, NTPC and TCS taking place of MTNL, HPCL and Zee tele.

The following stats would give you the idea about this.

1996 - 15 changes

1998 - 4 changes

2000 - 4 changes

2001 - 1 change

2002 - 4 changes

2003 - 5 changes

2004 - 1 changes

2005 - 2 changes

The results are showing up. I can bet that they wouldn’t have done any better by making more changes to the indices in last 2 years. In fact the number of changes in popular global indices is very low. Dow had 7 changes between 1999-2006. S&P 500 typically has 15-20 changes per year. If an index has to become worthy of tracking by the index funds then it should be like a long term portfolio.

Its very difficult to beat a well diversified index with minimal changes. Princeton University Professor Burton Malkiel found that the S&P 500 beat 70% of all equity managers retained by pension plans over the 1975–1994 20-year period. Another study by Robert Kirby, former Chairman of Capital Guardian, indicated that out of 115 U.S. equity mutual funds that were in business for 30 years or more, only 41 (36%) beat the S&P 500 by some margin, and only 23 of the funds (20%) beat the index by 1% per year or more. Report

But why should it be so difficult. For example if you want to beat S&P then all you have to do is to find JUST 1 stock which you think would perform worse than performance of S&P next year. Then you should divide the money in rest 499 stocks as per the index weightage. If you turn out to be correct then you will beat S&P 500 and you would be doing better than 70% well paid finance managers.

It looks good as a theory but in reality the only god damned stock which you removed turns out to be the stock which outperforms the index. (remember m&m’s expulsion from Sensex in 2002)

That’s why its such a fun to race against indices. I envy the pleasure Buffett gets while beating S&P 500 year after year. I hated Sensex because it could be beaten hands down with value investing approach. If it continues on the path of stability (buy and hold) and it would be fun to compete against it.

Monday, May 01, 2006

Comparing your performance

Comparing performace of 2 investment portfolios is not a matter of comparing 2 numbers. In this message I would describe what factors you should consider before comparing performance of your portfolio with anybody else's.

1. Performance of a portfolio on paper(on one web) is not comparable to the performance of your invested money. Many members have said that they were following the portfolio on paper. Paper portfolios are waste of time and create illusion of learning. This is because the two important psychological factors, fear and greed are absent when you operate without money.

2. Performance can be compared on equal timeframes. If you have beaten Sensex this year, it not a reason to be happy. Similarly if you failed to beat it(like me) you don't need to worried.

3. Performances on short time frames(less than 3 years) are not worth comparing.
[By my estimates, next 3 years be a disappointing for all those who are investing today by selecting top performing mutual funds. ]

4. Performances on dissimilar investing styles are not comparable. You can not compare value investing based portfolios with growth oriented portfolios. Similarly comparisons in mid cap vs. large caps, focused vs. diversified portfolios are equally meaningless. Each of these have different risk associated with them which doesn't show up in `Top 10' lists.

5. Performance which don't take into account the short term capital gain tax and brokerages are a delusion. Similarly for mutual fund investors what matters is the returns after subtracting loads/expenses. This factor alone makes indices difficult benchmark to beat because the indices are long term portfolios and have no fee(or minimal fee charged by ETF)

While ending this experiment I'm not proud because it gave 53% p.a returns. I'm proud because I got those returns by following my investment philosophy. This gives me confidence that I can reasonably hope to continue getting above average returns in future.

In investing the determining factor your maturity aren't your returns. Its your investment philosophy. Returns are byproducts of how you think. For new investors I think its OK to loose money on the way towards figuring out your investment philosophy. For mature investors its OK to under perform the markets in short/medium terms as long as you are following your investment philosophy(see Buffett's relatively poor performance in 1997-2000 period).

Hence I should extend my congratulations to all the members who didn't get good returns while following their well thought investment philosophy. We are all running a life time marathon. If you are right then the time will prove you right. If you are throwing darts then the laws of probability will catch up with you, sooner or later.

Posted: Apr 23, 2006

http://in.groups.yahoo.com/group/lawarrenbuffet/message/1968

Holding companies: A real life example of complexities involved

I would like to share a 'live' case from my personal portfolio on the subject of investment in holding companies.

On August 6th, 2004 I sold Sterlite and bought MALCO to take advantage to disparity in the prices.

http://in.groups.yahoo.com/group/lawarrenbuffet/message/809

When Sterlite came out with rights issue, I was concerned that MALCO would increase its debt to unsustainable levels(it later renoucned its right and pruned its debt). A month after the swap I reversed this transaction. Though we made 14% gain in this, the swap was a mistake because the LWB Special portfolio was not supposed to take risky bets for small arbitrage gains.

http://in.groups.yahoo.com/group/lawarrenbuffet/message/891

However in my personal portfolio I continued back and forth swap between Sterlite and MALCO depending upon which looked expensive relative to other. Over next year I completely swapped Sterlite with MALCO. MALCO became my single biggest investment and it was the only stock where my personal portfolio differed from LWB Special. Sterlite continued its rise and MALCO couldn't keep pace. Consequently I was underperforming compared to market.

Considering the fact that MALCO's market capitalization was less than the value of stake it owned in Sterlite, I had every reason to remain patient but as I've explained elsewhere holding companies test the limits of your patience.

The following table shows the movement of the stocks from starting value of 100. Its clear that although in long term the value of holdings is taken into account, it can take years. One might get frustrated and sell(or may be die in the meantime!). When the revaluation takes place its sudden and abrupt. MALCO gained 76% in 5 months in 2004. After this it became dormant while Sterlite continued to rise. On April 7th, 2006 Sterlite had risen by 353% whereas MALCO was up by only 127%. At this point MALCO's market capitalization was 625 crs. whereas the value of 4.61% stake it held in Sterlite was 1057 crs.

Date

MALCO

Sterlite

28-Jul-04

100

100

21-Dec-04

176

128

7-Apr-06

227

453

19-Apr-06

372

516

View chart of relative price movements

I was obviously frustrated with this situation and broke my prudent limits on maximum exposure to single stock. To my pleasant surprise the price of MALCO rose 64% in last 10 days. Even today it was locked at upper circuit breaker at Rs.458. (consequently last 10 days turned out to be most profitable 10 days of my investing career)

Coming back to original question. Was I right about swapping Sterlite with MALCO? May be not. Sterlite rose from 416% since July 04 whereas MALCO rose only 272%.

I know what you are thinking! If I had swapped from Sterlite to MALCO on July,2004, back to Sterlite on Dec, 04, back to MALCO again on 7th April 06 then I would have made 920% gain. Such perfect timing works only in theory.

The reasons which compelled me to buy MALCO remained valid throughout the period from July 04 to date. So in such case if I did a swap it was logically correct decision. In spite of a correct decision I haven't made anything more than what I would have made by just sticking to Sterlite, the way we did in LWB Special.

To summarize, exploiting the inefficient valuation of holding companies remains a perennial attraction for many value investors. Many of us underestimate the complexities and timeline involved in correction of these inefficiencies. The purpose of holding company is to hold the stock..forever. Isn't it irrational to expect that `unlocking of value' in such cases?

On the other hand it is easy to get impatient in such cases and miss those 10 days when the inefficiencies are corrected. As a rule most value investors would be better of staying away from complicated situations like this.

This rule may not apply if you are willing to hold INDEFINITELY. In those cases its always advisable to swap as soon as you see a sizeable advantage. If you try to time your entries and exits you may end up getting returns lower than either of the stocks involved.

Regards
Kamlesh

Do we learn from mistakes?

Not necessarily.

Our assumption that we learn from mistakes is one of many such fallacies that arise from confusing logical deduction with logical induction. Other such fallacies include "taking high risk for high returns".

Allow me to delve little deep here. Its happens to be my favorite subject. Logical deduction implies a guarantee that if the premise if true, the conclusion would be true.

Lets take a classic example. "If it rains the ground would be wet". If you know that it has rained today then you can deduce that the ground would be wet.

However when you see a wet ground in the morning and say that "it must have rained tonight", you are using inductive logic. In logical induction, a premise provides some degree of support for the conclusion but not a guarantee.

Nothing new..Right?? Just look around and you would find that this is THE MOST COMMON mistake we make regularly and we never learn from it.

A learning process requires assimilation of knowledge and putting it to practical use. When we venture out in open, with `less than perfect' knowledge, we make mistakes. It's a part of learning process. But its not the mistake, per se, which teaches you. It requires a rigorous amount of discipline and analysis to be able to figure out what went wrong. An Iranian saying goes like this "man is a donkey which falls twice in the same ditch" . Leaving aside the question "are women any better", I tend to agree with this saying. More often than not, you would find a pattern of mistakes getting repeated in your life. That's what you call your weaknesses.

Coming back to original question.

We commit mistakes in the learning process but committing mistakes doesn't teach us anything. It's the analysis and corrective measure that enables us to learn. Unless this feedback loop is established you can continue making the same mistakes forever.

My personal experience suggests that the costliest mistakes of my investing life didn't teach me anything worthwhile. Its like having a crush on someone as a teenager. You don't really learn anything. You aren't mature enough to be able to analyze otherwise you wouldn't have been in that situation in the first place. In the initial few years, I lost lot of money in trading but I didn't learn anything from that. You can argue that I learnt the lesson that you can't make money in trading. I use the same argument to justify that foolishness but the fact of the matter is, I was sowing seeds in an arid land. It was waste of time and money.

There is no correlation in the number of your own mistakes and learning. I've leant a lot by reading and analyzing mistakes made by other people. At this stage I don't need to commit a mistake to be able to learn.

So my advise to new investors is that unless you are sure that you have, what it takes to learn from mistakes, don't commit them. Stay away from direct equity investments. You don't have to be jack of all trades. You got to be good at what you doing for living.

This doesn't mean that you can't be master of all trades. You can(my mind is saying I am!). Its difficult, time consuming, complex and confusing task but not impossible.

Posted: Mar 21, 2006
http://in.groups.yahoo.com/group/lawarrenbuffet/message/1903

Asset Allocation

In this message I would like to give my views on the question of "What assetclass should one look into and does the fund size matter?

You should invest in the areas which you know of. There are thousands
of areas where you can invest but if you don't know anything about
that field, stay away! For instance I don't invest in real estate even
though I know that it has given decent returns in past. I simply don't
know enough about it to take decisions. I know that many people would
say that they can invest with help of some financial advisors but it
takes a certain minimum knowledge to be able to decide whether the
financial advisor can be trusted to take investment decision on your
behalf.

Having limited your asset classes in this manner you can evaluate the
risk/return profile of that asset class with your own risk appetite
and return expectations.

The asset allocation would be different if you had different amount of
investment money. An investment transaction has two aspects, the
investor and the investment. When you invest 10% of your total
networth(including cash, fixed income instruments, equity, real
estate, precious metals & other assets) then you can afford to take
higher risk because even a 100% equity portfolio mean that your
exposure to equities is just 10% of your networth.
Another aspect that comes into play is the effect of volatility of
the investment. If you have networth of 20 lacs and you invest 50% of
it in equities, then be ready to face few days in year when your
networth may be down by 2% or Rs 20,000. If you panic in such case and
loose you sleep then I would say that the asset allocation itself was
wrong.
Finally the amount of investment matters in asset allocation because
of the time characteristics of assets. Liquid investments can be
encashed at your will but in other cases you can end up losing if you
liquidate your investment before maturity date. This is true not only
in debt but also in equity. If you plan for a long term equity
investment then you should know that in short term the prices may go
down. If you are forced to sell due to your needs then you have paid a
penalty. So you got to create a rough demand/supply schedule of your
funds. How much money you might need in less then a year, in 1-3 years
and how much of money you can safely park for future. In economic
terms this is called a demand schedule for funds. Similarly if you are
earning more than your immediate needs then you will be accumulating
funds which create your supply schedule for funds. Your aim should be
to avoid mismatch in requirement for your funds and availability of
liquid assets.

Having done all this homework yourself or with help of your financial
advisors, you are ready to ask specific questions about specific asset
class. There is no direct asnwsers for asset allocation problem.

Posted:Mar 7, 2006
http://in.groups.yahoo.com/group/lawarrenbuffet/message/1866

My Investment philosphy

I don't have any academic background in finance and I don't miss it.
I've followed a unique way to train myself in this subject. The basic
tenets of my approach are.

1. Hear it straight from the Horse's Mouth: I don't like text books. I
would rather read Kenyes and Adam Smith, than reading a text book on
economics. Similarly in investing I've learnt more from the investors
like Graham, Ficher and Buffett. Here too I preferred reading all the
60 odd letters to shareholders rather than a cook book on Buffett.

2. Practice it: No matter how much you read theory you never learn
without applying the theory into practice. If you lack conviction to
put your money where your mouth is, then you haven't really learnt. At
various times 70 to 140% of my net worth has been in stocks and it has
given me a lot of impetus to learn, to avoid mistake. I can not afford
to speculate. I reserve my gambling instincts to card games.

3. When someone points to the moon, don't catch the finger: You got to
imbibe the essence of teachings and develop your own strategy. Time
and again people ask me that you buy commodity stocks and still say
that you follow Buffett's philosophy. I'm operating in a different
environment, with different fund size and with different level of
skill. I have much better chances of getting high returns following
myself than following Buffett. Just the same way as Buffett developed
his own strategy after learning from Graham, I have to develop my own
optimized for my operating environment.

I said that "Circle of competence is a fuzzy thing" because everyone
misjudges his competence level. You would remember the famous
experiment where people in the group were asked to judge their driving
skills on a scale of 1 to 10 relative to the group.
The average of their scores was 7.5 !

I'm no different. In 1994, when I was 18, I used to think that I know
a lot about stocks. Five years later I had lost a fortune, trading in
stocks and I still believed that I knew about investing. All that
changed after I read Buffett. Things have become much simpler and
pleasant fro that point on.

The differences between my approach 4 years ago and today have to do
with maturing of my strategies, more realistic assessment of risks
involved and increased confidence. Now I know that I can afford to sit
back for a while and still generate above average returns. I don't
have to outperform Sensex in each of its every mad rush.

Over the years I have become more circumspect in giving advise. The
quality of investment is just of facet of investment transaction. The
investor is the second facets. Suppose I give a long term `buy' advise
and you think that it will give you 100% in 2 month. It falls by 30%
that month and you sell it, then my advise is meaningless. I've come
to know that even sound advise can harm people. That's why you would
never see messages from me, with glossy titles like "million dollar
advise" even if I believe it is.

In spite of being in IT I find IT businesses very difficult to
predict. I like commodities because the equations are very simple
there. The next thing I like are branded businesses where revenues are
predictable.

To summerize, investing is not about making great and accurate bets.
Its about being 100% sure in avoiding big mistakes. The amount of
effort it takes to be 100% sure automatically ensures that you end up
buying stakes into great businesses and returns usually follow.

Posted: Feb 5, 2006
http://in.groups.yahoo.com/group/lawarrenbuffet/message/1781

Dividend yield

Low dividend yield can have different meanings for different people.
To me dividend is a very useful return provided by the company for
today's income needs while retaining sufficient cash to keep growth
engine humming. The future earning is like promise of a party later
in lieu of a starvation diet today. The investor who lives on
investment income needs dividend and has every right to consider 1.5%
dividend yield as low(compared to returns from fixed income). The
investor who is skeptical about the promise of party at a later
date(like me) would not like the starvation diet.

In the matter of dividends I belong to old schools(of Graham). I don't
like companies which pay very low dividend. I can't imagine such a
bright future which requires the management to keep every penny of the
cash the business is generating. The capacity to pay dividends lends
credibility to the assumption that the management expects the current
earning to grow from here.

My past experience in this field shows that dividend yield can be an
important parameter in judging the sustainability of earnings.
1. Most good companies have maintained their dividend at the same
levels even in the time of crisis(M&M 2000-01). This may be an
indicator that the management thinks that the lower earnings of that
years are temporary downturns.
2. Most good companies have increased the dividends as their profits
have grown, thereby maintaining the dividend payout ratio.
3. Many dishonest companies can be nailed down during analysis because
they show continuous rise in earnings but no change in dividend. Such
earnings are either fake or ephemeral.
4. The good companies which pay very little dividends(Software
Infy/TCS) haven't really achieved anything much by retaining the cash.
I would have been happier if these companies paid more liberal dividends.

I'm not convinced by the argument that you can get the same return due
to rise in the price of stock. In such cases I've to (1) make an
assumtion that such price rise is permanent (2) I've to liquidate a
part of my holding to satisfy my income needs.

I've reservations on both counts. Capital gain is not comparable to
dividend till the gain is booked. If I've to reduce my stake in a
company just to get enough cash for my current needs, then it doesn't
solve my purpose.

Posted: Nov 28, 2005
http://in.groups.yahoo.com/group/lawarrenbuffet/message/1691

Deferred Revenue Expenditure

In last few years many Indian companies had adjusted their accumulated
deferred revenue expenditure against the security premium
account(SPA). Such write offs have helped the companies to escape the
reduction in profits due to amortization. In my analysis I try to
account for such things but I felt a need to have a broader discussion
on this subject. So here is the complete story. Do post your views and
comments.

Around 2001-03 the companies started the restructuring binge. The auto
companies were leading the pack. Here are some new items.

http://www.blonnet.com/iw/2003/02/09/stories/2003020900270700.htm
Tata Engineering set off Rs 1,180 crore against the share premium
account in 2001-02, Ashok Leyland is in the process of writing off Rs
160 crore the same way while Tata Steel had planned to set off a huge
Rs 1,550 crore now.

M&M wrote off around 500 Crs. from SPA.

While I understand that there is nothing wrong in deferring the
genuine product development expenditure which is going to pay off in
later years, I have 2 serious objections.

1. I'm skeptical about the type of expenditure being charged into
Deferred Revenue account. I read a document on guidelines for
accounting for such costs.
Monograph on Accounting for Research and Development Cost
http://www.aicmas.com/rd.doc

Page 13 of this document sets out what can be termed as a Research and
Development cost. It further adds "The amount of the research and
development costs described above should be charged as an expense of
the period in which they are incurred except to the extent that
development costs are deferred in accordance with the following
paragraph" In page 14 it describes what can be deferred.

The essence of this document is that you can defer the costs only when
you can reasonably expect the costs to be recovered from future
revenues. However the trend I noticed in Indian companies is to treat
it as "when you can dream the costs to be recovered from future
revenues". All the new product developments are straight away being
deferred regardless of their commercial viability. You can see this by
looking at low R&D expenses of Indian Companies because they never
account for it in the year such costs are incurred but defer it for
later periods.

2. The second and most significant objection to this related to
avoiding amortization of such costs. You say that I've spent 100 crs.
this year on R&D and I'll recover that in future revenues and hence
you don't treat 100 crs. as expenditure but defer it. Next year you
write of 100 crs from balance sheet. Let's assume our R&D pays off and
you make 30 Crs. per year for next 10 years. As you have already
written off the costs you would report 30 Cr p.a. profit. Had you not
done, and amortized the costs over 10 years, your profits would have
been 20 crs. p.a.
And what if the product fails. If you write off your mistakes will
never be visible in the income statements and quarterly results. After
all in a world blinded by Q on Q growth who has the patience to read
balance sheets!!

The guidelines clearly say "If development costs of a project are
deferred, they should be allocated on a systematic basis to future
accounting period by reference either to the sale of use of the
product or process or to the time period over which the product or
process is expected to be sold or used"

It is clear that any such write offs will give incorrect picture of
the future earnings. Now coming back to Indian companies, I'm
surprised that the managements have lauded their decisions to resort
to such "deceptive" tricks.

An excerpt from Tata Motors report
`Telco has recently written off assets and expenses to the tune of Rs
1,180 crore from its balance sheet against its securities premium
account (SPA), thereby eroding its reserves by 40 per cent and net
worth by 36 per cent. The company has written off deferred revenue
expenses on account of product development and employee separation of
Rs 933 crore, accounting for the bulk of the write-off. The write-off
due to the fall in the value of investments and fixed assets is Rs 32
crore and Rs 215 crore respectively.
According to Mr Kadle: "The rightsizing of the balancesheet will give
a true reflection of the company in the future years. This is not the
end of the restructuring process. We are looking at further cost
reduction and the requirements of working capital." `
Other companies are no different in their description of "financial
restructuring"

As an analyst I don't care what the managements say but any deviation
from standard accounting practices makes my life difficult. I'm unable
to delegate my analysis process to my analytical models and I'm forced
to do a case by case analysis. The legalese used in notes to accounts
makes it even more difficult to understand what's happening.

let's take an example. Tata Motors had spent around 1400 Crs. on
development of Indica. Out of that they deferred 1000 Crs. and then
wrote it off by charging it to SPA. Now I should amortize it over a
period same as expected life time of the product. I'll to make a
guess here and take a random 10 year period. You would notice that the
write off has significant impact of jacking up profits. More than this
it gives very incorrect picture of the Return on Net Worth(RONW). The
numerator(Profit) is jacked up as there is no ammortization. The
denominator is braught down because the net worth is brought down by
write off. The results are obvious. In case of Tata Motors the RONW is
24.2% for FY03-04 and 30.16% for FY04-05. No auto company in the world
generates such returns on networth(GM -15.56%, Toyota 12.94%, Ford
13.49%, Daimler Chrysler 6.59%). If you adjust the book value and
account for amortization the RONW comes to more reasonable figures 15%
and 20% for last 2 years. Looking at the results of Tata Motors for
last 15 years you would realize that the CAGR of its book value(even
after adding back the 1180 crs) is ONLY 6.83%. Taking dividends into
account the returns come to 12.38% p.a. This shows to what extent the
write offs skew the real picture. (For detailed calculations refer to
the following file)
http://in.groups.yahoo.com/group/lawarrenbuffet/files/A%20School/tataMotors-Writeoff.xls


Some people go even farther to skew the reality using prism of their
wishful thinking and their ignorance of valuation concepts. If a
company has average RONW of r and has dividend retention ratio b then
the expected growth rate would be r*b. With the jacked up RONW of 30%
in case of Tata Motors and taking average retention ratio of 55% you
can get a Expected long term growth rate of 16.5%. The they calculate
FY07 EPS and multiply it with P/E based on 16.5% long term growth
rate. If you do this you can stretch the valuations like rubber band.
I see renowned analysts applying such faulty logic every day.

To summarize, analysts should make the adjustments for such write offs
because if you don't, you would end up with grossly incorrect picture
of company's profitability.

Posted: Nov 20, 2005
http://in.groups.yahoo.com/group/lawarrenbuffet/message/1672

Corporate (Mis)Governance Index

I would like to share some of the methods I use to quantify "Lack of
Corporate Governance". These simple and unorthodox methods may not
sound convincing but they work.

In 2003 I realized that most of my mistakes in past 2 years were
occurring due to inability to filter out dishonest managements. After
looking various texts I was unable to come out with anything concrete.
That year I started work on a Corporate (Mis)Governance Index.

I would admit that
1.The initial target was to create a Corporate Governance Index. After
failing on this I tried the reverse and created Corporate
(Mis)Governance Index.
2. Initially I was skeptical of any success in this project. But the
experience of last 3 years has shown that these homegrown tricks are
better than having no clue.

here is the methodology I use(Don't laugh at it till you try!!)
1. Check board composition.
variables :
a. Number of people of the same surname in the board i.e. no of
Ambani's in RIL board. With some knowledge you can also add related
surnames:). Check both absolute and percentage of total board strength
Interpretation: >3 or 16.66% means bad, >4 or >25% is too bad

b. Number of executive directors from the pervious set (point a)
Interpretation: Little fuzzy here. If the ratio is too high that means
they are paying all their uncles and nephews fat salaries. If its too
low it means they have added even 'Mataa jii' to the board.

c. Find number of non-working directors. (Mother's, sons, daughters of
main promotor who never attend a board meeting)
Criteria: people who skipped more than 1/3 of the board meetings. Give
AGM, EGMs extra weightage.
Interpretation: This is to find the how many of the family members are
there on board just for the heck of it. Sometimes it also points out
independent directors who are just pawns of promoters.

d. Total salaries + commissions + bonuses as a percentage of Net
profits (take average of last 3 year's profit because 100% jump in
profit shouldn't mean 100% hike in salaries)

e. Check the history of equity dilution. You can find this in any
financial website like IciciDirect.
Search for word preferential allotment. Can't find it use google!
Interpretation: Preferential allotment at low prices is the most
misused tool in the times of bearish markets.

f. Check history of mergers and acquisitions. If you find that there
are acquisitions of companies where promoters held 100% stake, you can
be sure that the parent company would have paid hefty price.

g. Similarly check for the divestment/ de-mergers /sellouts. Check the
price the company got out of them and who bought the assets.

h. You can also check the ratio of independant directors. In my tests
it hasn't helped in a single case(not sure why)


The data about points a -d is available on the annual reports. Don't
ignore the corporate communications that the companies send as
worthless crap. Atleast read the salary increases part!.

As for f, g, h experience helps. One reason why I never start with
high investment ina company is that it takes time to come to know
about a company. Once you hold some stake your eyes are on lookout for
news about the company and you would learn to see the instances of
misdemeanor.

Some interesting cases of high Corporate MisGovernance Index
1. Penta Media (scored on virtually every point)
2. Reliance group (scored very high on a-d)
3. Sah petroleum (small company which came out with IPO. The faily
members take 8.5% of profits home!!)

Some of the companies from LWb Special whose scrored were relatively
higher are Jindal Steel and Power & Sterlite.

The companies which scroed zero on Corporate MisGovernance Index
include HDFC, ITC, HLL, INFY. It just shows that this index is not
exhaustive enough to measure MisGovernance by professionals.

Surprisingly all PSU's scored low on Corporate MisGovernance Index.
may be that's becasue the index doesn't measure lack of
disclosures/lack of foresight etc.

Mutual Fund selection

"The dumbest reason in the world to buy a stock is because it's going
up" – Warren Buffett

I would say the next dumbest thing would be to buy a mutual fund
scheme just because it's NAV is going up. But that's exactly what the
investors do when they buy mutual funds on the basis of short term
performance. I read an artcile about the (in)consistency of mutual
fund performance.

EXCERPT: "The S&P's Mutual Fund Performance Persistence Scorecard
(link opens a PDF file) measured the consistency of top-performing
mutual funds over three and five consecutive years. As of May 31, only
10.7% of large-cap funds, 9.2% of mid-cap funds, and 11.5% of
small-cap funds maintained a top-quartile ranking for three
consecutive years. Which is to say that only one in every 10
top-performing funds in a given year stays in the top 25% for the next
two"

This is a word of caution for the investors who think that they are
making intelligent decision than the people jumping directly into
markets. After all, if you fall from 10th floor it hardy matters if
fell from the window or you were inside a lift which fell 10 floors.

The article further goes on to suggest that you should carefully note
the expense ratio of the fund. As per the author, one of the golden
rule is "If you are investing in mutual funds, look for funds with an
expense ratio of less than 1%".
In India most of the equity funds have expenses ratio higher than 2%
which means that Indian investors have more reasons to worry.

Read the complete article at.
Beware of Dogs
http://www.fool.com/news/commentary/2005/commentary05102707.htm

If you want to know more about expense ration read the following post
Expense ratio : The indicator of Mutual fund costs
http://in.groups.yahoo.com/group/lawarrenbuffet/message/822

Posted:Oct 10, 2005
http://in.groups.yahoo.com/group/lawarrenbuffet/message/1572