Getting Started in Forex Robots

Size: px
Start display at page:

Download "Getting Started in Forex Robots"

Transcription

1 Getting Started in Forex Robots By Rob Booker and Wes Walton Version 1.0, August 29, 2016 WARNING Trading involves substantial risks. Forex trading is risky, and most traders lose money. Past performance is not necessarily indicative of future results. DOUBLE WARNING If you are not good with computers, robots are not a good idea for you. If you are a beginner with basic computer tasks, such as opening programs, installing programs, opening files and folders, downloading files then robots are NOT a good fit for you. We love you and we do not want you to have a bad experience. If you are a beginner with computers take a quick class on computer basics and then come back to the robots. TRIPLE WARNING!!! Run these robots on a demo account first. Run the robots in an account that is COMPLETELY separate from your discretionary trading. Run the robots with a TINY TRADE SIZE at first, because something can go wrong, and you do not want to have huge losses. There is plenty of time to increase trade size later. RETURN TO TABLE OF CONTENTS RobBooker.com Page 1

2 TABLE OF CONTENTS Click a link to jump to a section. THE BASICS What is a trading robot? Why trade robots with forex? Is that dangerous? Why would I use a robot? How is a robot made? Is it hard to learn? THE EQUIPMENT What is Metatrader 4? What is a Virtual Private Server? How to set up a VPS at Amazon How to get a free VPS from your broker How to login to your VPS with Remote Desktop Connection HOW TO INSTALL A ROBOT Installing a robot Loading a robot onto your chart How to make sure it is active and looking for trades Playing around with robot settings HOW TO TEST A ROBOT The MT4 Strategy Tester Data: the Heart and Soul of backtesting How to run a simple test Reading Test Results RETURN TO TABLE OF CONTENTS RobBooker.com Page 2

3 Using the visual mode Optimization Common backtesting problems TROUBLESHOOTING ROBOT PROBLEMS My MT4 closed now what? My server crashed My MT4 froze My robot is not taking any trades THE BASICS What is a trading robot? A trading robot is a software program. Once the program is installed into your trading platform, it can take trades automatically. You can be asleep, working, or spending time with your family and it can take a trade. Robots as Complete Trading Solutions Some traders use robots to do ALL of their trading. That s what I do. I let the robots run 24/7 and I rarely touch them or intervene. These robots open trades, manage the open trade, take profit, stop out everything. I don t have to touch the computer at all. Robots as Trading Assistants RETURN TO TABLE OF CONTENTS RobBooker.com Page 3

4 Some traders use robots as trading assistants. For example, you might know that you want to buy the EUR/USD currency pair, but you need to go to work right now. Work is awful. But you need to go to work, because your family likes to eat food and live in a house with a roof. How can you trade the EUR/USD AND go to work? You could use a robot, like our Trendline Robot. You just draw a trendline on the chart, and tell the robot to take a buy trade if price breaks beyond that trendline. The robot can even send you an alert that it took the trade. Then the robot hands the management of the trade back to you. Why trade robots with forex? Is that dangerous? All trading is risky. Not just forex. Every kind of trading carries substantial risk. Forex is no different. Forex trading is not a get rich quick scheme. It can be, however, a get poor quick scheme. Many people lose money trading forex. In fact, most traders who trade forex lose money all of their first account, usually within just a few months. With that said, robots do the following things to help reduce that risk: 1) They stop out of trades when they are supposed to (instead of holding onto a loss forever); 2) They do not get worried when they have a few losses in a row; 3) They do not skip trades because they see something on the chart that makes them doubt the trade ; RETURN TO TABLE OF CONTENTS RobBooker.com Page 4

5 4) They take profit when they are supposed to; 5) They take the entry on the trade when they are supposed to; 6) They add to winners if they are supposed to and so on. In other words, a good robot is reliable. It sticks to the trading plan. Most traders who lose money do NOT stick to their trading plan. In fact, they trade like deranged monkeys. I love robots because I can trust them to follow the plan. I cannot always trust myself to follow my plan so robots are really good for me. Why would I use a robot? I think I answered this above, but to make sure we re clear: If you have a full time job and cannot watch the charts, the robots are a good idea. If you have a busy life and do not want to sit in front of the computer, the robots are a good idea. If you have been losing money and trying to make your own discretionary trades then robots might be a good idea. If you find that you have a few good trades in a row, and then you take a big loss (over and over), then robots might be a good idea. How is a robot made? Is it hard to learn? The robots we talk about here are Metatrader Robots. They are written in a language called Metaquotes, or MQL for short. RETURN TO TABLE OF CONTENTS RobBooker.com Page 5

6 A robot built with the Metaquotes language is often called an Expert Advisor. I have no idea who created that name but I would like to punch that guy in the face. There is no reason they should have called it an Expert Advisor. It s a trading robot. Here is an example of what the code looks like: // Preliminary processing if( Bars < Period_MA_2 ) // Not enough bars { Alert ( "Not enough bars in the window. EA doesn't work." ); return; // Exit start() } if( Work ==false) // Critical error { Alert ( "Critical error. EA doesn't work." ); return; // Exit start() } // I don t expect you to learn MQL. I don t know how to program using it. If you want to learn more, here is an online book about the language: There are thousands and thousands of metaquotes programmers in the world. The program language is similar to C. I just overheard someone say that at a cocktail party, and I don t even know if it s true. Why do we use Metaquotes? Metaquotes is a hugely popular programming language. It has been used to build millions of indicators and robots. It is reasonably easy to debug. It RETURN TO TABLE OF CONTENTS RobBooker.com Page 6

7 does not require a huge investment of time and money. It does not require expensive charts. So we use Metaquotes. You might hear people say that successful traders don t use Metaquotes, and then they will tell you that you should be trading with a Python program, or Easy Language, or whatever. Tell them to go fly a kite. You and over 1 million other traders around the world are doing just fine with Metaquotes. THE EQUIPMENT What is Metatrader 4? Why do we use it? Metatrader 4 is the world s most popular forex trading software MT4 (for short) is free. It is easy to learn and use. It is not the world s best trading software. But it is good. It is stable. It works. It is not perfect but it works. Every forex broker in the world offers the Metatrader (MT4) platform for trading. It is easy to load a robot into this software. It is easy to test a robot s historical performance with this software. Here is what MT4 looks like: RETURN TO TABLE OF CONTENTS RobBooker.com Page 7

8 I don t know why I included that picture. I mean, you could have just googled, What does MT4 look like? How to Install MT4 Ask your broker for a download link for Metatrader 4. (Not Metatrader 5 that is the newest version of Metatrader and we do not use it for about 100 reasons that do not matter right now). You install Metatrader on a Windows computer. You cannot run Metatrader on a Mac. If you have a Mac, you will want to use a Virtual Private Server (see more in the next section) to access your Metatrader trading platform. There is a MT4 phone app. Can you use that? Yes, you can use that to monitor your trades. But you cannot use that to load robots or test robots. What if you do not like MT4? RETURN TO TABLE OF CONTENTS RobBooker.com Page 8

