This is the Lord Pepe. Howdy. Basic buy/sell indicator to accumulate along a downtrend and release your stack during the uptrend and oversold levels of the stochastic. The buys should be used to stack, and sells indicate levels of profit taking, they do not signal a long term reversal, only < 25% of stack should be released on "OB" signals. OB - overbought...
Hello All, In one of my projects I needed Parabolic SAR algorithm. I decided to write it in Pine and publish it. Then I added Alerts and Labels. here it is ;) ENJOY!
This is a simple RSI based signal indicator. It is intended for algorithmic trading by bots, currently working one up for bitforex.uk.to and okcoin.uk.to to use this. For the best results leave it on 1-Hour time-frame. It also works best on bitcoin and stocks, not so much oil. GBP/USD and AUD/USD it fairs well too. When RSI touches 70 it gives a...
DESCRIPTION Forex Master v4.0 is a mean-reversion algorithm currently optimized for trading the EUR/USD pair on the 5M chart interval. All indicator inputs use the period's closing price and all trades are executed at the open of the period following the period where the trade signal was generated. There are 3 main components that make up Forex Master v4.0: ...
If you are interested in purchasing my algorithmic trading bot that receives Tradingview indicator alerts via email and then executes them in Bittrex, please visit my product page here: ilikestocks.com Additionally, I would love to create video/blog guides on creating Tradingview scripts or strategies. If you...
This simple RSI-MA long/short algorithm beats the Dow by a FREAKING HUGE margin over the past century (excluding dividends and trading costs). The algorithm uses a fast SMA of the RSI as a buy/cover signal and a slow SMA of the RSI as a sell/short signal. Backtest period = 09/17/1916 - 11/02/2015 Dow = 98 --> 17,830 = +18,094% = 5.38% CAGR Algorithm = net...
This is an PS4 update to the popular Dual Thrust trading algorithm posted by me some time ago (). It has been commonly used in futures, Forex and equity markets. The idea of Dual Thrust is similar to a typical breakout system, however dual thrust uses the historical price to construct update...
This is a simple swing trading algorithm that uses a fast RSI-EMA to trigger buy/cover signals and a slow RSI-EMA to trigger sell/short signals for SPY, an xchange-traded fund for the S&P 500. The idea behind this strategy follows the premise that most profitable momentum trades usually occur during periods when price is trending up or down. Periods of flat price...
This is only a slight modification to the existing "MACD Strategy" strategy plugin! found the default MACD strategy to be lacking, although impressive for its simplicity. I added "year>2014" to the IF buy/sell conditions so it will only backtest from 2015 and beyond ** . I also had a problem with the standard MACD trading late, per se. To that end I modified the...
The Dual Thrust trading algorithm is a famous strategy developed by Michael Chalek. It has been commonly used in futures, forex and equity markets. The idea of Dual Thrust is similar to a typical breakout system, however dual thrust uses the historical price to construct update the look back period - theoretically making it more stable in any given period.
This is version 2 of my Forex Master algorithm originally posted here: BACKTEST CONDITIONS: Initial equity = $100,000 (no leverage) Order size = 100% of equity Pyramiding = disabled TRADING RULES: Long entry = EMA5(RSI20) cross> 50 Profit limit = 50 pips Stop loss = 50 pips Short...
Have tried a few different methods but just constantly get errors in different lines of code......been trying for hours *sigh*. Any help would be so greatly appreciated Long when rsi overbought, close trade when rsi oversold and < Vstop //@version=3 strategy("Vstop and RSI", overlay=true) //RSI Section length = input(2, "RSI Period") overSold = input(30,...
A low cost function to down sample a array. specially useful for pattern recognition algorithms.
Hello there, Introduction I have developed a Microprofit Script for Tradingview and would like to introduce you to it. More Details on the forum First of all some keypoints to it: -It uses Gunbot -Many Microtrades on a bullish market -Even make Profit on Sideway & wavy downtrends -Double up to infinity -Controlled downtrend averaging -Visualizer...
This is just a basic RSI strategy that it easy to use and quite comprehensive so you can quickly test out an idea based on RSI. - I made it comprehensive in that you can select long, short, or both. - There is a simple moving average trend filter. You can filter for trades above, below, or don't include it at all. - The exit is based on a simple moving...
Binary operations and storing several numbers in one variable. It's useful when you need to pass a values numbers to another study. Study-on-study (SOS) in Tradingview allows passing only one value, which is not always convinient. So if we put all those numbers in one - we can pass more values from one study to another. In Pine we can use up to 52 bits for our...