AtricleZine
#1 in Business Subscribe Email Print

You are here: Home > Finance > Currency Trading > Designing a Trading System in MetaStock- Part 2

Tags

  • anything
  • please
  • outline
  • trend following
  • anything under
  • speculative stock

  • Links

  • 6 Practices for Achieving Excellent Self-Care
  • Link Popularity - How Many Inbound Links Do You Need?
  • Break Routines To Help Your Depression
  • AtricleZine - Designing a Trading System in MetaStock- Part 2

    Job Interviews - Six Blunders to Avoid
    Everyone needs good interview question and answer advice. But just as important, you need to know what other interview mistakes to avoid. Based on my own 30 years of experience as a Hiring Manager, plus talking with many of my peers over the years, here are the most common interview blunders.These blunders will
    his is a measure of how much money a stock trades. It is important to identify stocks that have enough money moving through them so that you`re never caught with a stock you can`t get out of. For this example, let`s say we require the 21-day average of volume multiplied by the closing price to be greater than $200,000. In MetaStock language this would be:

    Mov(v,21,s)*C > 200000

    In the next article I`ll go through the last two components needed to design a mechanical entry syst

    BPO - Whose Job is It, Anyway
    BPO (Business Process Outsourcing) has become a dirty word in the west. It signifies loss of jobs. It means some nondescript, incapable, dumb, less-than human creature sitting somewhere in the third-world is eating steadily into the innards of a white-collared worker in the US or UK. Perhaps, there is some truth in that. Or
    In Part 1 of Designing a Trading System in MetaStock, I had discussed the major components you needed to be able to track to create a mechanical entry system. These were measures of price, liquidity, trend, and volatility. The question now is, how do we code this into MetaStock?

    First, let me offer you the most valuable piece of knowledge I have acquired over the years about MetaStock formula writing. This one secret will turn you into a MetaStock master. Do you think I know all of MetaStock`s hundreds of pre-programmed formula and propriety indicators? Well, I`m good, but I`m not that good.

    When coding in MetaStock, the key to getting it “right” is to write what it is you are trying to achieve “down in English”. Once you`ve done this, it is easy to convert it into a MetaStock formula.

    Let`s look at an example. Our first entry condition is a measure of price. As mentioned in Part 1, you want to set a price minimum to remove speculative stocks. Please note that the values you select will depend on the exchange you are trading. Some markets tend to be more expensive than others. For this example, we are looking to design a long-term trend following system to trade on the Australian Stock Exchange.

    In Australia anything under $1 could be classed as a speculative stock. So how do you stipulate that the stocks you want must be greater than $1? First, “write it in English”: You want stocks with a 21-day average closing price that is greater than $1. Now, you can convert this into a MetaStock formula.

    Using the formula reference section in the MetaStock Programming Study Guide, you can check the syntax of a moving average. Once you have this information, it`s simply a matter of plugging in the correct numbers. Then, by using the “greater than” symbol, you can stipulate the price to be greater than $1. The MetaStock code will look like this:

    Mov(c,21,s) > 1

    Let`s move onto the next component, liquidity. This is a measure of how much money a stock trades. It is important to identify stocks that have enough money moving through them so that you`re never caught with a stock you can`t get out of. For this example, let`s say we require the 21-day average of volume multiplied by the closing price to be greater than $200,000. In MetaStock language this would be:

    Mov(v,21,s)*C > 200000

    In the next article I`ll go through the last two components needed to design a mechanical entry syst

    Why Santa's Marketing Works Better Than Yours!
    Santa Claus Inc. is well and profitable, right through recessions, depressions and just about any economic scenario. The reason why his marketing strategies work better than yours, is because he uses solid, dyed-in-the-wool psychology. He knows he doesn't have to use new fangled techniques, when his simple marketing has sto
    MetaStock`s hundreds of pre-programmed formula and propriety indicators? Well, I`m good, but I`m not that good.

    When coding in MetaStock, the key to getting it “right” is to write what it is you are trying to achieve “down in English”. Once you`ve done this, it is easy to convert it into a MetaStock formula.

    Let`s look at an example. Our first entry condition is a measure of price. As mentioned in Part 1, you want to set a price minimum to remove speculative stocks. Please note that the values you select will depend on the exchange you are trading. Some markets tend to be more expensive than others. For this example, we are looking to design a long-term trend following system to trade on the Australian Stock Exchange.

    In Australia anything under $1 could be classed as a speculative stock. So how do you stipulate that the stocks you want must be greater than $1? First, “write it in English”: You want stocks with a 21-day average closing price that is greater than $1. Now, you can convert this into a MetaStock formula.

    Using the formula reference section in the MetaStock Programming Study Guide, you can check the syntax of a moving average. Once you have this information, it`s simply a matter of plugging in the correct numbers. Then, by using the “greater than” symbol, you can stipulate the price to be greater than $1. The MetaStock code will look like this:

    Mov(c,21,s) > 1

    Let`s move onto the next component, liquidity. This is a measure of how much money a stock trades. It is important to identify stocks that have enough money moving through them so that you`re never caught with a stock you can`t get out of. For this example, let`s say we require the 21-day average of volume multiplied by the closing price to be greater than $200,000. In MetaStock language this would be:

    Mov(v,21,s)*C > 200000

    In the next article I`ll go through the last two components needed to design a mechanical entry syst

    Should You Buy an Existing Business?
    Having decided to go into business and selected a potential business idea the question arises, should you start from scratch or buy an existing business? If you are one of the few who have a completely new product or service, the decision, by definition, is made for you. For others, the choice is open.A major appeal
    e that the values you select will depend on the exchange you are trading. Some markets tend to be more expensive than others. For this example, we are looking to design a long-term trend following system to trade on the Australian Stock Exchange.

    In Australia anything under $1 could be classed as a speculative stock. So how do you stipulate that the stocks you want must be greater than $1? First, “write it in English”: You want stocks with a 21-day average closing price that is greater than $1. Now, you can convert this into a MetaStock formula.

    Using the formula reference section in the MetaStock Programming Study Guide, you can check the syntax of a moving average. Once you have this information, it`s simply a matter of plugging in the correct numbers. Then, by using the “greater than” symbol, you can stipulate the price to be greater than $1. The MetaStock code will look like this:

    Mov(c,21,s) > 1

    Let`s move onto the next component, liquidity. This is a measure of how much money a stock trades. It is important to identify stocks that have enough money moving through them so that you`re never caught with a stock you can`t get out of. For this example, let`s say we require the 21-day average of volume multiplied by the closing price to be greater than $200,000. In MetaStock language this would be:

    Mov(v,21,s)*C > 200000

    In the next article I`ll go through the last two components needed to design a mechanical entry syst

    How To Achieve Success With Your Own Money Making Newsletter
    Writing and publishing a successful newsletter is perhaps the most competitive of all the different areas of mail order and direct marketing. You can still publish newsletter through regular mail. With Internet's help, you can publish your newsletter online. You can reach hundreds of subcribers without costing any postage
    ter than $1. Now, you can convert this into a MetaStock formula.

    Using the formula reference section in the MetaStock Programming Study Guide, you can check the syntax of a moving average. Once you have this information, it`s simply a matter of plugging in the correct numbers. Then, by using the “greater than” symbol, you can stipulate the price to be greater than $1. The MetaStock code will look like this:

    Mov(c,21,s) > 1

    Let`s move onto the next component, liquidity. This is a measure of how much money a stock trades. It is important to identify stocks that have enough money moving through them so that you`re never caught with a stock you can`t get out of. For this example, let`s say we require the 21-day average of volume multiplied by the closing price to be greater than $200,000. In MetaStock language this would be:

    Mov(v,21,s)*C > 200000

    In the next article I`ll go through the last two components needed to design a mechanical entry syst

    Create a Resume Outline that Gets You Noticed
    Applying for a job is like trying to sell yourself; your goal is to get the employer to the point where they have to have you in their company. So how do you do that? By having the right resume outline for the job you want. You have several different resume outlines to choose from, so you will have to consider the followi
    his is a measure of how much money a stock trades. It is important to identify stocks that have enough money moving through them so that you`re never caught with a stock you can`t get out of. For this example, let`s say we require the 21-day average of volume multiplied by the closing price to be greater than $200,000. In MetaStock language this would be:

    Mov(v,21,s)*C > 200000

    In the next article I`ll go through the last two components needed to design a mechanical entry system in MetaStock. With this information, you will be well on your way to starting an effective, and profitable, trading system in MetaStock.

    HTTP = HTML link (for blogs, profiles,phorums):
    <a href="http://www.atriclezine.com/article/95938/atriclezine-Designing-a-Trading-System-in-MetaStock-Part-2.html">Designing a Trading System in MetaStock- Part 2</a>

    BB link (for phorums):
    [url=http://www.atriclezine.com/article/95938/atriclezine-Designing-a-Trading-System-in-MetaStock-Part-2.html]Designing a Trading System in MetaStock- Part 2[/url]

    Related Articles:

    Criticism Gets You No Where

    How to Use Word-of-Mouth in Building a Massive Opt-In List... 60 Minute Money

    Ten Good Reasons for using Adsense

    Bookmark it: del.icio.us digg.com reddit.com netvouz.com google.com yahoo.com technorati.com furl.net bloglines.com socialdust.com ma.gnolia.com newsvine.com slashdot.org simpy.com shadows.com blinklist.com