Introduction to Quantitative/Algorithmic trading: from Technical Analysis to Statistical Arbitrage

Size: px
Start display at page:

Download "Introduction to Quantitative/Algorithmic trading: from Technical Analysis to Statistical Arbitrage"

Transcription

1 Introduction to Quantitative/Algorithmic trading: from Technical Analysis to Statistical Arbitrage PQFC trading Seminar part II Xiaoguang Wang PhD Candidate, Department of Statistics Purdue University April 21, 2014 Xiaoguang Wang (PQFC) Quantitative Trading 1 / 60

2 Important Disclosures The following presentation is for educational purpose only. All symbols and trading ideas discussed in the presentation are for demonstration only and are not recommendations. Active trading is not suitable for everyone. Past performance does not guarantee future results. Xiaoguang Wang (PQFC) Quantitative Trading 2 / 60

3 Outline 1 Introduction to Quantitative Trading 2 Quantitative Trading using Technical Analysis Technical Indicator Algorithm design and implementation 3 Optimizing your quantitative trading strategies Back testing 4 Quantitative Trading using more advanced tools Statistical Arbitrage Xiaoguang Wang (PQFC) Quantitative Trading 3 / 60

4 What is Quantitative Trading? Trading strategies based on quantitative analysis which rely on mathematical computations and number crunching to identify trading opportunities. The process consists of thorough examination of vast databases searching for repeating patternspersistent occurrences of a phenomenon, correlations among liquid assets. Price and volume are two of the more common data inputs used in quantitative analysis as the main inputs to mathematical models. It is generally used by financial institute and hedge funds. Nowadays, quantitative trading is also commonly used by individual investors. Xiaoguang Wang (PQFC) Quantitative Trading 4 / 60

5 Main types of quantitative trading strategies High frequency trading Algorithmic trading using technical analysis Liquidity trading (such as Convertible arbitrage) Statistical arbitrage Mean-reverting Pair trading (long & short; cointegration; Equity risk-neutral) Volatility trading/arbitrage Xiaoguang Wang (PQFC) Quantitative Trading 5 / 60

6 Steps to construct a quantitative trading strategy Strategy Identification: Finding a strategy, exploiting an edge and deciding on trading frequency Strategy Backtesting: Obtaining data, analyzing strategy performance and removing biases Execution System: Linking to a brokerage, automating the trading and minimizing transaction costs Risk Management: Optimal capital allocation, bet size /Kelly criterion and trading psychology Xiaoguang Wang (PQFC) Quantitative Trading 6 / 60

7 Technical Analysis Philosophy of Technical Analysis: Market action discounts everything. Prices move in trends: A trend in motion is more likely to continue than to reverse. (An adaptation of Newtons first law of motion.) History repeats itself. A trend is assumed to be in effect until it gives definite signals that it has reversed. The market is more psychological than logical. (To know more information about technical analysis basics, please go to my website.) Xiaoguang Wang (PQFC) Quantitative Trading 7 / 60

8 Main types of technical indicators Trend detective indicators: Moving Average systems, Bollinger Bands, parabolic SAR, Commodity Channel Index, ZigZag Oscillation indicators: MACD, RSI, RVI, Stochastic Oscillator, Williams percent range Volume indicators: Volumes, On balance volume, Accumulation, Distribution. Others: Pivot system, Fibonacci retracement system. Xiaoguang Wang (PQFC) Quantitative Trading 8 / 60

9 Moving Average Simple Moving Average (SMA): the unweighted mean of the previous n data. SMA = p M + p M p M (n 1) n Weighted Moving Average (WMA): weights decrease in arithmetical progression WMA M = np M + (n 1)p M p M n+1 + p M n+1 n + (n 1) Exponential Moving Average (EMA): weights decrease exponentially S 1 = Y 1 for t > 1, S t = αy t 1 + (1 α)s t 1 Xiaoguang Wang (PQFC) Quantitative Trading 9 / 60

10 Moving average system A Moving Average Crossover System refers to plotting multiple moving average indicators of different periods on one price chart. A Moving Average Envelop system plots two bands around a moving average, staggered by a specific percentage rate. The two main principals for trading strategies based on a moving average system are: Moving average indicators of important periods (such as 20,60,100,200) offer support or resistance for price process. Short-period (fast) moving average indicator up-crosses long-period (slow) moving average indicator indicating the beginning or speed-up of uptrend, and vice verse. Xiaoguang Wang (PQFC) Quantitative Trading 10 / 60

11 Moving Average Crossover Crossover between price and indicator Crossover between MAs Xiaoguang Wang (PQFC) Quantitative Trading 11 / 60

12 Moving Average Envelope in the chart below, a 5% envelope is placed around a 25-day moving average. Notice how the move often reverses direction after approaching one of the levels. A price move beyond the band can signal a period of exhaustion, and traders will watch for a reversal toward the center average. Xiaoguang Wang (PQFC) Quantitative Trading 12 / 60

13 Bollinger bands Drawback of MA envelope: the bandwidth is fixed regardless of the price dynamics, while volatility of price is stochastic. Improvement: Bollinger Band, which consists of: an N-period moving average (MA) an upper band at K times an N-period standard deviation above the moving average (MA + Kσ) a lower band at K times an N-period standard deviation below the moving average (MA Kσ) Typical values for N and K are 20 and 2, respectively. The default choice for the average is a simple moving average. Usually the same period is used for both the middle band and the calculation of standard deviation. Xiaoguang Wang (PQFC) Quantitative Trading 13 / 60

14 Bollinger bands S&P 500 with 20-day, two-standard-deviation Bollinger Bands, %b and bandwidth. Xiaoguang Wang (PQFC) Quantitative Trading 14 / 60

15 MACD The Moving Average Convergence Divergence (MACD) technique is a trend-following momentum indicator which combines two exponential averages of past prices into two lines: the MACD line and the signal line. The MACD line is constructed as the difference between two exponential moving averages computed using last m and n closing prices (n > m). EMAL t = 1 ( n P t ) EMAL t 1, EMAL 0 = P 0 n EMAS t = 1 ( m P t ) EMAS t 1, EMAS 0 = P 0 m MACD t = EMAS t EMAL t, MACD 0 = 0 Xiaoguang Wang (PQFC) Quantitative Trading 15 / 60

16 MACD - cont. The signal line, SL t is a k-period exponential moving average of the MACD line SL t = 1 ( k MACD t ) SL t 1, SL 0 = 0 k Taking the difference between the MACD and the signal line we obtain the MACD-Histogram (MACDH) indicator, which highlights variations in the spread between the fast and the slow lines MACDH t = MACD t SL t The most popular parameters in the MACD and MACDH computations are m = 12, n = 26, k = 9. Xiaoguang Wang (PQFC) Quantitative Trading 16 / 60

17 MACD - signal line crossover The chart above shows IBM with its 12-day EMA (green), 26-day EMA (red) and the 12,26,9 MACD in the indicator window. There were eight signal line crossovers in six months: four up and four down. Xiaoguang Wang (PQFC) Quantitative Trading 17 / 60

18 MACD - center line crossover The chart above shows Pulte Homes (PHM) with at least four centerline crosses in nine months. The resulting signals worked well because strong trends emerged with these centerline crossovers. Xiaoguang Wang (PQFC) Quantitative Trading 18 / 60

19 MACD - center line crossover Above is a chart of Cummins Inc (CMI) with seven centerline crossovers in five months. In contrast to Pulte Homes, these signals would have resulted in numerous whipsaws because strong trends did not materialize after the crossovers. Xiaoguang Wang (PQFC) Quantitative Trading 19 / 60

