Overview This script trades basic hammer and shooting star candlestick patterns. It's an extremely simple strategy with minimal filters, and according to my personal manual backtesting and automated trading results, performs best on the Daily chart on certain forex pairs. It is intended to be traded on the forex markets but theoretically should work on all...
Accidentally, I’m sharing open-source profitable Forex strategy. Accidentally, because this was aimed to be purely educational material. A few days ago TradingView released a very powerful feature of dynamic values from PineScript now being allowed to be passed in Alerts. And thanks to TradingConnector, they could be instantly executed in MT4 or MT5 platform of...
This is a Forex Scalping Trading Sytem based on the Bollinger Bands. Its suited for major pairs, with lowest possible comission (below 1 pip) and with timeframes ranging between 1-15 min. Indicators: Bollinger bands ADX RSI Rules for entry: Long Entry: price to move below the upper Bollinger Bands RSI raise above the 30 line and ADX<32 at the same...
This is a trend trading strategy scalping bot that can work with any type of market. However I concluded my tests so far with Crypto, Stocks and Forex, and with optimizations always could be found some profitable settings. Indicators SImple Moving Average Exponential Moving Average Keltner Channels MACD Histogram Stochastics Rules for entry long= Close of...
This is a forex scalper designed for very short timeframes 1-5 min max. At the same time due to the short timeframe, is recommend to re optimize it weekly . Its components are Fractals Triple EMA with different lengths Rules for entry: For long : we have an up fractal and all 3 ema are in ascending order For short: we have a down fractal and all 3 ema are in...
"How to code moving stop-loss mechanism", is one of the most often repeating questions in private messages I receive, so just to focus on this mechanism, I made a spin-off from my previous script: TradingView-Alerts-to-MT4-MT5-dynamic-variables-NON-REPAINTING . The logic here moves the stop-loss each time a trade is running and a new pivot high/low is detected....
Hello, this is both a strategy and indicator that revolves around Heikin Ashi candles. In this case we take 3 different time frames, in this example we use daily , weekly and monthly. The conditions for entry are : For long : we check that we have a green daily candle, at the same time we check that the weekly and monthly candles are also green. For short : We...
En route to being absolutely the best and most complete trading platform out there, TradingView has just closed 2 gaps in their PineScript language. It is now possible to create and backtest a strategy for trading with leverage. Backtester now produces Margin Calls - so recognizes mid-trade drawdown and if it is too big for the broker to maintain your trade,...
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: ...
Variety of possibilities offered by PineScript, especially thanks to recent additions, created some confusion. Especially one question repeats quite often - which method to use to trigger alerts? I'm posting this to clarify and give some syntax examples. I'll discuss these 3 methods in chronological order, meaning - in the order they were introduced to...
This is a test of an easy scalping method: buy if actual close is below forecast close and sell if actual close is above forecast close. Take profit and stop loss shall be very small (few pips) as in most of scalping strategies. No filter is used for only long or only short positions, but you can select buy only or sell only based on other indicators or whatever...
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...
FRAMA Strategy I found this strategy on internet, in a well-known forex forum. I have translated the two indicators mentioned in that strategy (originally in mq4) in pine script. Thanks to Fractured and Shizaru for the FRAMA snippets, to mejialucas for Supertrend snippet, to JayRogers for trade management snippet and to Trost for backtesting snippet. I also added...
This is a strategy made from ichimoku cloud , together with MACD, Chaiking Money FLOW and True Strenght Index. It can be adapted to any timeframe and any type of financial markets. The idea behind its very simple, We combine the long / short strategy from ichimoku, like cross between lines and below/above cloud together with histogram from MACD for...
Hi, Welcome to my 4th script. Someone asked me some questions about the Bollinger Band strategy I previously published. When I went back to my published script I couldn't help myself but simply try and make it better. Which I did. Since I've published that script, I've gained much more knowledge about how Pinescript functions. As well as gaining more and more...
Hello, today I bring a swing reversal strategy that work on all financial markets. It uses timeframes starting from 1h, the bigger the better. Its very dangerous because it has no stop loss, neither a take profit. Our exit condition is based on the reversal on the entry . For entry we have 2 types : normal and reversal Lets say we want to go long , for that we...
THis is a very simple yet extremely efficient FOREX strategy . In general it tends to work the best against NZD and AUD pairs, however other major pairs and crosses can work as well. It's made of a time management, together with MACD , moving average , a price action rule and a risk management. THe logic behind is the next one : For LONG: We have 3 ascending...
Howdy Algo-Traders! This example script has been created for educational purposes - to present how to use and automatically execute TradingView Alerts on real markets. I'm posting this script today for a reason. TradingView has just released a new feature of the PineScript language - ALERT() function. Why is it important? It is finally possible to set alerts...