MA Ribbon R2 by JustUncleLThis indicator plots and colour codes a ribbon between two moving averages. The colour of the ribbon changes with trend direction: when price in uptrend ribbon colour is green; when price in downtrend ribbon colour is red.
Options Available:
1) You can select between 11 different types of moving averages, each MA line can be a different type.
2) Option to display coloured Candles around the Ribbon, the colouring uses the Grab candles colour scheme:
Lime = Bull candle closed above Ribbon.
Green = Bear candle closed above Ribbon.
Red = Bull candle closed below Ribbon.
DarkRed = Bear candle closed below Ribbon.
Aqua = Bull candle closed inside Ribbon.
Blue = Bear candle closed inside Ribbon.
3) Option to base the candles on a higher time frame (HFT), this performed by increasing the MA length to create equivalent lengths from the HFT. So no re-painting.
NOTE: The script will time out if the MA lengths get too long after resizing.
Trendfollowing
Currency Relative Strengths V.2 [GM]Version 2 Updates
Speed has been increased by ~7X
Highest and lowest pairs now highlighted using brighter colors
Re-ordered pairs from highest to lowest 'flight to risk' rating
I created this tool for the purpose of determining strongest and weakest currencies over different periods of time. Each major currency is compared to the field of other majors and its average change is measured over a predetermined period of time. The result is displayed as a percentage. I use it for trend following but it can also be used to fade exhaustion.
Instructions
Add indicator to chart
Select a time frame under settings
Place cursor over period of interest
Click "Data Window" on right hand side bar
View % change avg values for each currency
Currency Relative Strengths [GM] - Data IndicatorI created this tool for the purpose of determining strongest and weakest currencies over different periods of time. Each major currency is compared to the field of other majors and its average change is measured over a predetermined period of time. The result is displayed as a percentage. I use it for trend following but it can also be used to fade exhaustion.
Instructions
Add indicator to chart
Select a time frame under settings
Place cursor over period of interest
Click "Data Window" on right hand side bar
View % change avg values for each currency
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.