20 MACD - center line crossover This chart shows 3M (MMM) with a bullish centerline crossover in late March 2009 and a bearish centerline crossover in early February This signal lasted 10 months. In other words, the 12-day EMA was above the 26-day EMA for 10 months. This was one strong trend. Xiaoguang Wang (PQFC) Quantitative Trading 20 / 60

21 MACD - Divergences The MACD turned up with a bullish divergence with a signal line crossover in early December. Google confirmed a reversal with resistance breakout. Xiaoguang Wang (PQFC) Quantitative Trading 21 / 60

22 MACD - Divergences Above we see Gamestop (GME) with a large bearish divergence from August to October. On the price chart, notice how broken support turned into resistance on the throwback bounce in November (red dotted line). This throwback provided a second chance to sell or sell short. Xiaoguang Wang (PQFC) Quantitative Trading 22 / 60

23 MACD - Divergences This chart shows the S&P 500 ETF (SPY) with four bearish divergences from August to November Despite less upside momentum, the ETF continued higher because the uptrend was strong. Its MACD (momentum) may have been less positive (strong) as the advance extended, but it was still largely positive. Xiaoguang Wang (PQFC) Quantitative Trading 23 / 60

24 MACD - Conclusions Brings together momentum and trend in one indicator Chartists looking for more sensitivity may try a shorter short-term moving average and a longer long-term moving average. MACD(5,35,5) is more sensitive than MACD(12,26,9) and might be better suited for weekly charts. The MACD is not particularly good for identifying overbought and oversold levels. MACD does not have any upper or lower limits to bind its movement. MACD Line is calculated using the actual difference between two moving averages. This means MACD values are dependent on the price of the underlying security. The MACD values for a $20 stocks may range from -1.5 to 1.5, while the MACD values for a $100 may range from -10 to +10. Xiaoguang Wang (PQFC) Quantitative Trading 24 / 60

25 Stochastic Oscillator Developed by George C. Lane in the late 1950s, the Stochastic Oscillator is a momentum indicator that shows the location of the close relative to the high-low range over a set number of periods. According to an interview with Lane, the Stochastic Oscillator doesn t follow price, it doesn t follow volume or anything like that. It follows the speed or the momentum of price. As a rule, the momentum changes direction before price. As such, bullish and bearish divergences in the Stochastic Oscillator can be used to foreshadow reversals. This was the first, and most important, signal that Lane identified. Lane also used this oscillator to identify bull and bear set-ups to anticipate a future reversal. Because the Stochastic Oscillator is range bound, is also useful for identifying overbought and oversold levels. Xiaoguang Wang (PQFC) Quantitative Trading 25 / 60

26 Stochastic Oscillator: Calculation %K=(Current Close-Lowest Low)/(Highest High-Lowest Low)*100 %D = 3-day SMA of %K Lowest Low = lowest low for the look-back period Highest High = highest high for the look-back period %K is multiplied by 100 to move the decimal point two places Xiaoguang Wang (PQFC) Quantitative Trading 26 / 60

27 Stochastic Oscillator: Three types Fast Stochastic Oscillator: Fast %K = %K basic calculation Fast %D = 3-period SMA of Fast %K Slow Stochastic Oscillator: Slow %K = Fast %K smoothed with 3-period SMA Slow %D = 3-period SMA of Slow %K The Full Stochastic Oscillator is a fully customizable version of the Slow Stochastic Oscillator. Users can set the look-back period, the number of periods to slow %K and the number of periods for the %D moving average. The default parameters: Fast Stochastic Oscillator (14,3), Slow Stochastic Oscillator (14,3) and Full Stochastic Oscillator (14,3,3). Xiaoguang Wang (PQFC) Quantitative Trading 27 / 60

28 Stochastic Oscuallator: Three types Xiaoguang Wang (PQFC) Quantitative Trading 28 / 60

29 Stochastic Oscuallator: Overbought/Oversold Yahoo! (YHOO) with the Full Stochastic Oscillator (20,5,5). A longer look-back period (20 days versus 14) and longer moving averages for smoothing (5 versus 3) produce a less sensitive oscillator with fewer signals. Xiaoguang Wang (PQFC) Quantitative Trading 29 / 60

30 Stochastic Oscuallator: Overbought/Oversold with adjustments Crown Castle (CCI) with the Full Stochastic Oscillator (20,5,5). Overbought readings were ignored because the bigger trend was up. Trading in the direction of the bigger trend improves the odds. Xiaoguang Wang (PQFC) Quantitative Trading 30 / 60

31 Stochastic Oscuallator: Overbought/Oversold It is sometimes necessary to increase sensitivity to generate signals. Xiaoguang Wang (PQFC) Quantitative Trading 31 / 60

32 Stochastic Oscuallator: Divergences International Gaming Tech (IGT) with a bullish divergence in February-March 2010 Xiaoguang Wang (PQFC) Quantitative Trading 32 / 60

33 Stochastic Oscuallator: Divergences Kohls (KSS) with a bearish divergence in April 2010 Xiaoguang Wang (PQFC) Quantitative Trading 33 / 60

34 Stochastic Oscuallator: Bull Bears Set-up Network Appliance (NTAP) with a bull set-up in June 2009 A set-up is not a signal. The set-up foreshadows a tradable low in the near future. NTAP declined below its June low and the Stochastic Oscillator moved below 20 to become oversold. Traders could have acted when the Stochastic Oscillator moved above its signal line, above 20 or above 50. Xiaoguang Wang (PQFC) Quantitative Trading 34 / 60

35 Stochastic Oscuallator: Bull Bears Set-up Motorola (MOT) with a bear set-up in November 2009 Notice that the Stochastic Oscillator did not make it back above 80 and turned down below its signal line in mid December. Xiaoguang Wang (PQFC) Quantitative Trading 35 / 60

36 RSI Developed J. Welles Wilder, the Relative Strength Index (RSI) is a momentum oscillator that measures the speed and change of price movements. RSI oscillates between zero and 100. Traditionally, and according to Wilder, RSI is considered overbought when above 70 and oversold when below 30. Signals can also be generated by looking for divergences, failure swings and centerline crossovers. RSI can also be used to identify the general trend. Xiaoguang Wang (PQFC) Quantitative Trading 36 / 60

37 RSI: Calculations RSI = RS RS = Average Gain/Average Loss The very first calculations for average gain and average loss are simple 14 period averages. First Average Gain = Sum of Gains over the past 14 periods / 14. First Average Loss = Sum of Losses over the past 14 periods / 14 The second, and subsequent, calculations are based on the prior averages and the current gain loss: Average Gain = [(previous Average Gain) x 13 + current Gain] / 14. Average Loss = [(previous Average Loss) x 13 + current Loss] / 14. Xiaoguang Wang (PQFC) Quantitative Trading 37 / 60

38 Algorithm Designs Before optimizing or improving your trading strategies using quantitative methods, you need to first translate your trading ideas into clear algorithms ready to be implemented. The algorithm can be simple or complicated depending on your trading ideas. A simple example: current time t. If position t 1 0 and RSI t 1 > 70 and RSI t < 70, then close buying positions and short sell 1 more share. If position t 1 0 and RSI t 1 < 30 and RSI t > 30, then close shorting positions and buy 1 more share t = t + 1. Xiaoguang Wang (PQFC) Quantitative Trading 38 / 60

