tradingsignal.io.trend-followTrend follow script to be used across all market instruments and timeframes. It will be available for testing and subscription soon.
Trendfollowing
Gleeson Trend Tracker (GTT) IndicatorComprehensive Trend Trading System Indicator made up of the four components to help you successfully trade market trends:
Entry Signals (Green & Red Arrows)
The entry arrows indicate entry conditions are present. Green for long entries and red for short entries. If you already in position in the direction of an entry signal, ignore it. Switch to position maintenance mode for that market once trading a market.
Current Trend Status Channels (Red/Green Overlay)
The channel overlay is intended to indicate whether the market has recently trended up/down. Green if moving higher, Red if moving Lower. Channels make it easier to visualise current & previous price trajectory.
On Close Stop Loss (OCSL) / Price Average (40 MA) Blue line
This acts both as the "line in the sand" in relation to trend direction but also importantly as your (OCSL) or sometimes also known as mental stop. If price closes beyond this line in the opposite direction to your position, exit the position. It's important to wait for price to close (this methodology works best on weekly charts so make entry & exit decisions when the market is closed). This method works best if you risk 1% per trade using the distance from entry price to the OCSL as your pre-defined risk, back-analysis confirms this.
Hard Stop Loss Red line
This line is your circuit breaker intended to protect your capital from sudden adverse moves. This line serves as the price for your fixed or hard stop loss point that should be entered with the order. The formula behind this line is risk * 2 (so 2% if you risk 1% between entry price and OCSL). HSL is your safety net, always use it.
Some other advice on how to trade this methodology:
Analysis Sunday, entries & exits Monday (so you can also have a life)
Do not pyramid with this system, it works best with individual entries spread across a range of markets including FX, Indices, Commodities and Interest Rates.
Risk only 1% per trade
This methodology works best over weekly/monthly charts. You want to capture moves that last weeks/months/years. I would not advise day trading this system.
If you have any feedback or need further help, email me at me@jackgleeson.co.uk
Good Luck!
5X EMA Trend Follower////////////////////////////////////////////////////////////
// Copyright by Randalll.com v1.0 09/03/2016
// This indicator provides 5 Exponential Moving Averages.
// Works well on 1D,4H,1H TF
// To be used with traditional trend following strategies.
// Example
// If 50/100/200 trending in same direction. Then buy/sell
// with trend direction. Use PA, pinbar, news catalyst
// or pullback to 50E for Entry signal.
// Use 2x ATR for SL, set no TP. Ride the trend to the end.
// Exit when 10 crosses 20, or 20 crosses 50
// in volitile markets.
// As always use at your own risk and stay awesome.
// by randalll.com
////////////////////////////////////////////////////////////
study(title="5X EMA Trend Follower", overlay=true)
short1 = ema(close, 10)
short2 = ema(close, 20)
long1 = ema(close, 50)
long2 = ema(close, 100)
long3 = ema(close, 200)
plot(short1, color = green)
plot(short2, color = red)
plot(long1, color = blue)
plot(long2, color = purple)
plot(long3, color = black)
TREND barcolorsThe Donchian values are basically from Ed Sekoytas original statistical run, that gave the values 30 & 120 (aren't as relevant today, but still packs a punch).
The idea of this code is just to take that 30, add a very simple inset of it, with ATR, and color code the bar Green or Red to indicate the direction of the trend. When a new break of the 120 line, (thick line) higher or lower, it typically indicates a bigger bias towards the trend.
It's my first publish, and so a very simple easy to understand system.
Use at your own risk. I cannot be held liable for any damages financial or otherwise, directly or indirectly related to using this script.