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...
Converted the hull suite into a strategy script for easy backtesting and added ability to specify a time periods to backtest over.
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...
Library "eStrategy" Library contains methods which can help build custom strategy for continuous investment plans and also compare it with systematic buy and hold. sip(startYear, initialDeposit, depositFrequency, recurringDeposit, buyPrice) Depicts systematic buy and hold over period of time Parameters: startYear : Year on which SIP is started ...
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...
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...
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...
█ 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...
So i had this idea while ago when @alexgrover published a script and dropped a nugget in between which replicates the result of strategy tester on chart as an indicator. So it seemed fair to use one of his strategy to display the results. This strategy tester can now be used in replay mode like an indicator and you can see what happen at a particular section...
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
SUMMARY: A strategy wrapper that makes a detailed and visual comparison between a given strategy and the buy & hold returns of the traded security. DESCRIPTION: TradingView has a "Buy & Hold Return" metric in the strategy tester that is often enough to assess how our strategy compares to a simple buy hold. However, one may want more information on how and when...
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...
A moving averages SandBox strategy where you can experiment using two different moving averages (like KAMA, ALMA, HMA, JMA, VAMA and more) on different time frames to generate BUY and SELL signals, when they cross. Great sandbox for experimenting with different moving averages and different time frames. == How to use == We select two types of moving averages on...
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...
This strategy is based on a lagged 24 periods Donchian Channel and a 200 periods EMA . The enter positions are calculated this way : Bull entry 1. we wait for the close of a candle below the channel and it must be below the 200 EMA 2. the following candle must be a green one and close in the lagged channel 3. we put a long order at the close of the...
This indicator is based on Commodity Channel Index. It buys when CCI on period 200 is under -130 and it´s rising last 12 bars. It closes the position by hitting Take Profit, Stop Loss or opening short position. It sells when CCI on period 200 is over 130 and it´s falling last 12 bars. It closes the position by hitting Take Profit, Stop Loss or opening short...
Hi Traders, This is backtest framework for position management of indicators based on systems that are used for position management of gambling systems. All examples describes situation that position unit is 100$ of given asset. For tracking there are used pinescript arrays. In all strategies I have built some max extremes for given strategy(not originaly part of...