39 Another example: range-breakthrough Trading idea: after price process stays quietly in a very narrow range for a significant period of time, the price break out the range in one direction with strong motivation. Then we expect the price continue to follow this direction and build up a trend. Things to think about for algorithm design: How to define narrow? What is a significant period of time? What is strong motivation? When to close the position? How to set up stop-loss? Xiaoguang Wang (PQFC) Quantitative Trading 39 / 60

40 Range-breakthrough example: paramerization To solve those questions above, we can introduce some parameters whose values can be determined by users or after doing back testing on historical data. Illustrations: Narrow parameter: range width W Period of time: at least N days Strong motivation: Price closing above or below the range for more than the amount X. Conditions to realize your profits: for long positions, once Close t < Close t 1 and Close t 1 < Close t 2. For short positions, vice verse. Stop-Loss parameter: Stop positions once the floating P&L is below Y dollars. Xiaoguang Wang (PQFC) Quantitative Trading 40 / 60

41 Range-breakthrough example: Algorithm range = False If High(N) Low(N) W, then range = True and UB = High(N), LB = Low(N). If Position t == 0 and range = True and Close t UB > X, then buy 1 share at market and set range = False. If Position t == 0 and range = True and LB Close t > X, then short 1 share at market and set range = False. If profits < Y then close current positions. If Position t > 0 and Close t < Close t 1 and Close t 1 < Close t 2, sell to cover. If Position t < 0 and Close t > Close t 1 and Close t 1 > Close t 2, buy to cover. Xiaoguang Wang (PQFC) Quantitative Trading 41 / 60

42 Algorithm Implementations After designing the algorithms, the next step is to implement the algorithm with a specific programming language. Popular choices are: Excel VBA, C++, Matlab, or some platform-based language, such as Meta Trader 4 (5), TradeStation, etc. Xiaoguang Wang (PQFC) Quantitative Trading 42 / 60

43 Meta Trader 4 Register and download the software for free: Programming Language: MQL4 or MQL5 MQL4 Documentation and reference Back test: Ctrl + R Xiaoguang Wang (PQFC) Quantitative Trading 43 / 60

44 Optimize trading strategies Once you implement the trading algorithms with a programming language, you are able to run the algorithm over historical data to evaluate its quality. In most cases, the results of your trading algorithm without optimization might look not very exciting. But do not just think that your trading idea does bot work out and throw it away. The problems might come from inappropriate set-up of parameter values, or related to the trading product you use, or the inappropriate time period you use when testing. And most of the issues above (and much more than that) can be solved by optimizing your strategy. Xiaoguang Wang (PQFC) Quantitative Trading 44 / 60

45 Steps to optimize trading strategies Do back-testing and optimize important parameters. Pay attention to the situations of Maximum Drawdown and Maximum Consecutive Loss. Add some filter steps to avoid those extremely bad situations. Back test your algorithm on different time periods, to evaluate its stability and finally settle down parameter values. Do forward-testing of the optimized algorithm for a significant period of time before you put your real money on it. After you formally take use of the algorithm with real money, you still need to evaluate the algorithm with the new coming data from time to time to check if the market situations change greatly or not. Xiaoguang Wang (PQFC) Quantitative Trading 45 / 60

46 Important things to remember The time period you use should be long enough to guarantee the statistical significance of your testing results. But keep in mind that newer data should have higher importance. Do not just maximize your balance. There are still many other important factors in evaluating trading strategies, such as: Balance Maximum Drawdown Consecutive maximum loss percentage of wins Sharp ratio, percentage of maximum profits over total profits Margin level required Try your algorithm on similar products, on different time periods. Xiaoguang Wang (PQFC) Quantitative Trading 46 / 60

47 Back-testing example illustration with MetaTrade 4: Moving Average trading system The trading idea of the MA system to be tested is very simple: open positions when price crossover with the MA line of a given period N. And close positions when price crossovers the MA of another period M. You can download this trading strategy online from the link below: There are many other well-designed trading strategy you may download from the MQL4 community. Some of them are very good candidates after some slight adjustments. You can try to evaluate and improve those strategies by yourself! Xiaoguang Wang (PQFC) Quantitative Trading 47 / 60

48 MA strategy example - cont. After running the algorithm, the results look very disappointing. As shown in the graph above, we keep losing money, consistently.. Xiaoguang Wang (PQFC) Quantitative Trading 48 / 60

49 MA strategy example - cont Now let s see how optimization can make bad things good. As shown above, we set up the parameter optimization ranges based on the underlying product we test on, i.e. the EURUSD 1 hour data. Xiaoguang Wang (PQFC) Quantitative Trading 49 / 60

50 MA strategy example - cont From the optimization results, we choose the one that performs the best considering both profits and maximum drawdown as shown above. Note that the total number of trades is also relatively large, which gives us more confidence from the statistical sense. Xiaoguang Wang (PQFC) Quantitative Trading 50 / 60

51 MA strategy example -cont The parameter values corresponding to the optimal case are as below: Stop Loss = 1290 Take Profit = 370 MA open period = 13 MA close period = 40 Xiaoguang Wang (PQFC) Quantitative Trading 51 / 60

52 MA strategy example - cont Now we use the optimized parameter values as input and run the algorithm again. As shown above, now the algorithm turns out to be a very good one. Xiaoguang Wang (PQFC) Quantitative Trading 52 / 60

53 MA strategy example - cont Further look into the statistical details of the trading algorithm, we find that this algorithm looks pretty good in all kinds of perspectives. And you can even further improve this trading strategy by looking at on price chart the trade which realized the consecutive maximum loss. And you notice that it is because the algorithm keeps sending short sell orders several times in an uptrend market. Then you can try to avoid this problem by adding a filter. For example, use a smoother MA line as a filter line and do not go short while price is above this MA line. Xiaoguang Wang (PQFC) Quantitative Trading 53 / 60

54 Forward test can be totally different After this simple example, you might think that designing trading strategy is very easy given that such a simple MA system can turn out to be so good. But before being too optimistic, let me remind you several things: Past performance can not GUARANTEE future results! Try your optimized algorithm on a different time period to see if it still works well. Back testing ignored the execution time delay, transaction fees, potential market liquidity issue and many other factors that can matter a lot in real-time trading. So use your optimized algorithm to do a forward-testing for a significant period of time before putting money on it. Xiaoguang Wang (PQFC) Quantitative Trading 54 / 60

55 More accurate tools Technical analysis has already been well-known in the market. Meanwhile, opportunities left using simple technical tools to make money become fewer and fewer. You can use what you learn in your MATH courses or STAT courses to design more accurate trading algorithms. Brain storm: Moving average is just a simple time-series model. Then why not use other time series models? Stochastic Oscillator or RSI tries to measure the volatility of price process, then why not use better model to estimator volatility more accurately? While trying to improve the probability of winning in your algorithms, have you ever thought about using probability distributions of all kinds of random events in the market? What you need is just an event with high probability. Why always analyzing one asset price process? How about create a new (swap) process by combining several asset prices together? Can we design some indicators representing fundamental factors? Xiaoguang Wang (PQFC) Quantitative Trading 55 / 60