9 Then you should stop reading this book. Where can you get more information on how to use MT4? YouTube is FILLED with lessons (for free) on how to use MT4. I suggest you start with this guide: trader guide intro/ And then watch some videos on YouTube. DO NOT INSTALL A GENERIC MT4 PLATFORM!!! You might be tempted to download MT4 from a different broker than your own, or the MT4 website. DO NOT DO THIS. Download MT4 from the broker where you are going to do your trading, so that you are familiar with the way your broker has set up MT4 this is important, because every broker will have a slightly different way of handling open orders, running robots, and so forth. What is a Virtual Private Server? Why should I use one? A Virtual Private Server (VPS for short) is a Windows computer. It is always on, it is managed to protect it from viruses, and you can turn off your home computer and the VPS stays on. This is great because in order to run a robot on MT4, the computer needs to be on all the time. And a VPS can stay on day and night, all the time, and only needs to be rebooted once a month (if even that). A VPS is just going to run robots. It is not going to be used for games, or homework, or web browsing, and all that garbage. RETURN TO TABLE OF CONTENTS RobBooker.com Page 9

10 You will be able to access your VPS through a software program named Remote Desktop Connection or other programs that do the same thing. These programs allow you to open a window on your home computer and then look at the VPS computer s desktop. And then you can move your mouse around, you can type anything and you will be using the VPS as if it were right there in front of you. A VPS is another computer, just sitting somewhere else, that you manage and operate from your home computer. WES COULD MAKE A VIDEO HERE SHOWING A VPS It is Virtual because it s not in your house. It s a computer sitting in a big room, in a company s server room, somewhere else. It s private because it s just yours. And it s called a server because it usually runs a version of Windows used for Servers. How to set up a VPS at Amazon ^ This video supposedly shows you how to get Metatrader set up on a free VPS at Amazon. How to get a free VPS from your broker Many brokers will offer a free virtual private server when you open an account. You can also just call and say, Do you offer a VPS for clients? RETURN TO TABLE OF CONTENTS RobBooker.com Page 10

11 Another option is to contact Justin Hertzberg at Forest Park FX. He knows the details on free VPS options at almost every forex broker. You can contact Justin here: How to login to your VPS [write instructions for using Remote Desktop, since it works on Macs and Windows] Some important settings for your VPS turning off updates, getting a browser installed HOW TO INSTALL A ROBOT Installing a robot Download the robot to your computer. Remember where you ve placed the file. Open Metatrader 4. At the top of the left of the menu screen, you should see the world File. Click on that. RETURN TO TABLE OF CONTENTS RobBooker.com Page 11

12 Click on the item Open Data Folder. Now open the folder called MQL4. Now open the folder called Experts. RETURN TO TABLE OF CONTENTS RobBooker.com Page 12

13 Once the experts folder is open, drag the robot file you downloaded and put it into the experts folder. Now your robot is installed into MT4. To get the robot to show up in your MT4, you must now do the following steps: Go to your Navigator panel in MT4. Right click on Expert Advisors. Click Refresh. Your robot will now show up in MT4. RETURN TO TABLE OF CONTENTS RobBooker.com Page 13

14 Loading a robot onto your chart To load a robot onto your chart, drag the robot from the Navigator panel onto your chart. To drag the file, hover over it with your mouse, click the left mouse button, and then drag your mouse onto your chart. After you drag the robot onto your chart, a settings window pops up. Close that window for now we will play around with the settings later. Once the robot is on your chart, you will see the name of the robot in the upper right area of the chart. See where it says Ultimate Finch of Doom v1.03 at the top right of the chart? That means we loaded the Ultimate Finch of Doom robot onto our chart. But that doesn t mean the robot is running or taking trades. RETURN TO TABLE OF CONTENTS RobBooker.com Page 14

15 How to make sure it is active and looking for trades You ll know your robot is running if you see the smiley face on your upper right hand area of the chart. It looks like this: If you do not see that smiley face, then you need to check two things: 1) Check the Auto Trading button at the top of your MT4 menu, and make sure it s green : 2) Left click on the smiley face (or frowny face) on your chart next to the name of the robot. Your robot settings will pop up. Now click on the common tab. Make sure that allow live trading is checked. RETURN TO TABLE OF CONTENTS RobBooker.com Page 15

16 If your robot still has a frowny face after you do these two things, call your broker. Ask your broker if they allow you to trade with robots (expert advisors) on your account. If they say yes, tell them your platform is giving you a frowny face no matter what. Playing around with robot settings/inputs Every robot has settings. These are also called inputs. These settings control when it opens trades, the trade size, the profit target, and more. WARNING: Before you start playing with new settings, keep a note of (or save) your favorite settings that you are using right now. To view the settings window, left click on the smiley (or frowny) face on your chart. Here is what the settings/inputs window looks like. RETURN TO TABLE OF CONTENTS RobBooker.com Page 16

17 These inputs control what the robot does, and when the robot does it. Don t get caught up in each of the settings above I only want to mention a few of them that are universal to all of our robots: 1) WARNING: Robot trading carries risks. Most traders lose money (even with robots). Run all robots on a demo account first. 2) Magic : This is the robot s magic number. You will probably never need to change this. This number simply helps the robot remember which trades it took, and can distinguish between its own trades and your discretionary trades. But I still want to warn you you should separate your robot and discretionary trading into two accounts. RETURN TO TABLE OF CONTENTS RobBooker.com Page 17

18 3) Slippage : This tells the robot to NOT take a trade if price is slipping in a fast moving market. 4) Max Spread : This tells the robot not to take trades if the spread widens too far (for example, during news). You can learn about the other settings/inputs when you learn about each of the individual robots. For now, just play around with changing the numbers in the settings. NOTE : If your robot is running on your chart, with an open trade, and you open the settings/inputs window and make changes, your robot will now start to manage the trade with the new settings. HOW TO TEST A ROBOT The MT4 Strategy Tester Metatrader 4 (MT4) has one of the easiest to use, automated back testing programs available, and it is free with the platform. This back testing program is called Strategy Tester. Here is what it looks like: RETURN TO TABLE OF CONTENTS RobBooker.com Page 18

19 Data: the Heart and Soul of backtesting Having accurate and reliable historical data is critical to back testing. If you do not have good historical data, your tests can be inaccurate or give highly skewed results. MT4 makes getting historical data easy, and they even give you an accuracy score to let you know you are testing with good data. First, you will need to download the data, which you can do by clicking on Tools at the top menu of your platform, then click on History Center: RETURN TO TABLE OF CONTENTS RobBooker.com Page 19

20 You should see something like this pop up: RETURN TO TABLE OF CONTENTS RobBooker.com Page 20

