Trailing SL or TP with Alerts (MV)Hey
Trailing SL or TP with Alerts (MV)
if you want trailing Stoploss Alerts
Alert condition
select by default Symbol
Less Than
Select Trailing SL or TP with Alerts (MV)
Second Plot
if you want trailing Takeprofit Alerts
Alert condition
Select by default Symbol
Greater Than
Select Trailing SL or TP with Alerts (MV)
First plot
Takeprofit
MA-MTF-ALERT-SLTS=== This is an updated version of the MA-MTF Alerts===
+ Take profit
+ Stop Loss
+ Traling Stop
Average True Range Take profit (ATR)Average True Range Take Profit
An objective method of determining an initial Take Profit and Stop Loss, based on true market volatility and not arbitrary price levels.
Take Profit Levels and Stop Loss Levels are calculated based on multiples of Average True Range
Features & Functions
Option to switch between long or short
Default Value
Take Profit 1 = 1x ATR.
Take Profit 3 = 2x ATR.
Take Profit 5 = 3x ATR.
Stop Loss 2 = 1.5x ATR.
Basline 13 exponential moving average (EMA) (2)
Extra options ATR
Take Profit 2 = 1,5x ATR.
Take Profit 4 = 2,5x ATR.
Take Profit 6 = 3,5x ATR.
Take Profit 7 = 4x ATR.
Take Profit 8 = 4,5x ATR.
Take Profit 9 = 5x ATR.
Stop Loss 1 = 1x ATR.
Stop Loss 3 = 2x ATR.
Extra options MA
Simple moving average (SMA) (1)
Weighted Moving Average (WMA) (3)
Hull moving average (HMA) (4)
Volume Weighted Moving Average (VWMA) (5)
R moving average (RMA) (6)
Triple exponential moving average (TEMA) (7)
ChopBot *modified* - by cryptotradingresource.com -This is my modified version of the original strategy by @yerb
It has just a little tweak in it, but this already works out that you'll receive less signals. There is for sure more room to perfection but it looks accurate.
Try it out on different timeframes, find the best on for your asset and enjoy trading!
For included:
Buy and Sell plots
Alerts for signals (buy,sell, take profit, ema crossover/crossunder)
Double EMA
more to come.
If you use this tool, let me know if u find some issues, or share your settings with results :)
Some examples:
LINKBTC 1D
BTCUSD 1D
RVNBTC 2D
BNBBTC 1H
THETABTC 6H
Happy trading
+++ use this tool on your own risk. i'm not responsible for your loses +++
____________________________________________________________________________
BTC: 1GVRDK3HHr9CKM5SF2CGpCNXFuavB3L4j9
ETH: 0x7b825fa752b9926D3E8397cDb1d9E5473D074646
XMR: 41zL2SQS7zyZmwXKng2TeUWsMi5vMmkgSdDCjULUTvM6ichwm1E2ZDEYGt56zk9ghoM9bekhjycSwa8amtTcB2JiUet5jtg
NEO: AXja5xPDhczfm2ujHyBfpkQAAnMsXsazmb
ZEC: zcZzFkRx95cp7MtuW8wLhC5zz5RYF9QkT2uPPmhZZHc6ppXepHGgCSeAS1rtD6WFdqsM5p1gZm2gfirnrnviucsdP4aCpqU
XLM: GAXUQJSW55C7MAC4GI26NZUGIKSHFDVFRFKZCXPLMPY4HCADSDT55XK6
WAVES: 3PCMkNpMHxSraTCkwV1ENcBKa9sXbVCGjQX
BCH: qz57n04ud6mn42u00aymqkku8tfh0lk4jv9c28mjvv
____________________________________________________________________________
++++ cryptotradingresource.com ++++
____________________________________________________________________________
Two MM Cross (Signal version)Hi everyone
This is a dummy two MM cross script to be used for the Trade Manager
I'll publish a video explaining how to use the Trade Manager as I received many questions.
This was my fault for not being clear enough. A video will do great wonders here
Dave
Trade Manager (Open Source Version)Hello my young padawans looking for the FORCE to get richer on your next trade
I got pinged at least three times today asking where the hell is the indicator of the day. You asked, I delivered :)
Here's your free open-source Trade Manager Version. My associates might kill me for sharing that one... anyway this is a real GIFT.
I won't share such quality indicators too often for FREE so hope you'll appreciate its value. It can really help with your day to day trading (on top of making your charts looking more awesome)
This is an even better version compared to my previous Trade Manager Trade-Manager . It's basically a standalone version, meaning you'll have to update with 2 lines your own indicator and follow my educational post from yesterday (pasted it below also) to learn how to do it
Please read this educational post I published for you before proceeding further : How-to-connect-your-indicator-with-the-Trade-Manager
From here you normally connected the data source of your own indicator to the Trade Manager. If not, here's a reminder of the article mentionned above
Step 1 - Update your indicator
For the screenshot you see above, I used this indicator : Two-MM-Cross-MACD/ . "But sir are you really advertising your other indicators here ??" ... hmmm.... YES but I gave them for free so ... stop complaining my friend :)
Somewhere in the code you'll have a LONG and a SHORT condition. If not, please go back to study trading for noobs (I'm kidding !!!)
So it should look to something similar
nUP = ma_crossover and macd_crossover
nDN = ma_crossunder and macd_crossunder
What you will need to add at the very end of your script is a Signal plot that will be captured by the Trade Manager. This will give us :
// Signal plot to be used as external
// if crossover, sends 1, otherwise sends -1
Signal = (nUP) ? 1 : (nDN) ? -1 : na
plot(Signal, title="Signal")
The Trade Manager engines expects to receive 1 for a bullishg signal and -1 for bearish .
Step 2 - Add the Trade Manager to your chart and select the right Data Source
I feel the questions coming so I prefer to anticipate :) When you add the Trade Manager to your chart, nothing will be displayed. THIS IS NORMAL because you'll have to select the Data Source to be "Signal"
Remember our Signal variable from the Two MM Cross from before, now we'll capture it and.....drumb rolll...... that's from that moment that your life became even more AWESOME
The Engine will capture the last signal from the MM cross or any indicator actually and will update the Stop Loss, Take Profit levels based on the parameters you set on the Trade Manager
It should work with any indicator as long as you're providing a plot Signal with values 1 and -1 . In any case, you can change the Trade Manager you'll find a better logic for your trading
Now let's cover the different parameters of the tool
It should be straightforward but better to explain everything here
+Label lines : if unchecked, no SL/TPs/... will be displayed
+Show Stop Loss Signal : Will display the stop loss label. You have the choice between three options :
By default, the Stop Loss is set to NONE. You'll have to select a different option to enable the Stop Loss for real
++Percentage : Will set the SL at a percent distance from the price
++Fixed : SL fixed at a static price
++Trailing % : Trailing stop loss based on percentage level
The following is a KEY feature and I got asked for it many times those past two days. I got annoyed of getting the same request so I just did it
++Trailing TP: Will move the Stop Loss if the take profit levels are hit
Example: if TP1 is hit, SL will be moved to breakeven. If TP2 is hit, SL will be moved from TP1 to TP2
+Take Profit 1,2,3 : Visually define the three Take Profit levels. Those are percentage levels .
Meaning if you set TP1 = 2, it will set the TP1 level 2% away from the entry signal
Please note that once a Take profit level is reached, it will magically disappear. This is to be expected
I'll share in the future a way more complete version with invalidation, stop loss/take profits based on indicator, take profit based on supports/resistances, ...
I believe is such a great tool because can be connected to any indicator. I confess that I tried it only with a few... if you find any that's not working with the Trade manager, please let me know and I'll have a look
PS
I want to give a HUUUUUUUGE shoutout to the PineCoders community who helped me finishing it
Wishing you all the best and a pleasant experience with my work
David
Trade ManagerHello everyone
Hoped you had a great weekend and are ready for what's coming this week
I'll never fail to satisfy my audience on TradingView and I'll start by sharing some heavy stuff.... Imagine the most amazing thing you had in your life. You got it ? now multiply this good feeling by 100 !!! OK... now I have a tool that is beyond that litteraly. Don't believe me, here's the Trade Manager ladies and gentlemen, I could barely contain my excitement this weekend to share it with the community
I wasn't sure of sharing it but you guys did a great job with my other indicators giving me constructive feedback to improve them. Also, those helping me with such feedback usually get the indicator for a lifetime access for free.
Please read this educational post I published for you before proceeding further : How-to-set-an-indicator-to-work-with-the-Trade-manager/
From here you normally connected the data source of your own indicator to the Trade Manager. If not, here's a reminder of the article mentionned above
Step 1 - Update your indicator
Somewhere in the code you'll have a LONG and a SHORT condition. If not, please go back to study trading for noobs (I'm kidding !!!)
So it should look to something similar
macrossover = crossover(MA1, MA2)
macrossunder = crossunder(MA1, MA2)
What you will need to add at the very end of your script is a Signal plot that will be captured by the Trade Manager. This will give us :
// Signal plot to be used as external
// if crossover, sends 1, otherwise sends -1
Signal = macrossover ? 1 : macrossunder ? -1 : na
plot(Signal, title="Signal")
The Trade Manager engines expects to receive 1 for a bullishg signal and -1 for bearish .
Step 2 - Add the Trade Manager to your chart and select the right Data Source
I feel the questions coming so I prefer to anticipate :) When you add the Trade Manager to your chart, nothing will be displayed. THIS IS NORMAL because you'll have to select the Data Source to be "Signal"
Remember our Signal variable from the Two MM Cross from before, now we'll capture it and.....drumb rolll...... that's from that moment that your life became even more AWESOME
The Engine will capture the last signal from the MM cross or any indicator actually and will update the Stop Loss, Take Profit levels based on the parameters you set on the Trade Manager
Now I'll cover the different parameters of the tool
It should be straightforward but better to explain everything here
+Label lines : if unchecked, no SL/TPs/... will be displayed
+Show indicators : This does nothing. Tradingview doesn't give the possibility to set Labels on an UI so we have to use this hack with a useless checkbox
+Show PnL Panel : Will show a Panel at the right of your chart with the PnL updated for the last position only. In a future version, I'll make it work to list maybe the previous N positions defined by the user
+Show Stop Loss Signal : Will display the stop loss label. You have the choice between three options :
++Percentage : Will set the SL at a percent distance from the price
++Fixed : SL fixed at a static price
++SuperTrend : Trailing stop loss based on Supertrend
'll add many more options this week for sure
+Take Profit 1,2,3 : Visually define the three Take Profit levels
Please note that once a Take profit level is reached, it will magically disappear. This is to be expected
This indicator is a first draft of what I believe is such a great tool because can be connected to any indicator. I confess that I tried it only with a few... if you find any that's not working with the Trade manager, please let me know and I'll have a look (for free)
I'm so excited to share it with all of you and that's the best possible way I could ever dreamt of to start the week with my TradingView community
Wishing you all the best and a pleasant experience with my work
David
Ultimate Risk Management System 📈With this tool you can run multiple instances for Stop Loss, Take Profit, Trailing Stop or Trailing Take Profit.
Why use it?
> Some trading platforms don't offer special tools like Trailing Stop;
> In case they do, they don't have to know where you put your stops;
> TradingView offers high performance, you can see the tool working in real-time.
Main Features:
- Real-time;
- Long Order;
- Short Order;
- Stop Loss;
- Take Profit;
- Trailing Stop Loss;
- *Trailing Take Profit.
Disclaimer: This system may help you cut out your losses or lock in your profit, but it does not guarantee profit. Always use at your own risk.
Cardistry ♠♥♦♣♠♥As always -No repaint, Signals are real time♦♣
First release version is not tunned, parameters need testing and manual tuning from users
Label meanings and color is self explanatory and pretty straight forward
Signals deviate from Candlestick sequences and Volatility
TP/SL calculator (ATR)This calculates takeprofits and stoploss based on current ATR (average true range) and plots the targets as an overlay
www.oberon.at
Alternatively it can display a trailing stop loss target
www.oberon.at
ATR Targets - JDA simple visual representation of ATR trading targets.
The indicator shows ATR targets (TP and SL) from the last swing points (if you entered there)
There is an option to chose targets for a long or short position.
JD.
#NotTradingAdvice #DYOR
I build these indicators for myself and provide them open source, to use for free to use and improve upon,
as I believe the best way to learn is toghether.
[astropark - Premium] Long-Short Strategy V3-FOREX [Alarms]This indicator is not holy grail , but it is an amazing trend finder and works nicely between 3m and 1W timeframes on FOREX :)))
With this indicator you can enjoy its trading signal and set the alarms you need!
In fact, if you want to set alerts on both buy, sell, take profit and stop-loss signals you must use this not-strategy indicator version!
This indicator is the non-strategy version of this one:
HOW TO USE THIS INDICATOR
Buy/Long when you see a green "B" label on the chart at best price you can, you have time till next candle's open price , trying to buy as low as possible near the green cloud or below it. Green cloud acts like a moving support for price, so use it for more buys/longs. The bigger the cloud, the stronger the bull-trend and so the support.
Sell/Short when you see a red "S" label on the chart at best price you can, you have time till next candle's open price , trying to sell as high as possible near the red cloud or over it. Red cloud acts like a moving resistance for price, so use it for more sells/shorts. The bigger the cloud, the stronger the bear-trend and so the resistance.
This indicator suggests some TP (Take Profit) for both longs (in green color) and shorts (in red color): you can start (at least partially!) closing the current trade (eventually you start new longs/shorts at cloud touch if you are a bold trader!).
Keep in mind that the lower the timeframe you work on, the easier is the trend to change rapidly, so always set a -2% / -5% stop-loss on trades and follow the trend with a nice trailing stop strategy.
Of course, as said at the beginning, this indicator suggests some TPs (Take Profits) for both longs (in green color) and shorts (in red color) operations: when you see a TP, you can start (at least partially!) taking profits over the current trade and move stop-loss higher (at least at break-even).
This is a premium indicator , so send me a private message in order to get access to this script.
Do you like my free scripts? Offer me a coffee, a beer, a pizza or whatever :)
BTC jar: 1K5kuYQPEqoNo6GRmJbHWMPmqwKM5S3oRR
ETH jar: 0x091b541a6dd6fe08c4e7bd909baafb2fce9b975e
LTC jar: LSVoAChsZrVsvbNyUfdpxtFpDAUSaUTUig
XRP jar: (XRP deposit tag) 103997763 (XRP deposit address) rEb8TK3gBgk5auZkwc6sHnwrGVJH8DuaLh
PS: Do you need a customization or do you need a dev who implements your strategy? send me a private message ;-)
Crypto Trading Helper - by @cryptomrdavisI was looking for a strategy on TradingView that can send me signals when i have to buy or sell.
The most strategys/indicators that i found where only paid once, so i decided to create my own.
Now, a few weeks later i can share it with you and this one is completely FREE.
Features:
Buy / sell signals
Take profit - default 5%, 10% & 15%
Fibonacci included
Set alerts (buy/sell, tp1, tp2 & tp3)
more to come
For now i recommend to use it on higher timeframes.
Happy trading!
Regards,
CryptoMrDavis
*** use this tool on your own risk ***
--------------------------------------------------------------------------------------------------------
BTC: 1AxLVKpgYjMtQtcRmeuFbhQNVKWKmJ5EZy
ETH: 0x7b825fa752b9926D3E8397cDb1d9E5473D074646
XLM GAXUQJSW55C7MAC4GI26NZUGIKSHFDVFRFKZCXPLMPY4HCADSDT55XK6
BCH: qz57n04ud6mn42u00aymqkku8tfh0lk4jv9c28mjvv
--------------------------------------------------------------------------------------------------------
market phases - JDThis indicator shows the relation of price against different period ma's.
When put in daily Timeframe it gives the 1400 Day (= 200 Weekly) and the 200 ,100 an 50 Daily.
The lines show the 200,100 and 50 ma in relation to the 1400 ma.
JD.
#NotTradingAdvice #DYOR
𝙇𝙄𝙌𝙐𝙄𝘿 𝙅𝘼𝘿𝙀 🇸🇨🇷🇮🇵🇹𝙇𝙄𝙌𝙐𝙄𝘿 𝙅𝘼𝘿𝙀 🇸🇨🇷🇮🇵🇹 v0.1
-Unique LJS breakout/reversal system
-Multi timeframe trend restricted trading
-Renko, ADX, MAs
-Risk Management, TP, SL
More to come!
Crossover Strategy w/Take Profit + Trailing Stop - StudyThis script is a result of hours of trail, error and research. If something is not functioning as anticipated, please notify me with a description and possible screen shot of the issue.
The strategy is a basic crossover strategy. When MA1 crosses above MA2, it will trigger a long entry. When MA1 crosses below MA2, it will trigger a short entry.
When using the Take Profit function, the trailing stop will automatically activate at the defined TP3 level.
Also, when TP1 is hit a stop loss is set at 0.3% (this can be adjusted in settings) above/below the current entry. When TP2 is achieved, the stop will move up to the TP1 level.
If the trailing stop locks in LESS profit than the TP2 level, the stop will trigger at the TP2 level. This will continue until the trailing stop has moved to a level more advantageous than TP2.
There is a companion Alerts script for use with AutoView.
***AutoView syntax IS NOT provided***
[ALERTS]Super-Trend & SL/TP V3This simple script analyzes the trend in real time...
Alerts, SL, TP, bla, bla, bla...
Hogland DivergenceThis is a good take profit indicator, a divergence on RSI (white line) followed by a reversal of green line into purple indicates the top (or bottom) of a trend.
lamBOTghini-ALERTador & SL/TP V3I publish the code again in case someone is interested in learning. I am not an expert, I learned from others who published their scripts and for this reason I do the same.
If someone tries to sell you a script it is because they do not make money with it in trading and they need to sell it to earn something.
It is a simple combination algorithm of 3 EMA with stop loss and Take profit and with alerts.
Enjoy!
¡Mucho ánimo a los Venezolanos!
¡Saludos desde España!
The Falcon v2 [SETUP]Hello,
as requested here is the setup version of my previous script. Works perfectly for automatic trading using buy and sell simple strategy.
The indicator is built upon RSI , EMAs and some other personnal tricks so predict trends.
I coded a stop loss and take profit system : you have to set up the script parameters before creating the alert.
As usual I am selling access to the script, with a trial for those who want to test first. I am also open to development or reverse engineering commissions.
Take Profit Again Trend Score(Crpto Catcher)_BinanceTPA SCORE_BINANCE ver
또땃 스코어 바이낸스 ver
------------------------------------------------------------------------------
This indicator is designed to find coins that are strong in market conditions.
It is recommended that users have an understanding of basic charts.
Careful investment is needed after the trend of the score itself has been on the downward trend.
Coins usually give the strongest return that run at the top of the score.
The realization of the profit on the chart must be done by the person himself.
When purchasing coins at the top of the score chart, we recommend the number of sheets at the adjustment point on the chart.
Because this index is a trend score, you may not be able to catch the start wave. To do this, use a starting wave catcher.
The coins listed in this index are coins of the highest rank in order of trading volume and will be updated at regular intervals.
At last year's rise of coin, it is based on catching light coin, Qtum, ripple, Ada, Stella, Tron rise.
Indicator vouchers will only be available to a small number of paid subscribers.
Thank you.
---------------------------------------------------------------------------------------------
이 지표는 시장 상황에서 강세를 띠는 코인을 찾아내기 위해 만들어 졌습니다.
기본적인 차트에 대한 이해가 있는 사용자가 사용하길 권합니다.
스코어자체의 추세가 하향을 한 이후는 신중한 투자가 필요합니다.
통상 가장 강한 수익을 주는 코인이 스코어 최상단을 달립니다.
차트상의 수익실현은 본인이 직접 수행해야 합니다.
통상 스타팅 파동을 잡아내는 스타팅 파동 캐쳐와 함께 사용합니다.
스코어차트상 최상단의 코인을 매수 할 시 차트상 조정지점에서 매수를 권합니다.
본 지표는 트렌드 점수 이기 때문에 시작 파동을 잡아내지 못할 수 있습니다.
이를 위해선 스타팅웨이브 캐쳐를 함께 사용합니다.
본 지표에 나와있는 코인들은 거래량순으로 상위등급의 코인들이며 일정 간격으로 업데이트 될 것입니다.
작년 코인상승장에서, 라이트코인,Qtum,리플,에이다,스텔라,트론 상승을 잡아낸 기반지표 입니다.
지표 이용권은 소수의 유료 구독 사용자들에게만 공개될 예정입니다.
감사합니다.
SL/TP assistantThis is a simple script to quickly see changes in % in each candle.
In blue open/close variation. In red Histogram with range between high and low.
This helps me understand very quickly what's the typical change in % for a specific timeframe/pair, so I can fine tune my Stop Losses and Take Profits.
MA ExtensionThis indicator measures the vertical distance form the current close to the MA of your choice. I find that it does not work best as an oscillator, but it works well for providing early signals for taking profits when trend continuating. For example, if you go short due to a retracement to the MA (of your choice) take profits when a bearish trendline is broken (signalling the start of a bullish correction) that corresponds to the highs of the chart. The logic behind this indicator is that the breakouts of trendlines of an assets difference from an MA will precede corresponding breakouts of trendlines drawn on raw price. Kind of like Momentum, except it takes trend into account. Momentum has the same leading feature when it comes to drawing trendlines , but trendlines will be harder to draw due to the Momentum indicators oscillatory behavior.