56 What is Statistical Arbitrage? In academic literature, statistical arbitrage is opposed to (deterministic) arbitrage. In deterministic arbitrage, a sure profit can be obtained from being long some securities and short others. In statistical arbitrage, there is a statistical mispricing of one or more assets based on the expected value of these assets. In other words, statistical arbitrage conjectures statistical mispricings of price relationships that are true in expectation, in the long run when repeating a trading strategy. Among those who follow the hedge fund industry, statistical arbitrage refers to a particular category of hedge funds (other categories include global macro, convertible arbitrage, and so on). In this narrower sense, statistical arbitrage is often abbreviated as Stat Arb or StatArb. According to Andrew Lo, StatArb refers to highly technical short-term mean-reversion strategies involving large numbers of securities, very short holding periods (measured in days to seconds), and substantial computational, trading, and information technology infrastructure. Xiaoguang Wang (PQFC) Quantitative Trading 56 / 60

57 Main types of StatArb Mean-reverting Pair trading (long & short; cointegration; Equity risk-neutral) Volatility trading/arbitrage Xiaoguang Wang (PQFC) Quantitative Trading 57 / 60

58 StatArb: Improvements of technical analysis Many statistical arbitrage strategies can be considered as improvements on technical analysis based strategies: StatArb says that it s better to do mean-reverting strategies on a stationary process (go and read your time series textbook about the definition of stationarity) StatArb says that volatility process is stochastic which can be modeled pretty well with a nonlinear time series model (such as GARCH). StatArb says that modeling of some stochastic quantity is the first step to generate trading ideas. StatArb says that you should take use of the statistics you learn to do everything instead of thinking naively. For example: what does significant mean in statistics? Why not use cross-validation when doing back-testing? Xiaoguang Wang (PQFC) Quantitative Trading 58 / 60

59 Two homework assignments for you Combine the S&P 500 index future and the Gold future into a stationary process; verify the process you designed is stationary; then use mean-reverting idea to design trading strategies (you can calculate RSI on the stationary process to generate mean-reverting trading signals; or you can design a new tool to measure the price deviation from the mean); optimize your trading strategy by back-testing (use cross-validation) Use USDJPY hourly data from to estimator weekly realized volatility series; fit a time-series model on the volatility series; generate trading ideas based on the time series model predictions; optimize your trading strategy by back-testing (use cross-validation) Xiaoguang Wang (PQFC) Quantitative Trading 59 / 60

60 Conclusion Investing your time and efforts is more important than investing your money! Thank you! Xiaoguang Wang (PQFC) Quantitative Trading 60 / 60

Disclaimer: The authors of the articles in this guide are simply offering their interpretation of the concepts. Information, charts or examples

Disclaimer: The authors of the articles in this guide are simply offering their interpretation of the concepts. Information, charts or examples Disclaimer: The authors of the articles in this guide are simply offering their interpretation of the concepts. Information, charts or examples contained in this lesson are for illustration and educational

More information

MATHEMATICAL TRADING INDICATORS

MATHEMATICAL TRADING INDICATORS MATHEMATICAL TRADING INDICATORS The mathematical trading methods provide an objective view of price activity. It helps you to build up a view on price direction and timing, reduce fear and avoid overtrading.

More information

Chapter 2.3. Technical Analysis: Technical Indicators

Chapter 2.3. Technical Analysis: Technical Indicators Chapter 2.3 Technical Analysis: Technical Indicators 0 TECHNICAL ANALYSIS: TECHNICAL INDICATORS Charts always have a story to tell. However, from time to time those charts may be speaking a language you

More information

Understanding the market

Understanding the market Understanding the market Technical Analysis Approach: part I Xiaoguang Wang President, Purdue Quantitative Finance Club PhD Candidate, Department of Statistics Purdue University wang913@purdue.edu Outline

More information

Professional Trader Series: Moving Average Formula & Strategy Guide. by John Person

Professional Trader Series: Moving Average Formula & Strategy Guide. by John Person Professional Trader Series: Moving Average Formula & Strategy Guide by John Person MOVING AVERAGE FORMULAS & STRATEGY GUIDE In an online seminar conducted for the Chicago Board of Trade, I shared how to

More information

A GUIDE TO WL INDICATORS

A GUIDE TO WL INDICATORS A GUIDE TO WL INDICATORS GETTING TECHNICAL ABOUT TRADING: USING EIGHT COMMON INDICATORS TO MAKE SENSE OF TRADING What s a technical indicator and why should I use them? What s the market going to do next?

More information

How I Trade Profitably Every Single Month without Fail

How I Trade Profitably Every Single Month without Fail How I Trade Profitably Every Single Month without Fail First of all, let me take some time to introduce myself to you. I am Kelvin and I am a full time currency trader. I have a passion for trading and

More information

Technical Indicators Tutorial - Forex Trading, Currency Forecast, FX Trading Signal, Forex Training Cour...

Technical Indicators Tutorial - Forex Trading, Currency Forecast, FX Trading Signal, Forex Training Cour... Page 1 Technical Indicators Tutorial Technical Analysis Articles Written by TradingEducation.com Technical Indicators Tutorial Price is the primary tool of technical analysis because it reflects every

More information

Chapter 2.3. Technical Indicators

Chapter 2.3. Technical Indicators 1 Chapter 2.3 Technical Indicators 0 TECHNICAL ANALYSIS: TECHNICAL INDICATORS Charts always have a story to tell. However, sometimes those charts may be speaking a language you do not understand and you

More information

Stochastic Oscillator.

Stochastic Oscillator. Stochastic Oscillator. By Jay Lakhani www.4x4u.net George Lane was the originator of the stochastic indicator in the 1960 s; the indicator tracks the market momentum. Lane observed that as prices rise

More information

Technical Analysis. Technical Analysis. Schools of Thought. Discussion Points. Discussion Points. Schools of thought. Schools of thought

Technical Analysis. Technical Analysis. Schools of Thought. Discussion Points. Discussion Points. Schools of thought. Schools of thought The Academy of Financial Markets Schools of Thought Random Walk Theory Can t beat market Analysis adds nothing markets adjust quickly (efficient) & all info is already in the share price Price lies in

More information

Indicators. Applications and Pitfalls. Adam Grimes

Indicators. Applications and Pitfalls. Adam Grimes Indicators Applications and Pitfalls Adam Grimes CIO, Waverly Advisors, LLC October 6, 2015 Outline A little history lesson What indicators are and what they can do even more important what they can not

More information

8 Day Intensive Course Lesson 5 Stochastics & Bollinger Bands

8 Day Intensive Course Lesson 5 Stochastics & Bollinger Bands 8 Day Intensive Course Lesson 5 Stochastics & Bollinger Bands A)Trading with Stochastic Trading With Stochastic What is stochastic? Stochastic is an oscillator that works well in range-bound markets.[/i]

More information

GO Markets Trading Tools

GO Markets Trading Tools GO Markets Trading Tools Expert Advisors One of the most popular features of MetaTrader4 and the reason it is the world leader in Forex trading is because of the ability to use Expert Advisors. EAs are

More information

Alerts & Filters in Power E*TRADE Pro Strategy Scanner

Alerts & Filters in Power E*TRADE Pro Strategy Scanner Alerts & Filters in Power E*TRADE Pro Strategy Scanner Power E*TRADE Pro Strategy Scanner provides real-time technical screening and backtesting based on predefined and custom strategies. With custom strategies,

More information

atching Currency Moves with The Schaff Trend Cycle Indicator

atching Currency Moves with The Schaff Trend Cycle Indicator JULY/AUGUST 2002. VOLUME 4 CRunning a trend indicator through a cycle oscillator creates an effective entry technique into today s strongly trending currency markets, says Doug Schaff, a 20-year veteran

More information

Highly Active Manual FX Trading Strategy. 1.Used indicators. 2. Theory. 2.1. Standard deviation (stddev Indicator - standard MetaTrader 4 Indicator)

