Hello traders This script is an upgraded version of that one below New features - Upgraded to Pinescript version 5 - Added the exit SL/TP now in real-time - Added text fields for the alerts - easier to send the commands to your trading bots Step 1: Create your connector Adapt your indicator with only 2 lines of code and then connect it to this...
Today I am sharing with the community trend cross strategy template that incorporates any combination of over 20 built in indicators. Some of these indicators are in the Pine library, and some have been custom coded and contributed over time by the beloved Pine Coder community. Identifying a trend cross is a common trend following strategy and a common custom-code...
| 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...
Hello Guys! Nice to meet you all! This is my Second script after changing My Profile Name! I updated my strategy template before - I added some filter conditions (EMA, ADX, DMI). If there's something to update, I will update this script! Thank you! ----- I made this based on the open source strategies by jason5480, kevinmck100, myncrypto. Thank you All! ###...
Hello Guys! Nice to meet you all! This is my fourth script! This is the Strategy Template for traders who wants to make their own strategy. I made this based on the open source strategies by jason5480, kevinmck100, myncrypto. Thank you All! ### StopLoss 1. Can Choose Stop Loss Type: Percent, ATR, Previous Low / High. 2. Can Chosse inputs of each Stop Loss...
This strategy is intended to be used as a base template for building new strategies. It incorporates the following features: Risk management: Configurable X% loss per stop loss Configurable R:R ratio Trade entry: Calculated position size based on risk tolerance Trade exit: Stop Loss currently configurable ATR multiplier but can be replaced...
A few people have been asking me to share my backtesting template. Currently I use this as my starting point for validating existing strategies and developing new ones. Features: Trading Date Range Trade Direction 4 progressive take profits with target percents and percentage of position to take profit on (Thanks adolgo) Variable percentage Stop...
Hello Traders I've build a strategy template building for you the AUTOVIEW commands I made this template based on this documentation: use.autoview.with.pink You can select whether you want to use an SL or not, a TP or not, using the borrow/repay feature (only for Binance), ... and it will build dynamically the Autoview commands and will send them when...
Name: Bias Master System Category: Bias (Template/Master). Operating mode: enters and exits at specific times of the day Trades duration: a few hours, usually intra-day. Timeframe: 1H. Suggested usage: in markets where hourly biases are present. Entry: enters long and short in predefined times, with possibility to manage trend or volatility filters. Exit:...
This script is meant to be used as a generic template for new strategies. Take Profit, Stop Loss logic is provided out of the box with (or without) their trailing variations while the trailing for entry and exit orders can also be enabled and be configured! Custom quantity risk management is provided along with the ability to set custom signal messages that can be...
This script demonstrates how to do trailing sell. With this approach, given an exit signal, instead of selling directly, you just follow the price upwards (for long positions) and you sell when the price decreases by a small percentage. The order will be executed when the next bar is closed. This approach may increase the profits (slightly) in some strategies!...
This script demonstrates how to do trailing buy. With this approach, given an entry signal, instead of buying directly, you just follow the price downwards (for long positions) and you buy when the price increases by a small percentage. The order will be executed when the next bar is closed. This approach may increase the profits (slightly) in some strategies!...
I have created a starting template for strategies. It allows quick control of turning on/off long and short conditions, or disabling them entirely. It includes trade filters for strategy equity and volatility. If there is not enough volatility it will not trade, or if the strategy equity is below the equity ema it will not trade. It has standard stops and...
This is the fastest way to create a Trading View strategy. The template I have created includes stoploss and take profit enabling and plotting, date range, and strategy buy and sell conditions. I believe this will benefit the people in the Trading View community by creating a strategy faster and more efficiently than just repeating pine script code. All that needs...
Trying to include few basic things which is needed for strategy which can be used as template. Few important components Strategy parameters Few important parameters include - initial_capital, default_qty_type, default_qty_value, commission_type, pyramiding and commission_value. All my strategies will have similar settings with initial captial set to 20000 to...
This is a template not actually meant for trading. I picked two random oscillators. This is a template meant to turn into a live trading strategy, however. It's literally just a specialized take profit/stop loss system. It is to ensure your bot doesn't make any bad moves that you wouldn't have manually. The code should be pretty well annotated. Putting this into...
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...
A strategy template with following user inputs: 1. backtest start date 2. tp% and stop loss% 3. trail stop price and trail stop offset The long and short condition is ma crossover and corssunder by default. You can change the logic with your own.