This indicator displays 30 second opening ranges from Globex, Europe, and RTH sessions. From the RTH session range, it also displays infinitely generating Price Targets based on a % of the opening range size. I am retrieving the 30 second data using the new "request.security_lower_tf()" function. The importance of these levels is based on the idea that when the...
What is the "Heiken Ashi Algo Oscillator" It is an indicator that measures volume and momentum. It plots and RSI as Heiken Ashi candles. It includes seven different types of moving averages against the relative strength index. Each one of these moving averages calculates faster than the previous, starting from the SMA to the LSMA. It includes a hidden vwap as...
█ OVERVIEW Double Tap is a pattern recognition script aimed at detecting Double Tops and Double Bottoms. Double Tap can be applied to the broker emulator to observe historical results, run as a trading bot for live trade alerts in real time with entry signals, take profit, and stop orders, or to simply detect patterns. █ CONCEPTS How Is A Pattern...
Software part of algotrading is simpler than you think. TradingView is a great place to do this actually. To present it, I'm publishing each of the default strategies you can find in Pinescript editor's "built-in" list with slight modification - I'm only adding 2 lines of code, which will trigger alerts, ready to be forwarded to your broker via TradingConnector...
Found this the other day and thought it might be useful to have an updated version with alerts: Credit to the original author.
Software part of algotrading is simpler than you think. TradingView is a great place to do this actually. To present it, I'm publishing each of the default strategies you can find in Pinescript editor's "built-in" list with slight modification - I'm only adding 2 lines of code, which will trigger alerts, ready to be forwarded to your broker via TradingConnector...
Software part of algotrading is simpler than you think. TradingView is a great place to do this actually. To present it, I'm publishing each of the default strategies you can find in Pinescript editor's "built-in" list with slight modification - I'm only adding 2 lines of code, which will trigger alerts, ready to be forwarded to your broker via TradingConnector...
Software part of algotrading is simpler than you think. TradingView is a great place to do this actually. To present it, I'm publishing each of the default strategies you can find in Pinescript editor's "built-in" list with slight modification - I'm only adding 2 lines of code, which will trigger alerts, ready to be forwarded to your broker via TradingConnector...
DMI (Directional Movement Index) and HMA (Hull Moving Average) The DMI and HMA make a great combination, The DMI will gauge the market direction, while the HMA will add confirmation to the trend strength. What is the DMI? The DMI is an indicator that was developed by J. Welles Wilder in 1978. The Indicator was designed to identify in which direction the price...
Bjorgum 3Commas Bot A strategy in a box to get you started today With 3rd party API providers growing in popularity, many are turning to automating their strategies on their favorite assets. With so many options and layers of customization possible, TradingView offers a place no better for young or even experienced coders to build a platform from to meet...
Slightly modificated and optimized for Pine Script 4.0, Ichimoku Cloud Strategy which, suddenly, good suitable for the several crypto assets. Details: Enter position when conversion line crosses base line up, and close it when the opposite happens. Additional condition for open / close the trade is lagging span, it should be higher than cloud to open...
This very simple strategy is an implementation of PJ Sutherlands' Jaws Mean reversion algorithm. It simply buys when a small moving average period (e.g. 2) is below a longer moving average period (e.g. 5) by a certain percentage and closes when the small period average crosses over the longer moving average. If you are going to use this, you may wish to apply...
A simple script to filter bull and bear markets by using percentile rank filter. Using market regimes to filter by bull/bear/sideways markets helps to understand how your strategy will behave in various market regimes and allows you to avoid unprofitable regimes and only trade in profitable ones. The idea of market regime filtering is used in the most successful...
Hello, I wrote this script to merge the two scripts I shared before. The aim here is to see the real value of the state of the capital as a result of leveraged transactions and to combine both long and short directions. Scripts : MACD Long 50x Leverage Strategy : MACD Short 50x Leverage Strategy : The parameters have not changed so they are the same...
I will start with a small introduction about myself. I'm now trading cryto currencies manually for almost 2 years. I decided to start after watching a documentary on the TV showing people who made big money during the Bitcoin pump which happened at the end of 2017. The next day, I asked myself "Why should I not give it a try and learn how to trade". This was in...
Combined my Fractal Indicator with my Ichimoku Script so that I can have less indicators on my chart and am able able to run more with only the pro version of Trading View...
//---------------------------INTRO------------------------------ Hi All! Let me introduce myself as a semi-successful forex trader & lover of automation. I've taken to algo trading and have been hunting down strategies (that usually use indicators) to automate, backtest, and hopefully implement in MT4. Unfortunately, most strategies are complete bulls*** and the...
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...