Highly Active Manual FX Trading Strategy. 1.Used indicators. 2. Theory. 2.1. Standard deviation (stddev Indicator - standard MetaTrader 4 Indicator) Highly Active Manual FX Trading Strategy This strategy based on a mixture of two styles of trading: forex scalping, trend following short-term strategy. You can use it for any currency. Timeframe M15.

More information

My Techniques for making $150 a Day Trading Forex *Note for my more Advanced Strategies check out my site: Click Here

My Techniques for making $150 a Day Trading Forex *Note for my more Advanced Strategies check out my site: Click Here My Techniques for making $150 a Day Trading Forex *Note for my more Advanced Strategies check out my site: Click Here The Strategy We will be looking at 2 different ways to day trade the Forex Markets.

More information

6. Get Top Trading Signals with the RSI

6. Get Top Trading Signals with the RSI INTERMEDIATE 6. Get Top Trading Signals with the RSI The Relative Strength Index, or RSI, is one of the most popular momentum indicators in technical analysis. The RSI is an oscillator that moves between

More information

THE CYCLE TRADING PATTERN MANUAL

THE CYCLE TRADING PATTERN MANUAL TIMING IS EVERYTHING And the use of time cycles can greatly improve the accuracy and success of your trading and/or system. THE CYCLE TRADING PATTERN MANUAL By Walter Bressert There is no magic oscillator

More information

Trend Determination - a Quick, Accurate, & Effective Methodology

Trend Determination - a Quick, Accurate, & Effective Methodology Trend Determination - a Quick, Accurate, & Effective Methodology By; John Hayden Over the years, friends who are traders have often asked me how I can quickly determine a trend when looking at a chart.

More information

NEDBANK PRIVATE WEALTH STOCKBROKERS Graphical Analysis Manual

NEDBANK PRIVATE WEALTH STOCKBROKERS Graphical Analysis Manual This advanced charting application displays interactive, feature-rich, automatically-updated financial charts; The application also provides you with the ability to perform advanced technical analysis

More information

The Moving Average. 2004 W. R. Booker II. All rights reserved forever and ever. And ever.

The Moving Average. 2004 W. R. Booker II. All rights reserved forever and ever. And ever. The Moving Average By Rob Booker 2004 W. R. Booker II. All rights reserved forever and ever. And ever. The information contained in this ebook is designed to teach you methods of watching forex quotes

More information

TOMORROW'S TRADING TECHNOLOGY. 100% automated Fibonacci support and resistance levels that you can count on every single trading day in an instant.

TOMORROW'S TRADING TECHNOLOGY. 100% automated Fibonacci support and resistance levels that you can count on every single trading day in an instant. TOMORROW'S TRADING TECHNOLOGY 100% automated Fibonacci support and resistance levels that you can count on every single trading day in an instant. ProTrader Table of Contents 1. Areas A. Fibonacci Confluence

More information

High Probability Trading Triggers for Gold & Silver

High Probability Trading Triggers for Gold & Silver Welcome to a CBOT Online Seminar High Probability Trading Triggers for Gold & Silver Presented by: John Person Sponsored by Interactive Brokers Live Presentation Starts at 3:30 PM Chicago Time NOTE: Futures

More information

CHART TRADING GUIDE 1

CHART TRADING GUIDE 1 CHART TRADING GUIDE 1 How to understand chart trading This guide is designed to teach you the basics of chart trading- the chart patterns that are covered in this booklet can be used for short and medium

More information

STREET SMARTS I. Planetary 2 Library. Introduction: Benefits: L I B R A R I E S

STREET SMARTS I. Planetary 2 Library. Introduction: Benefits: L I B R A R I E S Planetary 2 Library STREET SMARTS I Introduction: In today s world of computer trading, the small speculator often feels at a disadvantage to traders and corporations that have access to more powerful

More information

Using Bollinger Bands. by John Bollinger

Using Bollinger Bands. by John Bollinger Article Text Copyright (c) Technical Analysis Inc. 1 Stocks & Commodities V. 10:2 (47-51): Using Bollinger Bands by John Bollinger Using Bollinger Bands by John Bollinger Trading bands, which are lines

More information

Advanced Trading Systems Collection MACD DIVERGENCE TRADING SYSTEM

Advanced Trading Systems Collection MACD DIVERGENCE TRADING SYSTEM MACD DIVERGENCE TRADING SYSTEM 1 This system will cover the MACD divergence. With this trading system you can trade any currency pair (I suggest EUR/USD and GBD/USD when you start), and you will always

More information

6.14. Oscillators and Indicators.

6.14. Oscillators and Indicators. 6.14. Oscillators and Indicators. What is Momentum? The word momentum has two meanings to market technicians, one of them is a generic concept about how prices move, and the second one is a specific indicator.

More information

Timing the Trade How to Buy Right before a Huge Price Advance

Timing the Trade How to Buy Right before a Huge Price Advance Timing the Trade How to Buy Right before a Huge Price Advance By now you should have read my first two ebooks and learned about the life cycle of a market, stock, or ETF, and discovered the best indicators

More information

BROKER SERVICES AND PLATFORM

BROKER SERVICES AND PLATFORM BROKER SERVICES AND PLATFORM A broker is an individual who executes buy and sell orders and get commission in the form of SPREAD (I will talk about SPREAD in the subsequent lessons). You trade through

More information

Charting Glossary Version 1 September 2008

Charting Glossary Version 1 September 2008 Charting Glossary Version 1 September 2008 i Contents 1 Price...1 2 Charts...1 2.1 Line, Step, Scatter, Mountain charts... 1 2.2 Bar Charts (Open/High/Low/Close charts)... 1 2.3 Candle charts... 2 2.4

More information

FREEFOREXEBOOK.ORG. Forex Trading

FREEFOREXEBOOK.ORG. Forex Trading FREEFOREXEBOOK.ORG Forex Trading Index Index 2 I - Forex Advantages 3 II 5 Myths about Forex Trading 5 III How Can I Start Making Money on Forex? 7 III.1 Educate Yourself 7 III.2 Plan How You Will Trade

More information

RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT

RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT RISK DISCLOSURE STATEMENT / DISCLAIMER AGREEMENT Trading any financial market involves risk. This report and all and any of its contents are neither a solicitation nor an offer to Buy/Sell any financial

More information

Stop Investing and Start Trading. How I Trade Technical Strategies Over Fundamental Strategies

Stop Investing and Start Trading. How I Trade Technical Strategies Over Fundamental Strategies Stop Investing and Start Trading How I Trade Technical Strategies Over Fundamental Strategies PREPARATION PRIOR TO OPENING MARKET 1. On Daily Log Sheet record NAV [Net Asset Value] of portfolio. 2. Note

More information

How to use Hamzei Analytics CI and DCI Indicators By Fari Hamzei

How to use Hamzei Analytics CI and DCI Indicators By Fari Hamzei How to use Hamzei Analytics CI and DCI Indicators By Fari Hamzei A key element of your success in trading is early detection of the trend before the next big move occurs. Seeing the next trend in prices,

More information

Day Trade System EZ Trade FOREX

Day Trade System EZ Trade FOREX Day Trade System The EZ Trade FOREX Day Trading System is mainly used with four different currency pairs; the EUR/USD, USD/CHF, GBP/USD and AUD/USD, but some trades are also taken on the USD/JPY. It uses

More information

TECHNICAL CHARTS UNDERSTANDING TECHNICAL CHARTS

