Search result found: 8


 
tony lam

A trend following strategy based on volatility approach

In this article, we will introduce a simple trend following strategy using a volatility approach. Volatility Decomposition: Upside vs Downside Volatility is used to reflect the magnitude of market fluctuation, and it is usually used to observe market sentiment or predict market trends. In financial market, due to the behavior of "Market t ...

 
tony lam

10 Common Statistical Models You Should Know

Here presents the 10 most commonly used statistical models/algorithms every Quants and AI developers should know. Linear Regression Logistic Regression Decision Tree ...

 
tony lam

A simple ATR strategy

In this article, we will implement a simple trading strategy using the ATR indicator. Trading Idea: From the discussion in the previous post , ATR itself does not provide indication about price trend. Instead, it is used to measure market volati ...

 
tony lam

3 Tips to make your code more pythonic

This article will introduce you to the top 3 ways you might not be fully taking advantage of to write better Python code, including: List Comprehension Dictionary Access ...

 
tony lam

A simple RSI strategy

Following the discussion from the previous post [Technical Indicator - Relative Strength Index (RSI)] , we will implement a simple trading strate ...

 
tony lam

Technical Indicator - Average True Range (ATR)

What is Average True Range? The Average True Range is a technical analysis indicator, originally developed by J. Welles Wilder. ATR does not provide indication about price trend. Instead, it measures the market volatility for ...

 
tony lam

Technical Indicator - Relative Strength Index (RSI)

What is Relative Strength Index? The relative strength index (RSI) is a technical indicator for financial market analysis. By measuring the magnitude of recent price changes, it evaluates the over-bought or over-sold conditions of ...

 
tony lam

A Simlpe Moving Average Strategy migrating from MT4/MT5 EA

This article provides the full source code of an example presented in a webinar on 2021.07.10. In the webinar, it discussed how to convert a Simple Moving Average Strategy from MT4 EA to ALGOGENE. < ...