![]() |
Overcoming the Blank Screen By: Joe Duffy The following is an excerpt from Joe Duffy’s Ultimate Trading Robot “The single most important book on evidence-based trading since Wilder’s New Concepts” How to Get Started with Ideas that Work You have opened up your new technical analysis software and you want to design a rule based strategy or system to propel you to success in your trading and investing. Where do you begin? Not only do you need an idea to start building a rule based strategy, but also you have to learn your analysis software’s programming language. Fortunately, neither need be as daunting as it may seem at first. There is a plethora of information on technical analysis tools, and very little evidence based information on how to use them to develop profitable trading strategies. Strategy development is a serial process. The more you do it, the more you watch your strategies perform on fresh market data, the more feedback you receive, the more ideas you will think of to improve your strategies. By continuing to test new wrinkles and by examining the results of your testing, you will move from sitting down and not knowing what to test, to not having enough time to test all the ideas you can think of! The two most important aspects in building a successful rule based trading strategy are “screen time” and “perseverance.” The best and most successful trading strategies I have ever seen are based on simple concepts with the sophistication in the details. This course will point you down many varied paths with regard to strategy design components. The more paths you go down, the more sophisticated your thinking will become. Some of these paths will be ones you likely would not have found on your own without a lot of hands-on experience. Once you gain the experience, more and more ideas and new paths in trading strategy development will begin to open up for you. There are many technical analysis and strategy testing software alternatives on the market. Most all have an intuitive programming language that allows one to write simple English sentences to empirically test any trading idea on historical data. Since many of the programming languages are not too much different between different software vendors, it should be a relatively simple task to translate the generic code to your own software’s programming language. Any issues can be resolved by the “Help” and then “Search” avenues that every software package includes. The learning curve is not difficult. It is essentially writing what you want to do using plain English phrases that your software recognizes. To illustrate, below are a few sample statements written for a generic software package. First go to the System or Toolbox section of your analysis software to start to build a strategy. There are 4 components that you will need to satisfy in some form for the software to accept the input to test your strategy idea. Each of CONDITION, ACTION, ORDER TYPE, and EXECUTION are defined as discussed below. There are common elements in any code you write using any analysis software. The following are examples of statements coded in our generic programming language: CONDITION: IF close > open.1 The following chart illustrates this.
ACTION: Buy Long ORDER TYPE: Stop EXECUTION: next bar open + AvgTrueRange(10) Thus, we have constructed a simple buy entry. |