21 Double Click on the currency pair of your choosing, then double click on the 1 Minute timeframe and press Download at the bottom of the window. Once the Download is complete, press Close and you are ready to test! It is usually best to run your tests in a demo trading platform from your broker, which is SEPARATE from your live trading account. How to run a simple test Once you have downloaded data, you are ready to start testing! Open Strategy Tester (See The MT4 Strategy Tester section above) Step 1: Choose the robot you plan to test: Step 2: Select the Symbol for the test: RETURN TO TABLE OF CONTENTS RobBooker.com Page 21

22 Step 3: Select Every tick in the Mode dropdown menu: Step 4: Select your date range and use the Check Box to ensure you use those dates: RETURN TO TABLE OF CONTENTS RobBooker.com Page 22

23 Step 5: Decide whether or not to use Visual Mode (See Using the Visual Mode section below) but for now leave it un checked : Step 6: Choose your timeframe (Period): Step 7: Spread This step is important. The Spread is the difference between the Bid and the Ask price. For more information about what the Spread is, head over to GettingStartedInForex.com, or CLICK HERE. The tester automatically selects Current as the default, but you don t want that. If your broker has 5 decimal places on price (for example, ) then you will want to select 30 (for 3 pip spread) or 50 (for 5 pip spread). If your RETURN TO TABLE OF CONTENTS RobBooker.com Page 23

24 broker uses 4 decimal places (for example, ) then you will want to set 3 (for 3 pip spread) or 5 (for 5 pip spread). Step 8: Expert Properties. These are the inputs that you can change when you use the robot. You can change them around to find the best settings. NOTE: See Optimization for more information about optimizing your robot, ignore it for now. The Expert Properties window should look something like this: RETURN TO TABLE OF CONTENTS RobBooker.com Page 24

25 Step 9: Start Test Just press the Start Button Step 10: Wait for the test to finish up. When the green bar reaches the end, the test is complete: RETURN TO TABLE OF CONTENTS RobBooker.com Page 25

26 Step 11: Look at the results (See Reading Test Results for more information). The Report tab is where you find your test results data: Step 12: Change some settings around in the Expert Properties and try it again. Reading Test Results Testing is one of the most useful (and necessary) things you can do when starting out with robotic trading. It helps you get a feel for how your robot reacts in certain situations, during certain periods of time, and what settings you should use for your live trading. But what do the results mean? RETURN TO TABLE OF CONTENTS RobBooker.com Page 26

27 This section will take you through the Report that shows up AFTER you complete a test. These are the 4 MOST important things to look at. NOTE: Good results in testing do NOT guarantee the same results in live trading, but it should give you a good idea of how the robot performs. Here is the Report page: 1) Total Net Profit: This is how much you made total after you subtract your losing trades from your winning trades. Gross profit (all of your profitable trades combined) minus the Gross loss (all of your negative trades combined) equals Total Net Profit. 2) Total Trades: This is the total number of trades your robot took during the time period you selected. 3) Maximal Drawdown: This is the most important drawdown to look at. This is the total amount of drawdown you got from all trades open at the same time. If you have 1 trade open that is $100 and you have a $1,000 account, that is a 10% drawdown. If you have 2 trades open and one is $100 and the second is $50, that is a combined open position of $150, which would be a 15% drawdown. RETURN TO TABLE OF CONTENTS RobBooker.com Page 27

28 a) This is important because you need to know how much your robot can draw down while trades are open. If it draws down by 20%, that might seem acceptable on paper, but think about how it would feel to see those negative positions in real time, happening to your real money, and waiting weeks, months, years for them to close. Reality is harsh sometimes. 4) Modeling Quality: You don t want anything below 90%. If you have less than 90% modeling quality, or n/a as your modeling quality, go back and re download your data for that pair, and make sure to download the 1 minute timeframe. a) NOTE: Testing on the 1 minute chart is fun sometimes...but it is useless and does not give accurate, realistic information about how the robot performs. Always use 5 minute or higher. WARNING (AGAIN): If you are testing a robot on the 1 minute chart because you want your robot to take 7 million trades a day or something your results are probably useless. It is very hard to get reliable data on that short time frame of a chart. Using the Visual Mode Visual Mode is a way to see the chart and watch the robot place trades as it goes through Strategy Tester. It is much slower and should really only be used in a handful of situations: 1) When diagnosing an issue with the code. 2) When you want to see specific a specific trade or set of trades that look interesting in the trade results, like: a) A losing trade b) A profitable trade c) A trade with a large drawdown RETURN TO TABLE OF CONTENTS RobBooker.com Page 28

29 d) Etc. 3) When you generally just like watching it place trades. 4) When you can t get to sleep at night. You can use Visual Mode by checking the box next to it, like this: This brings up a couple of additional options next to it; the slider bar, play/pause button, and Skip to button. We are going to skip the Skip to button. The Slider Bar is the SPEED in which the chart moves, and the Play/Pause button is (you guessed it) how you Pause and Play the test. The Start button is STILL how you START the test, then the Pause/Play button allows you to pause it to look at something on the chart and continue (play) when you want it to move forward more. NOTE: There is a HUGE difference between the Speed Slider being maxed out and being just below maxed out, so be careful when starting a test. Optimization RETURN TO TABLE OF CONTENTS RobBooker.com Page 29

30 Optimization is AWESOME, but it has its limits. Optimization is designed to test multiple robot variables against each other (set by you) to see which set of variables work the best. NOTE: You cannot run Optimization in Visual Mode For instance, let s say you want to test different trade sizes, to find out which trade size makes the most money with the least drawdown. But you don t want to sit there and watch the test, then change the variable, then watch the test, then change the variable, then watch the test, and so on and so forth. Optimization solves this problem. It can test a bunch of variables at the same time, and then tell you what worked best. To Optimize, check the Optimization box, then click on Expert Properties : When we did a basic test (See How to Run a Simple Test above) we used the Value column to change the robot properties for the test. For Optimization, we use the Start Step and Stop columns shown here: RETURN TO TABLE OF CONTENTS RobBooker.com Page 30

31 Make sure you Check the box next to the variable you want to optimize. Then, set the Start (which is the variable starting place, in this case 0.01) then the Step (which is how much each pass through the tester increases the variable by, in this case 0.01) and the Stop (which is the final amount the tester will use). In the example above, the tester will run 5 over the time period you selected: 1) First_Trade_Lots = ) First_Trade_Lots = ) First_Trade_Lots = ) First_Trade_Lots = ) First_Trade_Lots = 0.05 After it runs those 5 times through the tester, it will show you the results in Optimization Results tab: RETURN TO TABLE OF CONTENTS RobBooker.com Page 31