TECHNICAL CHARTS UNDERSTANDING TECHNICAL CHARTS TECHNICAL CHARTS UNDERSTANDING TECHNICAL CHARTS Overview is an advanced charting application specifically designed to display interactive, feature rich, auto updated financial charts. The application provides

More information

Why the E.A.S.Y. Method?

Why the E.A.S.Y. Method? Why the E.A.S.Y. Method? Mark Douglas, author of Trading in the Zone, states: The best traders have developed an edge and more importantly, they trust their edge. Why the E.A.S.Y. Method? My trading edge

More information

Dynamic Zones NEW TECHNIQUES

Dynamic Zones NEW TECHNIQUES NEW TECHNIQUES Dynamic Zones Most indicators use a fixed zone for buy and sell signals. Here s a concept based on zones that are responsive to past levels of the indicator. by Leo Zamansky, Ph.D., and

More information

VBM-ADX40 Method. (Wilder, J. Welles from Technical Analysis of Stocks and Commodities, February 1986.)

VBM-ADX40 Method. (Wilder, J. Welles from Technical Analysis of Stocks and Commodities, February 1986.) VBM-ADX40 Method " I ve found that the most important thing in trading is always doing the right thing, whether or not you win or lose this is market savvy money management... I would go so far as to say

More information

How Well Do Traditional Momentum Indicators Work? Cynthia A. Kase, CMT President, Kase and Company, Inc., CTA October 10, 2006

How Well Do Traditional Momentum Indicators Work? Cynthia A. Kase, CMT President, Kase and Company, Inc., CTA October 10, 2006 How Well Do Traditional Momentum Indicators Work? Cynthia A. Kase, CMT President, Kase and Company, Inc., CTA October 10, 2006 1.0 Introduction Most market technicians believe traditional momentum indicators,

More information

ChartGenie USER GUIDE

ChartGenie USER GUIDE 1. Using This Manual This manual is designed to familiarize new users with the Applet charting tool interface. Through this manual, user will learn and understand the various features and functions offered.

More information

Take it E.A.S.Y.! Dean Malone 4X Los Angeles Group - HotComm January 2007

Take it E.A.S.Y.! Dean Malone 4X Los Angeles Group - HotComm January 2007 Take it E.A.S.Y.! Dean Malone 4X Los Angeles Group - HotComm January 2007 Dean Malone Partner of Compass Foreign Exchange, LLC. Co-Founder of Forex Signal Service.com. Previous Senior National for 4X Made

More information

Leon Wilson Trading Success

Leon Wilson Trading Success Leon Wilson Trading Success A talk given by Mary de la Lande to the BullCharts User Group Meeting on 13 February 2008 1. Who is Leon Wilson? His Books and where to get them. 2. Book 1: The Business of

More information

New York Traders Expo 2012

New York Traders Expo 2012 New York Traders Expo 2012 with JAMES CHEN, CTA, CMT Director of Technical Research and Education All rights reserved, FXDD Inc. 2010 Today s Topic: High Probability Strategies for Trading Forex www.fxdd.com

More information

My Daily Trading Preparation. Establishing Risk Parameters and Positions

My Daily Trading Preparation. Establishing Risk Parameters and Positions My Daily Trading Preparation Establishing Risk Parameters and Positions My Trading Goals My goals have to be consistent with my trading plan each day. For stocks, I am primarily a long-only trader (and

More information

The Intraday Bias Indicator

The Intraday Bias Indicator Wednesday, June 13, 2012 Issue 41 Wednesday, August 8, 2012 Intraday Time Analysis Erik Skyba, CMT Senior Quantitative Analyst TSLabs@TradeStation.com Features Studies/Files Included: Focus: Technical

More information

Nest Pulse Impact Document

Nest Pulse Impact Document Nest Pulse Impact Document July 25, 2012 1 Document Information DOCUMENT CONTROL INFORMATION DOCUMENT VERSION REVIEWER REVIEW NOTES Omnesys Nest Plus Nest Pulse Impact Document VERSION NOTES This Nest

More information

NEURAL networks [5] are universal approximators [6]. It

NEURAL networks [5] are universal approximators [6]. It Proceedings of the 2013 Federated Conference on Computer Science and Information Systems pp. 183 190 An Investment Strategy for the Stock Exchange Using Neural Networks Antoni Wysocki and Maciej Ławryńczuk

More information

marketsurvival.net guide: The advanced guide to fibonacci trading How to trade stocks and Forex with Fibonacci numbers

marketsurvival.net guide: The advanced guide to fibonacci trading How to trade stocks and Forex with Fibonacci numbers marketsurvival.net guide: The advanced guide to fibonacci trading How to trade stocks and Forex with Fibonacci numbers Contents FOREWORD... 5 PART 1. INTRODUCTION...7 WHY IS USING THE FIBONACCI TOOLS BETTER

More information

THE MACD: A COMBO OF INDICATORS FOR THE BEST OF BOTH WORLDS

THE MACD: A COMBO OF INDICATORS FOR THE BEST OF BOTH WORLDS THE MACD: A COMBO OF INDICATORS FOR THE BEST OF BOTH WORLDS By Wayne A. Thorp Moving averages are trend-following indicators that don t work well in choppy markets. Oscillators tend to be more responsive

More information

Table of Contents. Preface. Chapter 1: TRADING BASICS. Chapter 2: BASIC TOOLS. Chapter 3: ADX. Chapter 4: ACCUMULATION LINE

Table of Contents. Preface. Chapter 1: TRADING BASICS. Chapter 2: BASIC TOOLS. Chapter 3: ADX. Chapter 4: ACCUMULATION LINE Table of Contents Preface Chapter 1: TRADING BASICS Chapter 2: BASIC TOOLS Chapter 3: ADX Chapter 4: ACCUMULATION LINE Chapter 5: AVERAGE TRUE RANGE Chapter 6: CANDLESTICKS Chapter 7: MACD Chapter 8: MOVING

More information

4 Hour MACD Forex Strategy

4 Hour MACD Forex Strategy 4 Hour MACD Forex Strategy Welcome to the 4 Hour MACD Forex Strategy. This strategy is aimed at simplicity as well as high probability trades. I have been in the equity market for almost ten years now

More information

The 15 50 Trading System

The 15 50 Trading System Main Premise: This is considered to be one of the most straight forward systems for a live trading style for day- and/or intraday trading. The 50 SMA is one of the most commonly used moving average numbers

More information

By Wayne McDonell wayne@fxbootcamp.com Forex Trading Expo Las Vegas September 12 & 13 2008

By Wayne McDonell wayne@fxbootcamp.com Forex Trading Expo Las Vegas September 12 & 13 2008 STRATEGIC & tactical forex TRADING: By Wayne McDonell wayne@fxbootcamp.com Risk Warning This is an educational presentation. There are no trade recommendations. Trading and Investing is risky business.

More information

This library is included for Platinum Club members, and may be purchased separately for the Gold version of Trade Navigator.

This library is included for Platinum Club members, and may be purchased separately for the Gold version of Trade Navigator. Planetary 2 Library I C H I M O K U C L O U D L I B R A R Y Introduction: In 1969, Goichi Hosada, a journalist in Tokyo, developed a very versatile indicator that has withstood the test of time. The Ichimoku

More information

Technical Indicators Explained

Technical Indicators Explained Chapter I. Technical Indicators Explained In This Chapter The information in this chapter is provided to help you learn how to use the technical indicators that are available for charting on the AIQ TradingExpert

More information

8 Day Intensive Course Lesson 3

8 Day Intensive Course Lesson 3 8 Day Intensive Course Lesson 3 A) What are Fibonacci Retracements? Fibonacci Retracements What are Fibonacci retracements? Levels at which the market is expected to retrace to after a strong trend. Based

