This simple indicator will plot the take profit and stop loss values based on the ATR indicator. It's possible to set how many times the ATR value will be applied to the closing price and what trade type is used, Long or Short.
Hi Traders, This is an on chart indicator that can be used for setting take profit and stop losses very easily using the Average True Range Indicator (ATR). Using a volatility adjusted TP and SL will allow you to set your targets and losses based on market conditions. In the settings, you are able to adjust how much of a multiplier you require depending on your...
// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org // © 03.freeman //This is indicator from LazyBear is very accurate for stocks and indexes. //I added some code snippets for spot and draw divergences automatically // // @author LazyBear // // Best use with daily time frame. Enter when a divergence is found (Bull or...
//@version=2 strategy("ProfitStrategy01", overlay=true) // Simple Profit making strategy by joinfree Phigh = (open>close?open:close) Plow = (open>close?close:open) longC = (strategy.position_size Phigh ) and (Plow > Plow ) and (close > open ) strategy.entry("buy", strategy.long, 100000, when=longC) strategy.exit("buy", "buy", 100000, profit=200,...
Fibonacci Opening Range it is 50% and 0.61% of 5 min or 30min or 1 hour opening candle search buying opportunities below 0.61 and selling opportunities above 0.50 Also acts as good support and resistance in intraday BEST RESULTS IN INDEXES Thanks & Best Regards Marella Ganesh
Strategy based on MACD and Bollinger Bands, where BBs are calculatend from macd signal. Strategy doesn't open at breakout of bands but it waits for a pullback. Upper and lower bands are used as resistance and support. There are various parameters that can be optimized. I have also a study with alerts. Please use comment section for any feedback or cointact me...
This study is based on LazyBear Squeeze Momentum Indicator and my strategy developed using it. I added some custom feature and filters. Main improvements are: 1- study is updated to version 4 of pine script; 2- I added alerts for entry rules and exit rules. 3- Alert syntax can be customized for webhooks: I added one example only for long entry. You can...
This script is for a triple moving average strategy where the user can select from different types of moving averages, price sources, lookback periods and resolutions. Features: - 3 Moving Averages with variable MA types, periods, price sources, resolutions and the ability to disable each individually. - Crossovers are plotted on the chart with detailed...
This is my first script, completely made from scratch. Bear with me. Script that allows one to set an alert for Multiple Price Levels, on Multiple Tickers, complete with Dynamic Messages showing you which ticker, at which price, at which alert (Stop loss, Target 1 etc.), set to Once Per Bar. Select Ticker, type in price levels that you have for targets & stop...
You must be using the renko chart with traditional settings with the block size set at .0001. This can be done by going to settings. Style at the bottom should be changed from ATR to traditional. The set the block size as .0001.
Modified coppock curve along with 14EMA can be used by non-aggressive traders as per detailed rules explained in video on "Trading made easy with secret coppock curve"
Hi, Artharjan Profit and Loss Calculator allows users to calculate Profit and Loss of their trades and see it on the chart itself Users are supposed to select either Long or Short, Enter quantity and enter traded price. The live P&L will be plotted on the chart. Happy trading :-) Rahul
Hey everyone this is an exciting new script I have prepared for you. I was reading an old forex bulletin article some time ago when I came across this: solar.murty.net (or you can download the full bulletin with lots of other good articles here: www.forexfactory.com). You can already buy this for metatrader (www.mql5.com) so I figured to make it for free for...
This Volume Effectiveness indicator is designed to allow users to try and identify how effective volume is on each candle, and smoothing those values over time to try to find trends. Volume Effectiveness is the % change in price for each single unit of volume on the associated candle. The value can be positive or negative, but there is an option to just monitor...