32 You can then select your favorite of the group, double click on it, and it will pre fill the tester Expert Properties with those values and you can continue testing. NOTE: You may be tempted to select a bunch of variables to optimize at the same time, but be careful because MT4 has limits on how much optimizing it can do in one session. If you select 5 variables to test, and you want it to test 10 different settings of each, that would be almost 10,000,000 passes (that math is probably WAY wrong). MT4 cannot do that many passes. Albert Freaking Einstein can t do that many passes (besides, he s dead). So you should not try to test that many variables, either. Try to keep it at 1 or 2 variables running a simple set of changes. Testing 1 variable at a time, with 6 10 steps, works best. Common backtesting problems Here are some common issues we encounter with testing: 1) No data. If you are only seeing a few trades in the Results tab, you might not have any data downloaded for that pair. RETURN TO TABLE OF CONTENTS RobBooker.com Page 32

33 2) Ordersend Errors in the Journal tab. There are quite a few reasons you would receive one of these. Try these steps to see if you can fix it: a) Check your Lot sizes to make sure your broker supports them is most likely not supported (although sometimes it is). If you are unsure how to check, try placing a SUPER SMALL trade on your demo account with the lot size you are trying to use. If it works, you are good there. If not, you should change it. b) Check your stop loss and profit target. On some robots they will use a Pip amount for their exits (we usually use dollar amounts). If your pip amount is too small (sometimes less than 5 will throw an error) then it could have an error. c) Make sure you aren t using conflicting variables. For instance, your robot might have an option to exit at a certain dollar amount you set to true, and also to exit at a certain pip amount which you set to true. In the code, those two might conflict, but hopefully the developer put some notes about potential conflicts in the robot instructions. Always read the instructions or watch the instructional videos! d) When you go into the Expert Properties, go to the Testing tab and look at Positions. It should say Long and Short. Unless the developer specifically tells you that you can use Short only or Long only, always use Long and Short because there is a strong possibility the developer did not take that into account otherwise. TROUBLESHOOTING ROBOT PROBLEMS My MT4 closed now what? My server crashed RETURN TO TABLE OF CONTENTS RobBooker.com Page 33

34 My MT4 froze My robot is not taking any trades RETURN TO TABLE OF CONTENTS RobBooker.com Page 34

EURAUD, EURUSD, GBPUSD, GBPCHF

EURAUD, EURUSD, GBPUSD, GBPCHF 30 pip method This is an amazing strategy which can net you 20 30 pips every day. Once you hit 20 pips for the day stop. Trade this strategy either 1 hour after the London Open or if you are in USA, trade

More information

By now you should already have downloaded and installed Metatrader 4. If not, go to the previous episodes of this course.

By now you should already have downloaded and installed Metatrader 4. If not, go to the previous episodes of this course. What would you think is necessary to print data like your Account Balance or your Account Equity, your Trading profit or your Brokers spread directly on the chart on your computer screen? When I started

More information

Module 5, Lesson 1 Webinars That Convert Automated Planning Phase: The Automated Webinar Funnel

Module 5, Lesson 1 Webinars That Convert Automated Planning Phase: The Automated Webinar Funnel Module 5, Lesson 1 Webinars That Convert Automated Planning Phase: The Automated Webinar Funnel Oh my goodness, get up and do a little happy dance right now because you have made it to Module 5, The Automated

More information

Chapter 14. The Top 10 Trading Mistakes

Chapter 14. The Top 10 Trading Mistakes Chapter 14 The Top 10 Trading Mistakes I want to talk about the top ten common mistakes that most Forex traders make and more importantly how you can overcome them. So let s start right at the very beginning.

More information

Would You Like To Earn $1000 s With The Click Of A Button?

Would You Like To Earn $1000 s With The Click Of A Button? Would You Like To Earn $1000 s With The Click Of A Button? (Follow these easy step by step instructions and you will) - 100% Support and all questions answered! - Make financial stress a thing of the past!

More information

Following this guide will make step 1 a snap. FOLLOW IT CLOSELY And This Is Elementary SIMPLE!