More information

Binary Options Trading Strategy. Professional Binary Trading Manual Strategy

Binary Options Trading Strategy. Professional Binary Trading Manual Strategy Binary Options Trading Strategy Professional Binary Trading Manual Strategy U.S. Government Required Disclaimer - Commodity Futures Trading Commission Futures and Options trading has large potential rewards,

More information

The Day Trade Forex System: The ULTIMATE Step-By-Step Guide to Online Currency Trading

The Day Trade Forex System: The ULTIMATE Step-By-Step Guide to Online Currency Trading The Day Trade Forex System: The ULTIMATE Step-By-Step Guide to Online Currency Trading How You Can Earn $50 to $500 A Day Currency Trading From The Comfort of Your Own Home! By Erol Bortucene and Cynthia

More information

Intra-Day Trading Techniques. Pristine.com Presents. Greg Capra. book, Tools and Tactics for the Master Day Trader

Intra-Day Trading Techniques. Pristine.com Presents. Greg Capra. book, Tools and Tactics for the Master Day Trader Pristine.com Presents Intra-Day Trading Techniques With Greg Capra Co-Founder of Pristine.com, and Co-Author of the best selling book, Tools and Tactics for the Master Day Trader Copyright 2001, Pristine

More information

ForexIndicator.org. Presents. Written By Kelvin Lee

ForexIndicator.org. Presents. Written By Kelvin Lee ForexIndicator.org Presents Written By Kelvin Lee All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic,

More information

Using Formations To Identify Profit Opportunities

Using Formations To Identify Profit Opportunities Using Formations To Identify Profit Opportunities Using Formations To Identify Profit Opportunities The concepts and strategies discussed may not be suitable for all investors. It is important that investors

More information

Advanced Trading Systems Collection FOREX TREND BREAK OUT SYSTEM

Advanced Trading Systems Collection FOREX TREND BREAK OUT SYSTEM FOREX TREND BREAK OUT SYSTEM 1 If you are a part time trader, this is one system that is for you. Imagine being able to take 20 minutes each day to trade. A little time at night to plan your trades and

More information

GMMA 2.0 User Guide. August 2010 Edition PF-30-01-02

GMMA 2.0 User Guide. August 2010 Edition PF-30-01-02 GMMA 2.0 User Guide GMMA 2.0 User Guide August 2010 Edition PF-30-01-02 Support Worldwide Technical Support and Product Information www.nirvanasystems.com Nirvana Systems Corporate Headquarters 7000 N.

More information

Pivot Point Trading. If you would rather work the pivot points out by yourself, the formula I use is below:

Pivot Point Trading. If you would rather work the pivot points out by yourself, the formula I use is below: Pivot Point Trading You are going to love this lesson. Using pivot points as a trading strategy has been around for a long time and was originally used by floor traders. This was a nice simple way for

More information

Programming Manual. IW Graphic Tool Pro. for IW QuickTrade. User s Manual

Programming Manual. IW Graphic Tool Pro. for IW QuickTrade. User s Manual Programming Manual IW Graphic Tool Pro for IW QuickTrade User s Manual TABLE OF CONTENTS ProBacktest Introduction Chapter I: Introduction Accessing ProBacktest...2 ProBacktest setup window sections...2

More information

CURRENCY TRADING Using Swing Breakouts in Forex Trading

CURRENCY TRADING Using Swing Breakouts in Forex Trading CURRENCY TRADING Using Swing Breakouts in Forex Trading 28 MAY 2009 Doug Schaff discusses the use of intermediate swing highs and swing lows to develop a shortterm approach to trading the currency markets.

More information

Welcome to FOREX e-book

Welcome to FOREX e-book Welcome to FOREX e-book Table of Contents 1. About BRAND... 2 2. Trading Platforms... 3 3. What is Traded in the Forex Market?... 4 4. What is Forex?... 4 5. Advantages of the Forex Market... 5 6. How

More information

Trade Stocks Like A Pro

Trade Stocks Like A Pro Trade Stocks Like A Pro 5 TIPS Plus 3 Picks International Traders Expo New York By Dr. Charles B. Schaap, Jr. 5 Tips Tip #1: Use ADX to Trade Power Trends Tip #2: Use RSI (50/50 Strategy) for Timing the

More information

ChartFilter Stock Tools Training Guide

ChartFilter Stock Tools Training Guide ChartFilter Stock Tools Training Guide Disclaimer MHP Systems Inc. is not responsible for investments made as a result of using this program. The purchaser of the license for use of this program is responsible

More information

The Force 5min system

The Force 5min system The Force 5min system Original Version Traders, Detailed below is my newest strategy. I invite eveyone to try it out as it does produce good profits if traded correctly. By good profits I mean you make

More information

The Building Blocks for Succeeding with Forex Trading

The Building Blocks for Succeeding with Forex Trading The Building Blocks for Succeeding with Forex Trading This e-book was created by traders and for traders with the aim of equipping traders with the right skills of earning big returns from trading forex

More information

ID ING WHEN TO BUY AND SELL USING THE STOCHASTIC OSCILLATOR

ID ING WHEN TO BUY AND SELL USING THE STOCHASTIC OSCILLATOR ID ING WHEN TO BUY AND SELL USING THE STOCHASTIC OSCILLATOR By Wayne A. Thorp Stochastics work best with those securities that are currently trading within a particular range and may prove useful in identifying

More information

Intra-Day Trading Techniques

Intra-Day Trading Techniques Pristine.com Presents Intra-Day Trading Techniques With Greg Capra Co-Founder of Pristine.com, and Co-Author of the best selling book, Tools and Tactics for the Master Day Trader Copyright 2001, Pristine

More information

Welcome to the world of forex FOREX TRADER STARTER KIT. Varengold Bank AG, Grosse Elbstrasse 27, 22767 Hamburg, Germany

Welcome to the world of forex FOREX TRADER STARTER KIT. Varengold Bank AG, Grosse Elbstrasse 27, 22767 Hamburg, Germany Welcome to the world of forex FOREX TRADER STARTER KIT 1 Content Introduction... 3 What is foreign exchange trading?... 4 Why is forex the most attractive market to trade?... 5 Why Varengold MetaTrader?...

More information

ANTS SuperGuppy. ANTS for esignal Installation Guide. A Guppy Collaboration For Success PAGE 1

ANTS SuperGuppy. ANTS for esignal Installation Guide. A Guppy Collaboration For Success PAGE 1 ANTS SuperGuppy A Guppy Collaboration For Success ANTS for esignal Installation Guide PAGE 1 IMPORTANT INFORMATION Copyright Under copyright legislation, this publication may not be reproduced or transmitted

More information

Trading Technical Analysis Signals With Option Spreads. By Steve Lentz Director of Education, DiscoverOptions Mentoring

Trading Technical Analysis Signals With Option Spreads. By Steve Lentz Director of Education, DiscoverOptions Mentoring Trading Technical Analysis Signals With Option Spreads By Steve Lentz Director of Education, DiscoverOptions Mentoring Disclaimer The views of third party speakers and their materials are their own and

More information

SAIF-2011 Report. Rami Reddy, SOA, UW_P

