TradingView
exit490
4. Aug. 2019 23:11

TRAILING STOP LOSS TO LONG AND SHORT 

Bitcoin / TetherUSBinance

Beschreibung

##THIS SCRIPT IS ON GITHUB

This TradingView strategy it is designed to integrate with other strategies with indicators.
It performs a trailing stop loss from entry and exit conditions.
In this strategy you can add conditions for long and short positions.
The strategy will ride up your stop loss when price moviment 1%.
The strategy will close your operation when the market price crossed the stop loss.
Also is possible to select the period that strategy will execute the backtest.
The strategy has the following parameters:

+ **INITIAL STOP LOSS** - Where can isert the value to first stop.
+ **POSITION TYPE** - Where can to select trade position.
+ **BACKTEST PERIOD** - To select range.

## DISCLAIMER

1. I am not licensed financial advisors or broker dealers. I do not tell you when or what to buy or sell. I developed this software which enables you execute manual or automated trades multiple trades using TradingView. The software allows you to set the criteria you want for entering and exiting trades.
2. Do not trade with money you cannot afford to lose.
3. I do not guarantee consistent profits or that anyone can make money with no effort. And I am not selling the holy grail.
4. Every system can have winning and losing streaks.
5. Money management plays a large role in the results of your trading. For example: lot size, account size, broker leverage, and broker margin call rules all have an effect on results. Also, your Take Profit and Stop Loss settings for individual pair trades and for overall account equity have a major impact on results. If you are new to trading and do not understand these items, then I recommend you seek education materials to further your knowledge.

**YOU NEED TO FIND AND USE THE TRADING SYSTEM THAT WORKS BEST FOR YOU AND YOUR TRADING TOLERANCE.**

**I HAVE PROVIDED NOTHING MORE THAN A TOOL WITH OPTIONS FOR YOU TO TRADE WITH THIS PROGRAM ON TRADINGVIEW.**

## NOTE

I accept suggestions to improve the script.

If you encounter any problems I will be happy to share with me.

+ Authors: @exit490
+ Revision: v1.0.0
+ Date: 03-Aug-2019
+ Pinescript version: 4

## LICENSE

Copyright 2019 Mauricio Pimenta / exit490

Trailing Stop Loss script may be freely distributed under the MIT license.
Kommentare
DannyBaker
Really sorry being a little dumb... can you give an example of how to add a long and short condition to your script...
revertingtower
@DannyBaker, not sure if you've solved this?

You'll need to convert this into a Study.

I've added additional conditions to the existing SHORT / LONG logic ; I've done this to match another indicator that I've developed. I have a plot from my indicator that I use to detect crossover / crossunder with the plots provided in this script. I changed the last two lines here to plot() as that worked better for my use.

For me my alerts are driven by:

alertcondition((crossedStopLoss or hasCloseLongConditional), title='Trend Down', message='XXX')
alertcondition(hasEntryLongConditional(), title='Trend Up', message='XXX)

I've been using this for the past couple of days and it's been working well.
ZuzarLakdawala
@revertingtower, Either it only triggers Long or Short based on the setting. What if we want to go both way.
alsatTR
@ZuzarLakdawala,
That commands can work
strat_dir_input = input(title="Strategy Direction", defval="all", options=["long", "short", "all"])
strat_dir_value = strat_dir_input == "long" ? strategy.direction.long : strat_dir_input == "short" ? strategy.direction.short : strategy.direction.all
akafnf
@alsatTR, could u pls advise where should I post this command? I’m not so good at editing scripts((( tnx
akafnf
@alsatTR, like if you can tell me row number or something even ? Appreciate
alsatTR
@akafnf,
Paste this To the row below
Strategy
akafnf
@alsatTR, like below row 73 correct ?
alsatTR
@akafnf,
Yes
73 in this script.
akafnf
@alsatTR, thanks a lot ))) and alerts I can put any row at the end? Sorry to bother you but guys are much better than girls in all this stuff ;))
Mehr