Following this guide will make step 1 a snap. FOLLOW IT CLOSELY And This Is Elementary SIMPLE! Following this guide will make step 1 a snap. FOLLOW IT CLOSELY And This Is Elementary SIMPLE!. (You can print this by right clicking you mouse and clicking print, going up to File>Print, or using the

More information

Tommy s Revenge Trading Method 2.0 (Module 2 Part 1)

Tommy s Revenge Trading Method 2.0 (Module 2 Part 1) 1 Welcome to Tommy s Revenge Module 2 Part 1. I m not sure how many parts will be in this section. I think if we participate together we can make a module that s beneficial to all of us Be aware that anything

More information

COMMONLY ASKED QUESTIONS About easyfreeincome.com system

COMMONLY ASKED QUESTIONS About easyfreeincome.com system COMMONLY ASKED QUESTIONS About easyfreeincome.com system 1. If you are playing at the NON USA version and you use the link in the e-book to download the software from the web page itself make sure you

More information

AlgoTrading101.com. AlgoTrading101. Full Syllabus Overview. Learn Trade Raise Funds. Lucas Liew

AlgoTrading101.com. AlgoTrading101. Full Syllabus Overview. Learn Trade Raise Funds. Lucas Liew AlgoTrading101 Full Syllabus Overview Learn Trade Raise Funds Lucas Liew lucas@algotrading.com Last updated: 9 th Jan 2019 1 AlgoTrading101 AT101 + PT101 AlgoTrading101 consists of 2 main courses: AT101:

More information

Would You Like To Earn $1000 s With The Click Of A Button?

Would You Like To Earn $1000 s With The Click Of A Button? Would You Like To Earn $1000 s With The Click Of A Button? (Follow these easy step by step instructions and you will) This e-book is for the USA and AU (it works in many other countries as well) To get

More information

SAVING, LOADING AND REUSING LAYER STYLES

SAVING, LOADING AND REUSING LAYER STYLES SAVING, LOADING AND REUSING LAYER STYLES In this Photoshop tutorial, we re going to learn how to save, load and reuse layer styles! Layer styles are a great way to create fun and interesting photo effects

More information

FOUR SIMPLE TRADING GOALS

FOUR SIMPLE TRADING GOALS FOUR SIMPLE TRADING GOALS (THAT MAY NOT APPEAR TO HAVE ANYTING TO DO WITH TRADING) http:// 3.28.16 2 P a g e THE FOUR GOALS Goals in trading are the elusive end of the rainbow most of the time. You know

More information

Would You Like To Earn $1000 s With The Click Of A Button?

Would You Like To Earn $1000 s With The Click Of A Button? Would You Like To Earn $1000 s With The Click Of A Button? (Follow these easy step by step instructions and you will) This e-book is for the USA and AU (it works in many other countries as well) To get

More information

OverDrive for Kindle, Kindle Paperwhite, Kindle Voyage, and Kindle Oasis (not Kindle Fire and Fire Tablet) Contents

OverDrive for Kindle, Kindle Paperwhite, Kindle Voyage, and Kindle Oasis (not Kindle Fire and Fire Tablet) Contents OverDrive for Kindle, Kindle Paperwhite, Kindle Voyage, and Kindle Oasis (not Kindle Fire and Fire Tablet) Contents Optimizing OverDrive for your Kindle Searching and Browsing Borrowing and Downloading

More information

How To Get High Quality Traffic From Pinterest

How To Get High Quality Traffic From Pinterest How To Get High Quality Traffic From Pinterest Introduction Have you ever longed for a way to grab more traffic and make more sales? Obviously, the answer is yes! The Internet is a constantly changing

More information

PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW

PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW PAGE 1 THE PERFECT WORDPRESS DEVELOPMENT WORKFLOW There are a lot of steps in the development process, so to help you jump exactly where you need to be, here are the different topics we ll cover in this

More information

Set Up Your Domain Here

Set Up Your Domain Here Roofing Business BLUEPRINT WordPress Plugin Installation & Video Walkthrough Version 1.0 Set Up Your Domain Here VIDEO 1 Introduction & Hosting Signup / Setup https://s3.amazonaws.com/rbbtraining/vid1/index.html

More information

Video Transcript. Hi, this is Don Crowther with a video about Adding Closed Captioning to Your YouTube Videos.

Video Transcript. Hi, this is Don Crowther with a video about Adding Closed Captioning to Your YouTube Videos. Video Transcript Hi, this is Don Crowther with a video about Adding Closed Captioning to Your YouTube Videos. Closed captioning has been around for a number of years. It is a great way for those who are

More information

Flavio Graziano & Aken Stienka: AKENDICATOR indicator tutorial AKENDICATOR TUTORIAL. Revolutionary indicator for Binary Options on Metatrader

Flavio Graziano & Aken Stienka: AKENDICATOR indicator tutorial AKENDICATOR TUTORIAL. Revolutionary indicator for Binary Options on Metatrader AKENDICATOR TUTORIAL Revolutionary indicator for Binary Options on Metatrader NOT REPAINT INDICATOR First of all, sorry for our not perfect English. However Akendicator is so easy and we hope you understand

More information

PART 2 RESEARCH. supersimpl.com Start Here Workbook 40

PART 2 RESEARCH. supersimpl.com Start Here Workbook 40 PART 2 RESEARCH supersimpl.com Start Here Workbook 40 Research Welcome to the Research Phase! It s time to determine if your idea is going to work BEFORE you spend any money on a logo, website, business

More information

Google SEO Optimization

Google SEO Optimization Google SEO Optimization Think about how you find information when you need it. Do you break out the yellow pages? Ask a friend? Wait for a news broadcast when you want to know the latest details of a breaking

More information

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19 Table of Contents Creating Your First Project 4 Enhancing Your Slides 8 Adding Interactivity 12 Recording a Software Simulation 19 Inserting a Quiz 24 Publishing Your Course 32 More Great Features to Learn

More information

We're excited to announce that the next JAFX Trading Competition will soon be live!

We're excited to announce that the next JAFX Trading Competition will soon be live! COMPETITION Competition Swipe - Version #1 Title: Know Your Way Around a Forex Platform? Here s Your Chance to Prove It! We're excited to announce that the next JAFX Trading Competition will soon be live!

More information

Why Do We Need Selections In Photoshop?

Why Do We Need Selections In Photoshop? Why Do We Need Selections In Photoshop? Written by Steve Patterson. As you may have already discovered on your own if you ve read through any of our other Photoshop tutorials here at Photoshop Essentials,

More information

ROOMPLAYER GUIDE COMPLETE YOUR ROOMPLAYER SETUP WITH THE ROOMPLAYER DESKTOP APP

ROOMPLAYER GUIDE COMPLETE YOUR ROOMPLAYER SETUP WITH THE ROOMPLAYER DESKTOP APP ROOMPLAYER GUIDE COMPLETE YOUR ROOMPLAYER SETUP WITH THE ROOMPLAYER DESKTOP APP HELLO Once you ve connected your Roomplayer to your home network, downloading and installing the Roomplayer desktop app is

More information

EP72: Market Trends.

EP72: Market Trends. EP72: Market Trends Announcer: We love to hold on to this belief that discretion is really important and I think a lot of the times we like to hold on to that is because it gives us that easy out. It gives

More information

How to Become Rich Using just $10 Monthly!

How to Become Rich Using just $10 Monthly! How to Become Rich Using just $10 Monthly! Read it and... 1 - Learn How To Become very Successful and Rich! Give it away and... 2 - Watch How it Becomes Your own Personal Recruiting Machine! Give it away

More information

Copyright UCRP

Copyright UCRP www.candlestickreversalpattern.com Copyright UCRP Introduction I don t want this book to have dozens of unnecessary pages of material that would do you no good in order to impress you. That s why I m going

More information

Introduction. So, let's get this moving forward, first things first, some things you will need to get up and running...

Introduction. So, let's get this moving forward, first things first, some things you will need to get up and running... Introduction First of all, I would like to say thanks for purchasing CPA Firestorm and taking action. You have made a great decision. This upgrade will show you how to use display ad networks to scale

More information

Learn Project Copyright Simon Sez IT, LLC. All Rights Reserved.

Learn Project Copyright Simon Sez IT, LLC. All Rights Reserved. Table of Contents Chapter 1 Course Introduction Course Introduction...6 Acquiring Project...7 Course Review...11 What s New in Project 2016...14 Chapter 2 Workspace, the Ribbon and Help The Project 2016

More information

Videos get people excited, they get people educated and of course, they build trust that words on a page cannot do alone.

Videos get people excited, they get people educated and of course, they build trust that words on a page cannot do alone. Time and time again, people buy from those they TRUST. In today s world, videos are one of the most guaranteed ways to build trust within minutes, if not seconds and get a total stranger to enter their

More information

9 Financially Devastating Mistakes Most Option Traders Make

9 Financially Devastating Mistakes Most Option Traders Make 9 Financially Devastating Mistakes Most Option Traders Make Fortunes have been made and lost in the world of option trading. And those fortunes that were lost may very well have been lost due to making

More information

The Joy of SVGs CUT ABOVE. pre training series 2. svg design Course. Jennifer Maker. CUT ABOVE SVG Design Course by Jennifer Maker

The Joy of SVGs CUT ABOVE. pre training series 2. svg design Course. Jennifer Maker. CUT ABOVE SVG Design Course by Jennifer Maker CUT ABOVE svg design Course pre training series 2 The Joy of SVGs by award-winning graphic designer and bestselling author Jennifer Maker Copyright Jennifer Maker page 1 please Do not copy or share Session

More information

How to quickly change your mindset from negative to positive

How to quickly change your mindset from negative to positive How to quickly change your mindset from Simon Stepsys Simon Stepsys The truth is this: you can achieve anything you want in life. You were born a winner, just like everyone else, and the only thing that

More information

Photoshop: Manipulating Photos

Photoshop: Manipulating Photos Photoshop: Manipulating Photos All Labs must be uploaded to the University s web server and permissions set properly. In this lab we will be manipulating photos using a very small subset of all of Photoshop

More information

Voice Banking with Audacity An illustrated guide by Jim Hashman (diagnosed with sporadic ALS, May 2013)

Voice Banking with Audacity An illustrated guide by Jim Hashman (diagnosed with sporadic ALS, May 2013) Voice Banking with Audacity An illustrated guide by Jim Hashman (diagnosed with sporadic ALS, May 2013) Section One: Install and Setup Audacity Install Audacity... 2 Setup Audacity... 3 Getting Familiar

More information

The little BIG book of badness

The little BIG book of badness The little BIG book of badness (how to stay safe on the Internet - a guidebook for students and parents) You re safer in our world Use this book to find out how you and your computer can stay away from

More information

Term Definition Introduced in:

Term Definition Introduced in: 60 Minutes of Access Secrets Key Terms Term Definition Introduced in: Calculated Field A field that displays the results of a calculation. Introduced in Access 2010, this field allows you to make calculations

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS EV3 set includes three types of sensors: Touch, Color, and Infrared. You can use these sensors to make your robot respond to its environment. For example, you can program your robot

More information

ebird 101: just the basics (sort of!)

ebird 101: just the basics (sort of!) ebird 101: just the basics (sort of!) Introduction to ebird Many club members will by now have heard talk of ebird (www.ebird.ca). For those of you who haven t, ebird is an online checklist program where

More information

GameSalad Basics. by J. Matthew Griffis

GameSalad Basics. by J. Matthew Griffis GameSalad Basics by J. Matthew Griffis [Click here to jump to Tips and Tricks!] General usage and terminology When we first open GameSalad we see something like this: Templates: GameSalad includes templates

More information

Welcome back! I will show you how you will profit from your blog from multiple streams of income

Welcome back! I will show you how you will profit from your blog from multiple streams of income Welcome back! Michael Bashi here owner and CEO of Affiliate Maverick. I am so excited about this video installment as I will go ahead and explain to you all the different sources you will earn money from

More information

The Best Trading Year Ever

The Best Trading Year Ever THE BOOKER REPORT From Rob Booker January 2016 Start a subscription in 60 seconds here. In this issue: 1.The Best Trading Year Ever 2.The 5 Trades I Love Right Now 3.How to Get Anything You Want 4.Conquering

More information

Lazy Money Method. With Methods Like These, Why are You Broke?

Lazy Money Method. With Methods Like These, Why are You Broke? Lazy Money Method With Methods Like These, Why are You Broke? I never understood why people have a hard time making money online, until I got my ass into the game. I used to think that once the internet

More information

PERISCOPE 5 DAY CHALLENGE. by Zach Spuckler

PERISCOPE 5 DAY CHALLENGE. by Zach Spuckler PERISCOPE 5 DAY CHALLENGE by Zach Spuckler PERISCOPE CHALLENGE DAY 1 WRITING YOUR LISTENER TO LEADS SCRIPT The biggest challenge I see when it comes to generating leads with Periscope is that people are

More information

Game Making Workshop on Scratch

Game Making Workshop on Scratch CODING Game Making Workshop on Scratch Learning Outcomes In this project, students create a simple game using Scratch. They key learning outcomes are: Video games are made from pictures and step-by-step

More information

Episode 6: Can You Give Away Too Much Free Content? Subscribe to the podcast here.

Episode 6: Can You Give Away Too Much Free Content? Subscribe to the podcast here. Episode 6: Can You Give Away Too Much Free Content? Subscribe to the podcast here. Hey everybody! Welcome to episode number 6 of my podcast. Today I m going to be talking about using the free strategy

More information

Legacy FamilySearch Overview

Legacy FamilySearch Overview Legacy FamilySearch Overview Legacy Family Tree is "Tree Share" Certified for FamilySearch Family Tree. This means you can now share your Legacy information with FamilySearch Family Tree and of course

More information

Introduction. Hello and Welcome

Introduction. Hello and Welcome Introduction Hello and Welcome Thank you for purchasing the CPA Blitz report. I am going to be showing you a step-by-step guide on how to setup your campaigns with the Advertising Network PopAds.net as

More information

Imagine having a client that

Imagine having a client that Imagine having a client that Join Our Group Click Here To Join Our Group A Marketers Dream Endless Supply of Clients! Come True! Imagine having a client who Has massive traffic coming in every single day.

More information

My Earnings from PeoplePerHour:

My Earnings from PeoplePerHour: Hey students and everyone reading this post, since most of the readers of this blog are students, that s why I may call students throughout this post. Hope you re doing well with your educational activities,

More information

Math Matters: Why Do I Need To Know This?

Math Matters: Why Do I Need To Know This? Math Matters: Why Do I Need To Know This? Bruce Kessler, Department of Mathematics Western Kentucky University Episode One 1 Introduction Hi, I m Bruce Kessler and welcome to Math Matters. This is a bold

More information

An easy user guide AN EASY USER GUIDE

An easy user guide AN EASY USER GUIDE AN EASY USER GUIDE 1 Hello! Welcome to our easy user guide to Create my Support Plan. We have created this guide to help you start using Create my Support Plan. And we hope that you will find it useful.

More information

Professional guide for any online marketing business

Professional guide for any online marketing business 24/7 Direct Referrals on Auto-Pilot Professional guide for any online marketing business LEGAL DISCLAIMER The Publisher has strive to be as accurate and complete as possible in the creation of this report,

More information

Lead Fire. Introduction

Lead Fire. Introduction Introduction The first thing you need when you're building a list is traffic - and there are very few places that you can get started that are as easy (and as cheap) as Facebook. With Facebook Advertising,

More information

[00:00:00] All right, guys, Luke Sample here aka Lambo Luke and this is the first video, really the first training video in the series. Now, in this p

[00:00:00] All right, guys, Luke Sample here aka Lambo Luke and this is the first video, really the first training video in the series. Now, in this p [00:00:00] All right, guys, Luke Sample here aka Lambo Luke and this is the first video, really the first training video in the series. Now, in this particular video, we re going to cover the Method Overview

More information

Note: This PDF contains affiliate links.

Note: This PDF contains affiliate links. Note: This PDF contains affiliate links. First of all, let me thank you from the bottom of my heart for downloading this ebook. By taking this ONE step in the direction of saving your marriage, you re

More information

uiulearn TUTORIAL INTEGRATIONS> HOW TO USE PANOPTO (STUDENT)

uiulearn TUTORIAL INTEGRATIONS> HOW TO USE PANOPTO (STUDENT) uiulearn TUTORIAL INTEGRATIONS> HOW TO USE PANOPTO (STUDENT) This tutorial covers how to record a Panopto video for your course. IN ORDER TO DO THIS, YOUR INSTRUCTOR MUST COMPLETE SEVERAL STEPS TO ALLOW

More information

Make Money Online Today With Affiliate Marketing How To Get Started Right Now

Make Money Online Today With Affiliate Marketing How To Get Started Right Now Page 1 Make Money Online Today With Affiliate Marketing How To Get Started Right Now These Are A Sample Of The Notes You Will Get In Our MarcusMentor.me Coaching program Learn More At MarcusMentor.me NOTE:

More information

HUSTLE YOUR WAY TO THE TOP

HUSTLE YOUR WAY TO THE TOP 2011: year of the HUSTLE YOUR WAY TO THE TOP Get Inside Their Heads: How To Avoid No and Score Big Wins By Deeply Understanding Your Prospect BY RAMIT SETHI hustle 2 MOST PEOPLE DESERVE TO FAIL Today,

More information

What happens to the other 3 who didn t make any money? Why didn t they?

What happens to the other 3 who didn t make any money? Why didn t they? The Ugly Truth What if I told you that for every 10 people who builds an AMZ Affiliate Site, only 7 of them make money from their site? What if I told you that from those 7, around 1-2 of them make REALLY

More information

How To Create Instant Authority So You Can Rank Like Crazy Without Doing Complicated Boring SEO WORK and NO Tech Overwhelm!

How To Create Instant Authority So You Can Rank Like Crazy Without Doing Complicated Boring SEO WORK and NO Tech Overwhelm! How To Create Instant Authority So You Can Rank Like Crazy Without Doing Complicated Boring SEO WORK and NO Tech Overwhelm! Justin Sardi Bill Cousins Anthony Aires You OWE It To Yourself Pay close attention!

More information

Useful Tips To Earn With ClixSense. A Complete Guide to start your Earning with ClixSense Today!

Useful Tips To Earn With ClixSense. A Complete Guide to start your Earning with ClixSense Today! Useful Tips To Earn With ClixSense A Complete Guide to start your Earning with ClixSense Today! USEFUL TIPS TO EARN WITH CLIXSENSE CONTENTS: Introduction:... 2 Where to Start?... 2 Types of Membership:...

More information

HOW TO START A PASSIVE INCOME BUSINESS

HOW TO START A PASSIVE INCOME BUSINESS HOW TO START A PASSIVE INCOME BUSINESS In Less Than 30 Days Using Instagram LeadFriend s guide to building a Massive following on Instagram and Profit from it (in 27 days). HOW TO START A PASSIVE INCOME

More information

Buying and Holding Houses: Creating Long Term Wealth

Buying and Holding Houses: Creating Long Term Wealth Buying and Holding Houses: Creating Long Term Wealth The topic: buying and holding a house for monthly rental income and how to structure the deal. Here's how you buy a house and you rent it out and you

More information

Affiliate Millions - How To Create Money Magnets

Affiliate Millions - How To Create Money Magnets Michael Cheney s Affiliate Millions 1 Now it s time to talk about how to create your money magnets. What are money magnets? Well, as the name suggests, it s just anything that you can put on your website

More information

Congratulations - Welcome to the easiest way to make money online!

Congratulations - Welcome to the easiest way to make money online! Congratulations - Welcome to the easiest way to make money online! I m not going to fill this course with a lot of fluff and filler content to make it look more than it is. I know you want to be making

More information

Blunt object, meet nail. Choosing tools and wrangling Unity

Blunt object, meet nail. Choosing tools and wrangling Unity Blunt object, meet nail Choosing tools and wrangling Unity About me Norwegian, moved to the US 6 years ago for a year at UCSD, and never went back. I now work for a company called Uber Entertainment, who

More information

The Secret to High Performance Trading. Discover Where your strength and weaknesses lie

The Secret to High Performance Trading. Discover Where your strength and weaknesses lie The Secret to High Performance Trading Discover Where your strength and weaknesses lie 1 Being able to perform as a winning trader requires action without a lot of theory and discussion start right now!

More information

Photoshop: Manipulating Photos

Photoshop: Manipulating Photos Photoshop: Manipulating Photos All Labs must be uploaded to the University s web server and permissions set properly. In this lab we will be manipulating photos using a very small subset of all of Photoshop

More information

- Introduction - Minecraft Pi Edition. - Introduction - What you will need. - Introduction - Running Minecraft

- Introduction - Minecraft Pi Edition. - Introduction - What you will need. - Introduction - Running Minecraft 1 CrowPi with MineCraft Pi Edition - Introduction - Minecraft Pi Edition - Introduction - What you will need - Introduction - Running Minecraft - Introduction - Playing Multiplayer with more CrowPi s -

More information

Forex Fools and Liars by Jason Fielder 1 Forex Fools and Liars Why Everyone In This Business (Including Me) By Jason Fielder IMPORTANT: As an added bonus for downloading this report, you also received

More information

Step 3, Lesson 2 The List Builders Lab Setting Up a High-Converting Opt-in Page

Step 3, Lesson 2 The List Builders Lab Setting Up a High-Converting Opt-in Page Step 3, Lesson 2 The List Builders Lab Setting Up a High-Converting Opt-in Page Hi there. One of my favorite parts of List Builder s Lab is being able to show you how to take action. That s exactly what

More information

lead generation strategies for your real estate business

lead generation strategies for your real estate business 8 lead generation strategies for your real estate business www.pipelineroi.com 1-866-300-1550 8 LEAD GENERATION STRATEGIES for your real estate business Lead generation is simultaneously perhaps one of

More information

Monster Trading Plan Survey

Monster Trading Plan Survey Monster Trading Plan Survey Published by: http://www.surefire-trading.com How Much Are You Losing Using The Wrong Trading Plan Or System On the 26 th July 06 I conducted one of the largest surveys of traders

More information

Your First Game: Devilishly Easy

Your First Game: Devilishly Easy C H A P T E R 2 Your First Game: Devilishly Easy Learning something new is always a little daunting at first, but things will start to become familiar in no time. In fact, by the end of this chapter, you

More information

Video Sales Letter Zombie

Video Sales Letter Zombie Table of Contents Table of Contents... 2 Introduction... 4 Why Use Video Sales Letters?... 5 Tips for Engaging Video Sales Letters... 7 Important Video Sales Letter Features... 9 Headline... 9 Solving

More information

More Actions: A Galaxy of Possibilities

More Actions: A Galaxy of Possibilities CHAPTER 3 More Actions: A Galaxy of Possibilities We hope you enjoyed making Evil Clutches and that it gave you a sense of how easy Game Maker is to use. However, you can achieve so much with a bit more

More information

Resources to help clients optimize their move online

Resources to help clients optimize their move online The Accountant s Guide to Moving Clients Online PART 3: Resources to help clients optimize their move online Accelerate your clients successful transition to QuickBooks Online with these helpful resources.

More information

Custom Mobile App Support

Custom Mobile App Support Custom Mobile App Support FBBC by Samantha Taylor App Scheduling app for Fit Body Boot Camp and Samantha Taylor Fitness. You can prebook your workouts, check in for your workout or cancel it, all through

More information

THE SECRETS OF MARKETING VIA SOCIAL NETWORKING SITES

THE SECRETS OF MARKETING VIA SOCIAL NETWORKING SITES THE SECRETS OF MARKETING VIA SOCIAL NETWORKING SITES 1 INTRODUCTION No matter what you sell on the Internet today whether it is ebooks, products you have to mail out for services that you provide yourself

More information

Getting Affiliates to Sell Your Stuff: What You Need To Know

Getting Affiliates to Sell Your Stuff: What You Need To Know Getting Affiliates to Sell Your Stuff: What You Need To Know 1 Getting affiliates to promote your products can be easier money than you could make on your own because... They attract buyers you otherwise

More information

Getting Started Quicken 2011 for Windows

Getting Started Quicken 2011 for Windows Getting Started Quicken 2011 for Windows Thank you for choosing Quicken! This guide helps you get started with Quicken as quickly as possible. You ll find out how to: Use the Home tab Set up your first

More information

TABLE OF CONTENTS. Logging into the Website Homepage and Tab Navigation Setting up Users on the Website Help and Support...

TABLE OF CONTENTS. Logging into the Website Homepage and Tab Navigation Setting up Users on the Website Help and Support... TABLE OF CONTENTS Logging into the Website...02 Homepage and Tab Navigation...03 Setting up Users on the Website...08 Help and Support...10 Uploding and Managing Photos...12 Using the Yearbook Ladder...16

More information

SAMPLE SCRIPTS FOR INVITING

SAMPLE SCRIPTS FOR INVITING SAMPLE SCRIPTS FOR INVITING If you feel at a loss for words when you send an invite, or you want a simple go-to script ready so you don t miss out on an inviting opportunity, then review this script tool

More information

DON T SABOTAGE YOUR DREAM.

DON T SABOTAGE YOUR DREAM. DON T SABOTAGE YOUR DREAM. The home you ve dreamed about is right around the corner. You ve done all the right legwork up front: You ve gotten pre-approved for a mortgage. You re working with a great real

More information

THE 4 PILLARS OF INVESTING Cash Flow: Module 1 TRANSCRIPTION

THE 4 PILLARS OF INVESTING Cash Flow: Module 1 TRANSCRIPTION THE 4 PILLARS OF INVESTING Cash Flow: Module 1 TRANSCRIPTION 2 The 4 Pillars of Investing A transcription of CASH FLOW MODULE 1 2 3 4 5 Hi everybody, Andy Tanner here. I am so excited for Basic Cash flow,

More information

INTRO TO LAYERS (PART 2)

INTRO TO LAYERS (PART 2) Adobe Photoshop Elements INTRO TO LAYERS (PART 2) By Dave Cross In Part 1, we talked about the main concept behind layers and why they re so important. Now we ll take it a step further and show how to

More information

BLACKBOARD LEARN 9.1: BASIC TRAINING- PART 1

BLACKBOARD LEARN 9.1: BASIC TRAINING- PART 1 BLACKBOARD LEARN 9.1: BASIC TRAINING- PART 1 Beginning of Part 1 INTRODUCTION I m Karissa Greathouse, for those of you that don t know me. I think I know almost everybody in here, but some of you may not

More information

Pianola User Guide for Players How to analyse your results, replay hands and find partners with Pianola

Pianola User Guide for Players How to analyse your results, replay hands and find partners with Pianola Pianola User Guide for Players How to analyse your results, replay hands and find partners with Pianola Pianola is used by the American Contract Bridge League, the English Bridge Union, and clubs large

More information

Finding Cousins Descendancy Research by ron ray eaglequestpro.com/share

Finding Cousins Descendancy Research by ron ray eaglequestpro.com/share Finding Cousins Descendancy Research by ron ray eaglequestpro.com/share Descendancy Research is finding your Cousins Excuses Uncle Bob or Aunt Betsy have worked years on our ancestors, so there is not

More information

How 10 Struggling Newbies Made Their First 100 Sales. By James Francis

How 10 Struggling Newbies Made Their First 100 Sales. By James Francis How 10 Struggling Newbies Made Their First 100 Sales By James Francis www.jamesfrancis.com Introduction The question I get asked the most by my customers is James, if you were to start again from scratch,

More information

WORKBOOK. 1 Page Marketing Plan

WORKBOOK. 1 Page Marketing Plan WORKBOOK 1 Page Marketing Plan We re so fortunate to be entrepreneurs today, with access to so many cheep, and sometimes free, ways to get the word out about what we do, and who we help. There is a social

More information

Welcome to JigsawBox!! How to Get Started Quickly...

Welcome to JigsawBox!! How to Get Started Quickly... Welcome to JigsawBox!! How to Get Started Quickly... Welcome to JigsawBox Support! Firstly, we want to let you know that you are NOT alone. Our JigsawBox Customer Support is on hand Monday to Friday to

More information

26 AdWords Mistakes: How They Are Killing Your Profits (And How To Fix Them) Contents

26 AdWords Mistakes: How They Are Killing Your Profits (And How To Fix Them) Contents Contents Mistake #1: Not Separating Search Network & Display Network Campaigns... 4 Mistake #2: Not Adding Negative Keywords... 5 Mistake #3: Adding Too Many Keywords Per Ad Group... 6 Mistake #4: Not

More information

Copyright 2014, Productive Catholic & Pro sulum, LLC

Copyright 2014, Productive Catholic & Pro sulum, LLC By now, you should have gone through some or all of the videos in the Better Business Basics course. If you haven t, go back and start watching them because as great as everything that I m going to be

More information

The Clixsense Report. WARNING!!!

The Clixsense Report. WARNING!!! The Clixsense Report. WARNING!!! The Information Contained In This Report Can Result In An Explosion Of Daily Income, And No Matter How Much You Earn... You Will Get Paid In Full Guaranteed! Stop Wasting

More information

SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer

SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer Introduction I don t have to tell you that Scrivener is an amazing writing program--you know that because you re taking this

More information

No Cost Online Marketing

No Cost Online Marketing No Cost Online Marketing No matter what type of Internet business you have, you need to be promoting it at all times. If you don t make the effort to tell the right people about it (i.e. those people who

More information

If you don t design your own life plan, chances are you ll fall into someone else s plan. And guess what they have planned for you? Not much.

If you don t design your own life plan, chances are you ll fall into someone else s plan. And guess what they have planned for you? Not much. If you don t design your own life plan, chances are you ll fall into someone else s plan. And guess what they have planned for you? Not much. Jim Rohn Hello my name is Tony Berry and I am creator of The

More information