SAIF-2011 Report. Rami Reddy, SOA, UW_P 1) Title: Market Efficiency Test of Lean Hog Futures prices using Inter-Day Technical Trading Rules 2) Abstract: We investigated the effectiveness of most popular technical trading rules on the closing

More information

ValueCharts for thinkorswim

ValueCharts for thinkorswim ValueCharts for thinkorswim Contents What are ValueCharts? What is ValueCharts Scanner? What are ValueAlertsSM? What are ValueBarsSM? What are ValueBandsSM What are ValueLevelsSM? What are ValueFlagsSM?

More information

The Day Trade Forex System: The ULTIMATE Step-By-Step Guide to Online Currency Trading

The Day Trade Forex System: The ULTIMATE Step-By-Step Guide to Online Currency Trading The Day Trade Forex System: The ULTIMATE Step-By-Step Guide to Online Currency Trading How You Can Earn $50 to $500 A Day Currency Trading From The Comfort of Your Own Home! 2003 Copyright DayTradeForex.com

More information

Alarm Manager. 1. About the Alarm Manager... 4. 2. Overview of the Alarm Manager... 5

Alarm Manager. 1. About the Alarm Manager... 4. 2. Overview of the Alarm Manager... 5 Table of Contents 1. About the... 4 2. Overview of the... 5 2.1 Alarms and groups... 5 2.2 Display of alarms... 5 2.3 Triggers... 5 2.3.1 Alarms not yet triggered... 6 2.3.2 Alarm triggered, and condition

More information

Trader s Guide. Updated March 2014

Trader s Guide. Updated March 2014 Trader s Guide Updated March 2014 Welcome to this basic introduction to the Trigger Trade Report, FTMDaily s unique stock trading system. This simple guide will explain how to get started using our trading

More information

Neural Network Stock Trading Systems Donn S. Fishbein, MD, PhD Neuroquant.com

Neural Network Stock Trading Systems Donn S. Fishbein, MD, PhD Neuroquant.com Neural Network Stock Trading Systems Donn S. Fishbein, MD, PhD Neuroquant.com There are at least as many ways to trade stocks and other financial instruments as there are traders. Remarkably, most people

More information

JUST SIT BACK AND LET THE GIRTH MODEL MAKE MONEY FOR YOU. Elham Negahdary

JUST SIT BACK AND LET THE GIRTH MODEL MAKE MONEY FOR YOU. Elham Negahdary Electronic Proceedings of Undergraduate Mathematics Day 4 2010 No. 2, 1 6; http://academic.udayton.edu/epumd/ JUST SIT BACK AND LET THE GIRTH MODEL MAKE MONEY FOR YOU Elham Negahdary Department of Mathematics,

More information

A Practical Guide to Technical Indicators; (Part 1) Moving Averages

A Practical Guide to Technical Indicators; (Part 1) Moving Averages A Practical Guide to Technical Indicators; (Part 1) Moving Averages By S.A Ghafari Over the past decades, attempts have been made by traders and researchers aiming to find a reliable method to predict

More information

Basic Forex forecast methods: Technical analysis and fundamental analysis

Basic Forex forecast methods: Technical analysis and fundamental analysis Forex forecasting Basic Forex forecast methods: Technical analysis and fundamental analysis This article provides insight into the two major methods of analysis used to forecast the behavior of the Forex

More information

Definitions to Basic Technical Analysis Terms. www.recognia.com

Definitions to Basic Technical Analysis Terms. www.recognia.com Definitions to Basic Technical Analysis Terms www.recognia.com A Alert An alert is a notification sent when a significant event occurs in one or more investments of importance to a trader. Recognia sends

More information

Chapter 1 Introduction Disclaimer: Forex Involves risk. So if you lose money you can't blame us we told you trading involves risk.

Chapter 1 Introduction Disclaimer: Forex Involves risk. So if you lose money you can't blame us we told you trading involves risk. By Casey Stubbs -Winners Edge Trading.com Table of Contents Chapter 1. Introduction Chapter 2.. Trading Plan Chapter 3.. Money Management Chapter 4. Moving Average Strategy Chapter 5. Stochastic Strategy

More information

FUTURES STRATEGY: Short-term CCI p. 10. ADJUSTING TO stock index futures shift p. 14. STRADDLES, STRANGLES, and volatility p. 16

FUTURES STRATEGY: Short-term CCI p. 10. ADJUSTING TO stock index futures shift p. 14. STRADDLES, STRANGLES, and volatility p. 16 May 2009 Volume 3, No. 5 FUTURES STRATEGY: Short-term CCI p. 10 ADJUSTING TO stock index futures shift p. 14 STRADDLES, STRANGLES, and volatility p. 16 FEAR AND LOATHING in the options market p. 20 TRADING

More information

Moving Average Method Part 2 by www.surefire-trading.com. Ty Young

Moving Average Method Part 2 by www.surefire-trading.com. Ty Young Moving Average Method Part 2 by www.surefire-trading.com Ty Young Hi everyone, this is Ty Young with Surefire-Trading.com. In our last lesson, MA Method Part 1, we demonstrated how Moving Averages could

More information

Technical Analysis SAmple InveSTIng plans 1

Technical Analysis SAmple InveSTIng plans 1 Technical Analysis Sample Investing Plans 1 Important Information All investing plans and rules are provided for informational purposes only, and should not be considered a recommendation of any security,

More information

TECHNICAL ANALYSIS. Handbook. 2003 Bloomberg L.P. All rights reserved.

TECHNICAL ANALYSIS. Handbook. 2003 Bloomberg L.P. All rights reserved. TECHNICAL ANALYSIS Handbook 2003 Bloomberg L.P. All rights reserved. There are two principles of analysis used to forecast price movements in the financial markets -- fundamental analysis and technical

More information

Finding Top Trading Candidates:

Finding Top Trading Candidates: Finding Top Trading Candidates: Tradeoffs in Risk, Reward, and Opportunity September 23, 2014 Adam Grimes, CIO, Waverly Advisors The Problem We have a finite amount of time and attention. Where to best

More information

FX Trading Guide: 4 Simple Ways to Spot a Trend JON MCFARLANE AND VERNON LEES

FX Trading Guide: 4 Simple Ways to Spot a Trend JON MCFARLANE AND VERNON LEES FX Trading Guide: 4 Simple Ways to Spot a Trend JON MCFARLANE AND VERNON LEES 0 BetOnMarkets 2011 Foreword We wrote this guide to give people wanting to trade Financial Fixed Odds some simple tools and

More information

Simpler Options. Indicator guide. An informative reference for John Carter s commonly used trading indicators. www.simpleroptions.

Simpler Options. Indicator guide. An informative reference for John Carter s commonly used trading indicators. www.simpleroptions. Simpler Options Indicator guide An informative reference for John Carter s commonly used trading indicators At Simpler Options you will see a handful of proprietary indicators on John Carter s charts.

More information

Trading Medium-Term Divergences

Trading Medium-Term Divergences TRADING SYSTEMS Spotting Trend Reversals Trading Medium-Term Divergences Detect medium-term divergences by using the zero-lagging exponential moving average, support and resistance lines, and trendlines.

More information

Trend Analysis From Fibonacci to Gann Ichimoku versus MACD Proprietary Signals

Trend Analysis From Fibonacci to Gann Ichimoku versus MACD Proprietary Signals Trend Analysis From Fibonacci to Gann Ichimoku versus MACD Proprietary Signals Cornelius Luca Luca Global Research Banco Best Lisbon 2010 From Fibonacci to Gann Who is Fibonacci? Leonardo of Pisa (1170s

More information