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
5 minute XAUUSD Strategy (Gold)Most definitely this is the best strategy I have ever coded. (Read Note Below)
Version 3 of PineScript code, 2 contract/lot trades at once, pyramiding = 2.
Commission of 100 pips included on each trade, accurate representation of actual spreads, commission_value = 0.02.
This is essentially 270% of profit in a single month - check the date on the first trade.
Trend following strategy as all the previous ones before, but this one is crazy.
Max drawdown is 34%, all that drawdown and more is profit made, but there cannot be any emotional involvement in this strategy.
Choppy markets produce losses, as is with all trend-following strategies.
(4 lines of code, nice and simple)
Downside - the last month in which this was backtested may not provide actual representation of past movement (market could have been exceptionally trending the last month), (but maybe it does ;v)
Unfortunately, we cannot know because "TRADINGVIEW WON'T OFFER BACKTESTING FOR FARTHER BACK!" fix this please.
MAster Gold StrategyVersion 3 for you guys, just add to favorites and you can use.
Only 36 trades since 2017, since that is when the backtesting began.
I made the commission more realistic, now it is about 37 pips per trade.
Only works on gold, (XAUUSD).
Trend Following as you can see.
1 contract size, 1 trade at a time, good proof of how being correct less than a third of the time can still bring you in a lot of profits.
Essentially, the net profit will be close to $8000, or 80%, as a long position on XAUUSD is currently running, and when it is closed, the profit will go up.
Imagine that, 72% profit on your account in 3 months?
(Hint: add the indicator to your favs, pull up the 30 minute gold chart)
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
tradingsignal.io.trend-followTrend follow script to be used across all market instruments and timeframes. It will be available for testing and subscription soon.
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.