Feb 20

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Bernanke is now between the “rock” of recession and the “hard place” of the soft dollar, with economic growth slowing and core inflation at 0.3% and rising. The Fed historically wants a core inflation at +0.2%, giving an annual rate of +2.4%, which is considered “price stability”. A rate of +0.3% puts us in the +3.7% annual rate zone, well above the Fed’s comfort level.

Should this trend continue, this is a worst-case scenario of slowing growth and rising inflation. In that case, there’s nothing left for the Beard to do but pray (but those puppy-dog eyes will not get you anywhere):

praybenpray.png


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 19

I was away from my desk for almost the whole day, but I did make one small trade.

(I am running out right now to do more stuff, so I’m posting this video before youtube has made it available for viewing. If you try to play it and youtube says it’s been removed or something, just try back in a few minutes).

Watch this post's video on Youtube

Feb 19

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Its been brought to my attention that many of my posts are offensive to the readers of MtM. First and foremost, this is a trading blog. There are several good authors here, so I will continue to visit. However, to keep others from being associated with my nonsense, I have started The Trading Fraternity.

It will be composed of offensive jokes, tasteful nudes (not me!), and even trading related material. My first post is another Ned prank call. If Ned hasn’t offended you yet, just wait. He gets to everyone eventually.

I want to make this last post to thank Richard for my time here. Hopefully, this will quell the controversy, and this site can continue to educate traders without offending them.


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 18

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


ganked from slashdot..


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 18
Feb 17
Feb 16

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Michael Lomker thought of me when he saw this. He left the link on an old post, and I thought it was worthy of being highlighted (even if it is a misrepresentation of my pimp status).

Michael felt the need to defend DT’s honor. Its nice that someone besides Judy is doing it.

Watch this post's video on Youtube


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 15

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


I could either post a video of that spectacular trade I just made, or this. I chose option “B.”

Watch this post's video on Youtube


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 15

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Watch this post's video on Youtube


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 15
Feb 14

A video about one way I decide to bail on a trade early.

Watch this post's video on Youtube

Feb 14

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


howard-yahoo-finance.png


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 14

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


it’s not what happens in our life that makes us suffer, but how we interpret it.

We can spend our time planning out our lives, setting goals and creating an illusion of control over this crazy world, but in reality we have little–if any–control. You can be in the best shape of your life and on cloud nine one minute, then get hit by a car the next, ending the rest of your days as a paraplegic. You never know what’s around the corner. Then, every once in a while, we’ll predict something that comes to pass, feeding our ego and again reinforcing the illusion we can see our future–yet it is just that: illusion.

The Buddha taught all life is suffering. Sounds depressing–from a superficial analysis–but the deeper meaning is our suffering is due to attachment. When we lose something to which we feel attachment, it can become the tipping point over an edge.


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


Feb 14
Feb 13

This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


If I was as smart as Prospectus or Richard, I may or may not participate in this ET thread. I found it interesting, and hopefully, one of these rocket scientist or level 3 programmers, can glean something from it to make us all rich.

To construct a 20 day exponential moving average you must first construct a 20 day simple moving average. This simple moving average is the starting point for the exponential moving average. Assume that the simple moving average value for day 20 is 42; the simple moving average value for day 21 is 43; and the simple moving average value for day 21 is 44. We then subtract the day 20 moving average value from day 21 simple moving average value and get a difference of 1.00. This value (1.00) is multiplied by an exponent. In this case, the exponent is .1. We then add .1 to the simple moving average value of day 20. The exponential moving average value of day 20 now becomes 42.100. And this goes on indefinitely. To calculate the exponent, divide 2 by the time period. In our case, we divided 2 by 20 to arrive at .1.

I think a psychologist would have a field day, observing some of the ridiculous comments here from people who are probably compensating for their poor performance in the stock market by trying to impress their fellow traders by bluffing that they have some scientific understanding of what they do. Unless you have a math/scientific background, please do not comment on this thread.

A moving average of length n of say a time series (like prices of a stock etc.) is computed as xbar = (Sum of n consecutive elements)/n. That means you take only into account n elements, no more, no less. The elements are all equally weighted with weight 1, it is possible to give each element a different weight.

The purpose of a moving average is to smooth a time series, ie. to replace each member by a moving average of its neighbours. Say you take a length of 5 for the ma, then an element xn is replaced by ((xn-2) + (xn-1) + xn + (xn+1) + (xn+2))/5. That is you need to know members xn+1 and xn+2 before you may replace xn by its ma. And that is the lag of the ma. Smoothness is achieved in two ways: by the choice of length and by the choice of the weights for each x. Giving far out members, like the xn+2 in the above example, less weigth, say you multiply them by 0.5 only instead of 1, will make the ma more responsive, using a longer length or a smaller multiplier for the recent members will make it smoother.

The use of a ma in Technical analysis is less to smooth a time series, but to implement a trading method, you do not replace a member xn by its ma in the way described above, but you replace xn by ((xn-4)+(xn-3)+(xn-2)+(xn-1)+xn)/5. That is you shift the ma to the right. A TA program, like Metastock, does have an option to left-shift the ma, that is to plot it correctly. Do this and you will graphically understand lag.

The exponential ma is computed as Close*percentage + (previous EMA) * (1-percentage), percentage ranging from 0.01 to 1. Starting value is Close (or whatever value you use). That is an EMA always uses *all* previous data, weighted, while a simple ma only uses data as described by its length. So there really is no equivalence between percentage used in an EMA and length (or number of periods) used in a SMA.

That said, for practical purposes the equivalence may be computed as already quoted in previous posts. Prices are not quoted infinitesimal, that is you do not pay 78.234598122…. $ for a stock but 78.23 $ so prices are “quantized” and that is the reason the formula makes sense. The farther you get away from a certain value the less its contribution to the current value of an EMA will be till it drops below the threshold.

An SMA is a Fininte Impulse Response (FIR) filter. The lag, or delay, of any end-to-end symmetric (or anti-symmetric) FIR is approximately one half the filter length. In the case of a time series SMA, the lag of an SMA is exactly (N-1)/2. So a 7-bar SMA has a lag of exactly 3 bars. This lag is referred to as the “group delay” in engineering terms. [Group delay is defined as the rate of change of phase with respect to angular frequency.]

Regarding the 2/(N+1) for the period in the alpha calculation of an EMA, while I don’t know the origin of the formula, the reason the MA is called “exponential” (to answer one of your original questions) is the way an EMA’s transfer response decays is in amplitude over N bars. [e.g. The most recent value of the time series is weighted by alpha, the next most recent value is weighted by alpha*(1-alpha), the next value by alpha*(1-alpha)^2 .... the Nth value is weighted by alpha*(1-alpha)^N.]

Note that for any given period N, the weight of alpha*(1-alpha)^M where M>N, the weighting affect on the MA approaches zero as M increases, hence for practical purposes, the formula of alpha=2/(N+1) generally describes the affect of the EMA weight N periods back.

The concept of “period” in an EMA is approximate, unlike an SMA or WMA where it is exact. MA’s get more interesting when you starting looking at Digital Signal Processing, when you start looking at phase changes. SMA’s and WMA’s have linear phase lag defined by the fixed period, but EMA’s, due to the recursive nature of its calculation, has a nonlinear phase lag.


This post was contributed by a guest author, and does not necessarily reflect the views of Richard or MovetheMarkets.com


« Previous Entries Next Entries »