Grid-based intraday algorithm that works 50% in trend following and 50% in swing trading. Orders are executed on a grid of 10 levels. The grid levels are dynamic and calculated on the difference between the previous day's open and close. The algorithm makes only long trades based on the following logic: 1. The daily close of the previous day is analyzed, the...
This strategy was designed and written with the goal of showing and motivating the community how to integrate our 'Probabilities' module with their own script. We have recreated one of the simplest strategies used by many traders. The strategy only trades long and uses the overbought and oversold levels on the RSI indicator. We added stop losses and take...
Converted the hull suite into a strategy script for easy backtesting and added ability to specify a time periods to backtest over.
Hello Traders As most of you know, I'm a member of the PineCoders community and I sometimes take freelance pine coding jobs for TradingView users. Off the top of my head, users often want to: - convert an indicator into a strategy, so as to get the backtesting statistics from TradingView - add alerts to their indicator/strategy - develop a generic strategy...
This script is for research purposes only. I am not a financial advisor. Entry Condition This strategy is based on two take profit targets, two stop loss, and scaling out strategy. The entry rule is very simple. Whenever the EMA crossover WMA, the long trade is taken and vice versa. Take Profit and Stop Loss The first take profit is set at 20 pips above the long...
First of all, the idea of apply RSI to VWAP was inspired by XaviZ; at least, that where I first saw that. I simply applied the idea and searched for apply this on lower timeframe (M15) to increase the number of positions and improve the profit factor. The conditions to enter are the same : long : enter on RSI crossover oversold level short : enter on RSI...
CREDITS to @HPotter for the orginal code. CREDITS to @Yo_adriiiiaan for recently publishing the UT Bot study based on the original code - I just added some simple code to turn it into a strategy. Now, anyone can simply add the strategy to their chart to see the backtesting results! While @Yo_adriiiiaan mentions it works best on a 4-hour timeframe or above, I...
| Initial Release | | EN | An update of my old script, this script is designed so that it can be used as a template for all those traders who want to save time when programming their strategy and backtesting it, having functions already programmed that in normal development would take you more time to program, with this template you can simply add your favorite...
I'm actually one of those who think it's more important to extract clues from indicators than strategy, but I wanted to test the data about the probability and dow factor I've shared for a long time. Usually, Bitcoin is used as an eye stain for strategy success, since the graph has increased significantly from the beginning. To prevent this, I used a commission...
If the short term (Default 7) moving average cuts the medium term (default 25) moving average, BUY. Conversely, it generates the SELL signal. If the long term (Default 99) moving average cuts its short term moving average, Quick SELL. Conversely, it can be interpreted as Fast SELL. You can change the moving average and the number of days as you wish, and you can...
There are some magic numbers out there! Guys, Check this out! if you like it please support me with a like or leave your comments below
It's a simple example of how you can present your strategy's monthly performance in a chart. You maybe know that there is no support of these kind of charts in TradingView so this chart is actually a table object under the hood. Table visual appearance is customizable, you can change: Location Bar Width / High Colors Thanks to @MUQWISHI for hard work,...
============ ENGLISH ============ - Description: This strategy is based on Bollinger Bands / Keltner Channel price "rebounds" (the idea of price bouncing from one band to another). The strategy has several customizable options, which allows you to refine the strategy for your asset and timeframe. You can customize settings for ALL indicators, Bollinger Bands...
Part of this script is used to calculate inferential statistics and metrics not available through the built in variables in the strategy tester. A label will be created on the last bar displaying important strategy results, so you can test and analyze strategies quicker. The built in strategy itself is just an example. You can copy and paste the metrics into...
█ OVERVIEW This Framework allows Pine Coders to quickly code Study() based signal/strategy and validate its viability before proceed to code with more advance/complex customized rules for entry, exit, trailstop, risk management etc.. This is somewhat an upgraded version of my earlier personal template with different strategy used, cleaner code and additional...
Hello Everyone, Hope you guys doing good. This is the strategy and script I'm currently working on. Everything is doing good except close the position on 4% profit on particular coin. For example, if I open position on ETHUSD at the price of 2200 and the chart is BTCUSD , It should close on 2288 price. The current strategy is work fine for some pairs. I mean some...
Today I bring you a new strategy thats made of parabolic sar. It has optmized values for GBPJPY Daily timeframe chart. It also has a time period selection, in order to see how it behave between selected years. The strategy behind it is simple : We have an uptrend , (the psar is below our candles) we go long. We exit when our candle crosses the psar value. The...
This strategy Multi Time Frame Macd Indicator We take the first long position when we have a buy signal in Weekly Macd (Macd line crosses above Signal line). This open a trading window, showed with green background color We close the first position when either Weekly or Daily Macd give us a sell signal ((Macd line crosses below Signal line)) Enable Profit and...