In Part 2, of Designing a Trading System in MetaStock I covered how to code the first two of the four major components of a mechanical entry system. I had explained the coding of price and liquidity. In this article, I will cover the steps for coding the remaining two components, trend and volatility, into MetaStock. In the end, you will have the complete codes for a mechanical entry system.
Let`s begin with trend identification. Remember, `the trend is your friend` when trading. You always want to trade with the trend, not against it. Think of it this way, if you were swimming in the sea, and got yourself caught in a rip tide, is it easier to swim with the current or against it? It is the same with trading with a trend.
There are many ways to identify trends, and it`s not particularly important which method you use. You just need to use one. One of my preferred methods for identifying trending stocks is to find stocks that are trading at their current highs. You can do this by stipulating that the highest high price must have been achieved in the last `x` number of days.
Once again, the variables you use will depend on the time frame you are trading. But for this example, you want the highest high price in the last 240 days to have occurred in the last 20 days.
Using the formula reference section in the MetaStock Programming Study Guide, you can find the syntax of the highest high function, and then plug in the details. Then, using the `less than` symbol, you can specify the number of days must be less than 20. In MetaStock language that would be:
HHVBars(H,240) < 20
The final component to our entry system is the volatility measure. The aim of including this formula is to identify stocks that move enough for us to make a profit, yet aren`t so erratic that they keep you up at night. There are a few ways to measure volatility. However, my favourite is the ATR method. The ATR indicates how much a stock will move, on average, over a certain period.
For example, a one-dollar stock might move five cents on average over the last 20 days. You can divide this value by the price of the stock and you will have the average percentage movement of a stock. With these values, you can stipulate a minimum and maximum daily volatility value.
For example: You may want the ATR, divided by the average closing price, over the last 21 days, to be greater than 1.5%. Therefore, the average minimum volatility must be greater than 1.5%.
Additionally, you may want the ATR divided by the closing price, over the last 21 days, to be less than 6%. This sets the average maximum volatility at less than 6%. In MetaStock language that would be:
ATR(21)/Mov(C,21,S)*100 > 1.5 andATR(21)/Mov(C,21,S)*100 < 6
Putting all our code together, you see what your entry system looks like:
C>1 andMov(v,21,s)*C > 200000 andHHVBars(H,240) < 20 andATR(21)/Mov(C,21,S)*100 > 1.5 andATR(21)/Mov(C,21,S)*100 < 6
You now have now a workable entry system. Not only did you construct a robust system, but it also adheres to the KISS principal (Keep It Simple Simon). This system can be cut and pasted into the Explorer within MetaStock. However, the entry is only the beginning of a successful trading system. In later parts of this series, you`ll find the rest of the components that you need to design a profitable trading system.
David Jenyns is recognized as the leading expert when it comes to MetaStock and designing profitable trading systems.His MetaStock website offers a huge free collection of tradingrelated tips and tricks. Gain free access now.Click Here ==> http://www.meta-formula.com/subscribe
5 Steps To Opening An Offshore Bank Account
If you`re investing for the first time in an offshore account, it can be confusing. You must choose a reputable bank and handle the ins and outs of offshore accounting procedures. There are no first time investing procedures to follow. However, the following five simple steps will give you the information you need.3 Major Reasons To Bank Offshore
One of the biggest decisions you may ever make is selecting a bank, so knowing all the facts is very important. Many people are choosing to open offshore accounts. Why does offshore banking seem to be so great? The 3Ps, or privacy, protection and profit are the three major reasons to consider investing offshore. We will look at them in this article.15 Things You Should Know About Offshore Fund Managers
Do you know the person managing your money? If you don`t, you need to; knowing who is managing your fund is as important as knowing where your money is. It`s absolutely essential, and you should not hesitate to ask as many questions as you wish so that you`re sure you`re comfortable with where your money is being invested.