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
Takeprofit
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
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.
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
MADMEX XBTUSDBitmex BITMEX:XBTUSD Trading System with multiple ATR/Volatility-based Take-Profit Exits
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
Cyatophilum Bands Pro Trader V4 [BACKTEST]This version includes a new feature, engineered to increase profitability.
About the backtest below:
Short + Long Strategy
0.05% Commission
10% of 10 000% equity per trade. Net Profit can be increased with a bigger % of equity.
Strategy data from 01/11/2019 to 30/04/2019
The Cyatophilum Bands, Trailing Stop Loss and Take Profit System are explained in the last version:
The access to this indicator and its Alert Setup version are included in the Cyatophilum Indicators pack available on my website blockchainfiesta.com
To get a free trial, leave a comment, thank you.
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 ;-)
[astropark - Premium] Long-Short V3-FOREX [Strategy]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 backtest the strategy.
In order to check how much you could have been profitable with this script if you started trading from a specific timestamp, please use this nice website to get the integer number representing in seconds the date-time you want to start from: www.unixtimestamp.com
If you want to set alerts on both buy, sell, take profit and stop-loss signals you must use the following not-strategy indicator version:
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 ;-)
[astropark - Premium] Long-Short Strategy V3This indicator is not holy grail , but it is an amazing trend finder and works nicely between 3m and 1W timeframes :)))
With this indicator you can enjoy its trading signal and backtest the strategy.
In order to check how much you could have been profitable with this script if you started trading from a specific timestamp, please use this nice website to get the integer number representing in seconds the date-time you want to start from: www.unixtimestamp.com
If you want to set alerts on both buy, sell, take profit and stop-loss signals you must use this not-strategy indicator version
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!
Babypips: Inside Bar Momentum StrategyThe strategy contained in this post comes courtesy of babypips (.com), an excellent resource for all thing forex related. If you are new to trading, the site is definitely worth checking out!
Code commentary and an introduction to Inside Bars are available for this post on the Backtest-Rookies (.com) website.
Note: If you are interested in custom development services, please check out our services page on the Backtest-Rookies site.
Strategy Overview
Inside Bar Momentum Strategy.
Inside Bar Detection
Position sizing based on stoploss distance ( Note: Based on equity and assumes that the account currency is the counter currency.
Stop buys for entries
Takeprofit / Stoplosses for exits
Control Stopbuy, Takeprofit and Stoploss targets with inputs
Control Backtest start/end dates
Linda Raschke's Holy GrailAnother script based on Linda Raschke's strategy with the same name from her book about swing trading.
Stupid strategyStrategy with simple stop-loss and take-profit in percentage. If last trade was a successful one then repeat it. If not successful - do a reversal trade.