CHN BUY SELLCHN BUY SELL is formed from two RSI indicators, those are RSI 14 and RSI 7 . I use RSI 14 to determine the trend and RSI 7 to find entry points.
+ Long (BUY) Signal:
- RSI 14 will give a "BUY" signal, then RSI 7 will give entry point to LONG when the candle turns yellow.
+ Short (SELL) Signal:
- RSI 14 will give a "EXIT" signal, then RSI 7 will give entry point to SHORT when the candle turns purple.
+ About Take Profit and Stop Loss:
- With Gold, I usually set Stop Loss and Take Profit at 50 pips
- With currency pairs, I usually keep my Stop Loss and Take Profit at 30 pips
- With crypto, I usually keep Stop Loss and Take Profit at 1.5%
Recommended to use in time frame M15 and above .
This method can be used to trade Forex, Gold and Crypto.
My idea is formed on the view that when the price is moving strongly, the RSI 14 will tell us what the current trend is through a "BUY" or "EXIT" signal. When RSI 14 reaches the oversold area it will form a "BUY" signal and when it reaches the overbought area it will give an "EXIT" signal. I believe that when the price reaches the oversold or overbought area, the price momentum has also decreased and is about to reverse.
After receiving a signal from RSI 14, my job is to wait for an Entry signal from RSI 7. When RSI 7 reaches the overbought area, a yellow candle will appear and that's when we enter a LONG order. When the RSI 7 reaches the oversold area, a purple candle will appear and that's when we enter a SHORT order.
Cryptotrading
MZ HTF HFT ROCit Bot - Non Repainting Scalper v1.2 ADX RSI MOM This is a new iteration based on my Momentum trading bot.
This is an original script meant to be a high frequency trader that works on higher time frame calculations.
I came up with the idea that using calculus I can figure out the actual rate of change and momentum with different calculations than the momentum indicator that is provided by trading view. Once momentum is shifted on a small time frame, it will provide an entry signal. The script is meant to be used on an algorithmic trading system for scalping purposes. It should be run on a one minute time frame. Unfortunately due to various plotting constraints in Pinescript, you cannot plot the rate of change and momentum and price in the same pane. To counter this, I have a showdata toggle to give you values of the indicators at each entry.
This version has two main entry settings toggled with a checkbox. There is the ROC (rate of change) version and the MOM (momentum) entry signals.
The rate of change version is meant to take a look at your moving average and try to trigger when it hits a certain rate of change point. This can be helpful if you rather play it safer. I have noticed that you can get slightly better entry points but also does not give you as many entries. The momentum algorithm will give you faster entry points and might work best with a slight offset (use your back test to help you figure it out).
I have started to add tooltips to help you along. If you have suggestions please let me know.
How does it work?
Let's just assume that you are looking at a one minute chart. I recommend using the one minute for bots because it will give you the fastest execution for entries. Pinescript has an issue where the signal is not usually sent until the end of the bar/beginning of next bar. If the signal was triggered at the beginning of a 15 minute bar, it might not actually send the signal until the following 15 minute bar. If you are trading on small time frames, this can make all the difference. If you are using an algo platform that trailing stops, stop losse, take profits, etc. I would recommend you use that platform to close your trade. The close trade message will work, but pinescript does not know the exact entry price you received, so if you are trying to collect small profits, it is best that intermediary platform does that calculation for you. If you are dealing with larger moves, instead of small 1-3% scalps, you are probably fine to use the close message setting from pinescript.
Ok, so to take an example. I like to use the 3L and 3S tokens on Kucoin. This gives you a lot of volatility to work with compared to other tokens and coins. However, it can also meas that you are likely taking a higher risk. However, there are some things that can help with that (more on that later).
So we have a token we want to run, and have it on the 1m chart.
First, be sure that all of your filters are OFF when you start playing with the back test. This allows you to see how to best optimize the bot.
Use the show data to show you additional data when you are backtesting. This can allow you to try to filter out results or market conditions that do not work. I typically work with the RSI and use the 30 minute and 15 minute RSIs. I make sure that it is trading within a certain band - about 40-75. You can try the inverse and only buy during really low RSI's as well.
www.dropbox.com
Find the source of your data with the variant drop down. You can use any time frame, open, close. high, low, olc4. Open is pretty much guaranteed to not have any repainting issues - although all the other calcs use a custom isbarconfirmed security repaint calculation. I have been finding that Open and SMA work well, but feel free to explore. If you use a source like open, close, high, low, etc - the interval will not change anything further. If you use a variant such as an sma, you should try to find an interval that works well for that token. For instance, try an sma of 8-11 minutes and see which gives you the best backtest result without changing anything else. Offset ALMA/LSMA parameters are only used for those specific variants. These specific parameters will also affect the ALMA and LSMA if you use that variant in the trend filter. In other words, you can skip these if you are not using those types of moving averages.
www.dropbox.com
Configure the ROC and MOM intervals. If you are using a source such as open, close, etc- this is where you set the interval for your change. So consider using OHLC4 or a interval of 5 thru 15 and see what works best. The Momentum inverval usually works best in the 2-5 bars. There is a custom calculation I added in to try to filter out false entries as momentum is waning. This calculation works best in 2-5 bar interval.
Configure the trigger point and offset. If you are using rate of change, the best settings will likely be between -1 to 0.5. If you are using momentum, you will likely want -20 to 10. This is where you will notice the entries will shift a bit. Try to find a balance between your backtest settings and actually finding what you thin will be the best entries based on a slight delay from trading view, to algo, to your trading platform. This can likely be a minute (maybe even) or so- so be sure to not get too caught up between the backtest results and be sure to finesse the entries to actually fit nicely - maybe a bar earlier than you would likely think. If your entries are coming in too early, you can use the offset to delay your entry by a few bars. This is both science and an art form- don't get too caught up on the back test results as that is based on having all the data tha already transpired, it's not based on how it will actually perform during deployment.
Take profit and stop loss. This should be self explanatory. This script can toggle between static take profit and a trailing profit. For scalping, you will likely want to limit it below 2% to get a good win ratio. Stop loss should be at least 5-6% for these types of 3L/3S tokens to give the strategy some room to move (if the token goes down 2% before it shoots back up, the price will go down 6%). This does not yield the best R/R ratio from a traditional trader perspective, but the statistical probabilities are in your favor for these events will happen. If you have better ideas for how to set this all up, feel free to contribute your ideas in the comments as we can all learn from each other. You can definitely set a much tighter stop loss with a larger take profit to get a lower win rate but in turn might get much better returns. It's all up to you.
FILTERS www.dropbox.com
These filters require you to know a bit about each indicator and how you want to use them. I will only go over the general idea.
Variant Filter - this is especially useful if you want to trade above a moving average. Say for instance you only want to take trades when we are over the 100 Day moving average. Or above a 30 minute, 30 bar EMA, etc. Although originally ported over from my other scripts, this is not a filter that I use often in conjunction with this script.
RSI - perhaps you want to buy when we are below the 30 line on the 30 minute RSI, or we want only want to have the strategy work when we are above the 50 RSI, this can all be configured here. I typically like to try a few different rationales here.
Now with brand NEW ADX filter - this is a brand new idea that seems to work rather well. Based on your ADX settings you can also turn on the "only uptrend" which will try to calculate if you are in an uptrend based on your ADX config. Please keep in mind that uptrend is based relatively on the ADX settings.
- There is a sprinkle of RSI magic in the entry signal to make sure that rsi is not declining in the calculation, so this can affect how many entries you get.
Some other tips:
Forward test.
Set up your algo bot on a one minute interval.
Set up take profit and stop loss on your algo trading platform.
Don't use the exact settings as your backtest, maybe try a slightly more conservative approach from the algo trading platform to make sure you are within range of triggering your events with a slight delay from signal to execution. If you have a 1.6% take profit, perhaps try 1.5% on your platform first.
By using these scripts you agree that you are trading at your own risk. I make no guarantees of returns or results. I just provide tools to help you trade better. However, I hope this ROCit will take you to the moon. And if it does, be sure to give me a shout as well as some tips of your own.
Send me a message with any questions or suggestions.
Bitcoin Indicator CBitcoin Indicator C is the missing part of the whole picture. It must be used together with Bitcoin Indicator B for the best results possible!
Indicator B is to find the entry on the market sharp, while the new Indicator C will help you to find the zone where it's time to look for the entry. The dots do NOT represent the start nor the end of the trend, they only show the cross of the waves. Indicator C was created to see the bigger picture of the market. You will see 3 waves on the indicator. The white wave is the main indication of the trend, however all of them should be considered together. Think about it as a painting so just step back and watch the whole picture. If you see the waves topping and start to form a downtrend it's time to find your entry on Indicator B. Also when you see waves bottoming it's time to look for the entry of the Long trade.
When all of 3 waves moving together parallel from the top to the bottom that's a strong downtrend. Opposite occurs when there is a strong uptrend on the market.
These waves were created to show unique repeating patterns, too. For example: White wave bottoming while others keep painting on the upside of the zero line. Other example if repeating waves getting lower and lower... Learn more about unique patterns on our website!
Crypto addict 7 Accurate Buy & Sell indicators
The below indicators are recommended on the daily chart only.
Yellow Diamond - Possible bottom of the market. This diamond will only flash a few times in a cycle on the BTC chart. This is actually one the BEST buying signal
Green Buy – Buy
Red Sell - Sell / take profits
BIG red cross – Possible top and best signal to sell or take profits
BIG green cross – possible bottom and the best signal to buy
Silver Line – 111 MA
The modified 111 moving average is also a very good indicator. The market will test this support/resistance before the 200 moving average.
Purple line – 200 MA
The modified 200 moving average is a very good indicator. You will get a feel if the markets are in a up or down trend and identifying support and resistance areas. A daily candle close above the line is support and markets can move upwards. A daily close below indicate resistance and markets will move downwards
Red line – Confirmed bullish / bearish cycle!!
Green Line - This MA line indicate the bottom of the cycle - your absolute best entry point for the next cycle. This MA got a 10-year accurate record.
Remember that past history does not guarantee future results.
Short Selling EMA Cross (By Coinrule)BINANCE:AVAXUSDT
This short selling script works best in periods of downtrends and general bearish market conditions, with the ultimate goal to sell as the the price decreases further and buy back before a rebound.
This script can work well on coins you are planning to hodl for long-term and works especially well whilst using an automated bot that can execute your trades for you. It allows you to hedge your investment by allocating a % of your coins to trade with, whilst not risking your entire holding. This mitigates unrealised losses from hodling as it provides additional cash from the profits made. You can then choose to to hodl this cash, or use it to reinvest when the market reaches attractive buying levels.
Entry
The exponential moving average ( EMA ) 20 and EMA 50 have been used for the variables determining the entry to the short. EMAs can operate better than simple moving averages due to the additional weighting placed on the most recent data points, whereas simple moving averages weight all the data the same. This means that price is tracked more closely and the most recent volatile moves can be captured and exploited more efficiently using EMAs.
Our backtesting data revealed that the most profitable timeframe was the 30-minute timeframe, this also enabled a good frequency of trades and high profitability.
A fast (shorter term) exponential moving average , in this strategy the EMA 20, crossing under a slow (longer term) moving average, in this example the EMA 50, signals the price of an asset has started to trend to the downside, as the most recent data signals price is declining compared to earlier data. The entry acts on this principle and executes when the EMA 20 crosses under the EMA 50.
Enter Short: EMA 20 crosses under EMA 50.
Exit
This script utilises a take profit and stop loss for the exit. The take profit is set at -8% and the stop loss is set at +16% from the entry price. This would normally be a poor trade due to the risk:reward equalling 0.5. However, when looking at the backtesting data, the high profitability of the strategy (93.33%) leads to increased confidence and showcases the high probability of success according to historical data.
The take profit (-8%) and the stop loss (+16%) of the strategy are widely placed to ensure the move is captured without being stopped out due to relief rallies. The stop loss also plays a role of mitigating losses and minimising risk of being stuck in a short position once there has been a fundamental trend reversal and the market has become bullish .
Exit Short: -8% price decrease from entry price.
OR
Exit Short: +16% price increase from entry price.
Tip: Research what coins have consistent and large token unlocks / highly inflationary tokenomics, and target these during bear markets to short as they will most likely have substantial selling pressure that outweighs demand - leading to declining prices.
The strategy assumes each order is using 30% of the available coins to make the results more realistic and to simulate you only ran this strategy on 30% of your holdings. A trading fee of 0.1% is also taken into account and is aligned to the base fee applied on Binance.
The backtesting data was recorded from December 1st 2021, just as the market was beginning its downtrend. We therefore recommend analysing the market conditions prior to utilising this strategy as it operates best on weak coins during downtrends and bearish conditions.
The Impossible TraderTHE IMPOSSIBLE TRADER
A simple, but effective High Freq Strategy script based on MACD or RSI trend, with extra customizable Alert Messages for Bots.
WHAT IT DOES
This script (works best at lower TimeFrames) just follow the trend of MACD or RSI on your asset.
Why it should work? Because in an upper trend, there are more chance of green candles than reds. And in dump trend there are more chance of red candles than greens.
While trend is positive, it will try to open Long orders as fast as possible at market price.
While trend is negative, it will try to open Short orders as fast as possible at market price.
HOW TO SETUP YOUR PREFERENCES
Capital : Insert a % of Margin you want to use for your positions (usually 30% is quite good)
Leverage : Choose leverage based on your plans
Trail Tick @ : This value (in Tick) tell the script "when" the "Trail Stop" order must be activated (from the Entry price)
Offset Tick @ : This is the price (in Tick) from the Trail Stop Price activated. Basically it is a Stop Loss that follow the price at a fixed distance.
SL Tick @ : Set a Stop Loss at amount Tick distance from the Entry Price. (Let's call it a Safety Stop Loss for bad decisions...)
TP Tick @ : Set a Take Profit at amount Tick distance from the Entry Price. Sometimes is better to exit in full Gain than keep positions.
Strategy : You can choose a Only Long, Only Short or Long+Short sametime strategy.
with MACD or RSI : You can try the strategy applied on MACD or applied on customizable RSI EMA
EMA : If you choosed RSI EMA, you can set any value for your testing (usually 80-120 works very nice)
Exit order after bars : Some Exchanges / Brokers apply fixed cost, and a strategy too fast could not be productive. This set will let you to delay the Exit Order on already Opened positions.
Keep Stop Loss active : If you are planning a delay for Exit Orders, sometime could be useful to keep activated Stop Loss.
Strategy Preset : Some preset I've found interesting, with good results.
BackTest Days : If there are too many results and script doesn't work, you can choose a closer range to show results.
EXTRA FEATURES
On Screen Display : OSD will show you some realtime stats about your strategy, like Asset Tick, Trading Period Range, Drawdown, Gains and not closed trade.
Alert Message : You can enter custom Long Entry/Exit and Short Entry/Exit message for your Bots (like AutoView, WunderBit, etc...). When alert is triggered, you can send custom message with {{strategy.order.comment}} in the text field
AutoView Alert Message : If you are user of AutoView, you can generate your calls. Those are tested only on Oanda with index like Sp500, US100, Us30.
TIPS ON USE
Some asset on TradingView require an higher initial capital. Go to this Script Settings -> Properties and rise Initial Capital.
Be aware of commissions and spread when evalutating a strategy. Go to this Script Settings -> Properties and set Commission and Slippage
Trail Stop and Ticks could be difficult to understand, but very profitable. Please take your time and study how it works.
Consider Tick like the minimum movement your asset can do. Ticks occurs "intra-bar", so some of your positions could be closed almost instantly.
Consider Trail Stop like a Stop Loss that keep always the same distance from your positions, but never came back . If you are in gain, say of 10 Ticks, and your Trail have 5 Ticks, this means for sure a close at minimum 5 Ticks from Entry Price.
On Screen Display will show you Ticks for your asset. This will help you on strategy settings, because not all asset responds on the same way.
ONLY LONG EXAMPLE
ONLY SHORT EXAMPLE
ScalpiusTrendCrypto trader and trading system developer Scott Phillips recently introduced a crypto trading system that specifies a set of rules for determining whether the crypto is in a trend. While the rules are not overly complex, they are complex enough that manual trend determination is somewhat laborious and prone to error. The ScalpiusTrend script is designed to automate this process. It operates is briefly summarized as follows:
1. It looks for a bar that breaks the Bollinger Band. That starts a pending trend.
2. When we find another bar with a higher high and higher close (uptrend) or lower low and lower close (downtrend), then the trend is confirmed.
3. The trend ends when the price touches the opposite Bollinger Band, or goes 20 bars without making a new low and new close.
The indicator is shown as a histogram plot below the main chart window. By default, the short black pending trend bars are off, but you can enable the Pending Bars checkbox in the indicator Settings menu to turn them on.
Oversold RSI with Tight Stop-Loss Strategy (by Coinrule)KRAKEN:LINKUSD
This is one of the best strategies that can be used to get familiar with technical indicators and start to include them in your rules on Coinrule .
ENTRY
1. This trading system uses the RSI (Relative Strength Index) to anticipate good points to enter positions. RSI is a technical indicator frequently used in trading. It works by measuring the speed and change of price movements to determine whether a coin is oversold (indicating a good entry point) or overbought (indicating a point of exit/entry for a short position). The RSI oscillates between 0 and 100 and is traditionally considered overbought when over 70 and oversold when below 30.
2. To pick the right moment to buy, the strategy enters a trade when the RSI falls below 30 indicating the coin is oversold and primed for a trend reversal.
EXIT
The strategy then exits the position when the price appreciates 7% from the point of entry. The position also maintains a tight stop-loss and closes the position if the price depreciates 1% from the entry price. The idea behind this is to cut your losing trades fast and let your winners ride.
The best time frame for this strategy based on our back testing data is the daily. Shorter time frames can also work well on certain coins, however in our experience, the daily works best. Feel free to experiment with this script and test it on a variety of your coins! With our back testing data a trading fee of 0.1% is taken into account. The fee is aligned to the base fee applied on Binance, which is the largest cryptocurrency exchange by volume. In the example shown, this strategy made a handsome net profit of 52.6% on Chainlink with 66.67% of trades being profitable.
You can execute this strategy on your favorite exchanges with Coinrule .
Moving Averages With Cross AlertsA simple way to add up to 5 moving averages with optional crossover/crossunder alerts.
Available options for Moving Average Type are:
SMA
EMA (default)
HMA
RMA
WMA
VWMA
VWAP
ALMA
By default, 5 moving averages are enabled and set to the following:
MA1 set to 5
MA2 set to 13
MA3 set to 50
MA4 set to 200
MA5 set to 800
Each moving average has the following options:
Enable/Disable
Source (default is close)
Length
Color
Buy Sell Bot StrategyHello Everyone,
In this strategy, I benefited from the values of RSI and wave trend indicators, which are the oldest and most used indicators in the market. I contributed to this bi-valued indicator myself with a bivariate formula. My variables are actually a simple intersection algorithm, the intersection of the wave trend indicator and the RSI indicators when they are oversold or overbought.
As you all know, we can send signals to bot sites via tradingview. You can use bot signals boxes in this strategy. You can analyze past transactions in the Date settings section. In the indicator settings section, you can change the settings of the overbought and oversold zones. Perhaps the most important feature here is the USE SELL SIGNALS section. I would like to emphasize this section in particular that when you mark the use sell signal section, the strategy will be processed in the buy section and will not be processed in the sell section. If you do not click on the USE SELL SIGNALS section, the strategy will be processed in the buy section, but this time it will be exited when the target in the take profit section is reached. THIS WAS IMPORTANT.
There is another important point here. Always in position and USE SELL SIGNALS sections do not work together. Run these two features one by one. It is a strategy that is constantly in operation through the name of the Always in position feature, I do not recommend it. The USE PERCENTAGE DECREASE feature, on the other hand, is the section where we want the share to drop as a percentage to enter the second trade after the first purchase is made in the settings section if you activate the pyramiding feature. You can use the tradingview help page for the pyramiding feature.
I found this strategy suitable to use in the 1-hour time frame in the crypto market and adjusted it that way. Of course, you can use it by changing the settings in stocks and in different time periods. big wins
4 EMA & 2 SMA Gen6Indicador hecho con mucho cariño para la comunidad de CRIPTO BUZZ.
Espero les sirva Mucho y puedan ahorrarse espacios de indicadores. Luis S. G6
[UPRIGHT Trading] Trend Direction Force Index (TDFI)The Trend Direction Force Index, TDFI or TDF Index, is a staple in the Forex community, but is excellent on most asset (i.e. stock) trading.
Developed by Pyotr Wojdyo for metastock trading platform originally, but now on several other.
The idea of the TDFI is that there is enough trend directional force to enter the trade.
How it works:
When the signal is above the high threshold, the trader can go long.
When the signal is below the low threshold, the trader can go short.
It's usually used as confirmation along with another indicator.
Features:
Fully customizable
Built-in color changing
Alerts!
If you like this, you will definitely like what else I've published.
Like, follow, support, etc.
Enjoy.
Cheers,
Mike
(UPRIGHT Trading)
Market Maker Indicator V2 [tecnocrypto]This indicator is based on the idea that prices are generated by the interaction between a Market Maker on one side (sometimes also called the "Composite Man") and Retail Traders on the other side (Retail Traders include simple retail, professional traders, whales, institutions...as a single entity). These two opposite entities "play" the trading game on trading platforms/exchanges (crypto), which are neutral to the game.
Market makers are liquidity providers, and make profits either by charging a spread between buy and sell prices, and (also) by trapping retail traders into specific positions.
Trading is a "zero sum" game in the sense that it generates a transfer of resources between these two specific players, which are indeed the Market Maker and Retail Traders. If Retail Traders are in profit, Market Maker is (temporarily) in loss, and viceversa. Market Maker goal is to squeeze profits out of Retail Traders, by inducing them to take wrong positions.
The Market Maker Method Indicator executes the following:
1) Identifies and plots candles that are generated by the Market Maker's moves (called "Shift Candles"); shift candles are "artificial" price/volumes moves, generated to induce retail traders into specific zones which are, essentially, traps. They are called Shift Candles as they generate abnormal (and mostly unexpected) price movements in either direction. They move the price from one zone to the next to execute the Market Maker strategy. Observe how often sudden (apparent) prices increases are followed by price crashes (stop hunt rise, drop); and observe how often sudden (apparent) price collapses are followed by price uptrends (stop hunt low, rise); sometimes these movements are made in progressive steps (generally, 3).
2) Plots open long/open short alerts based on the assumption that when Market Maker plots upwards shift candles, vivid green color, they are preparing for an upcoming price reversal (down); same, but opposite sign, for downwards shift candles. This is a counterintuitive logic for Retail Traders, that generally open long when price is rising, and open shorts when price is falling - jumping into Market Makers traps.
3) Plots the areas where price is expected to return (upwards or downwards) based on previous shift candles (called "Recovery Zones")
You can use this indicator on any timeframe and for any asset.
The Market Maker indicator V2 provides long / short entry signals based upon the market maker manipulative moves described above.
Long alerts are triggered by manipulative price push-downs by the marker maker, which will be followed by price increases (while price was decreasing, market maker was purchasing from retail). Additional factors are taken into consideration to plot long entry signals, , mainly volume build up and mean reversion, around this basic concept.
Short alerts are triggered by manipulative price push-ups by the marker maker, which will be followed by price drops (while price was increasing, market maker was selling to retail). Additional factors are taken into consideration to plot short entry signals, mainly volume build up and mean reversion, around this basic concept.
The indicator is based on the Traders Reality indicator, but improved with alerts, that can be used with trading bots, and additional possibilities to customize the behavior of the indicator.
A strategy associated with this indicator is also available.
Best results on the 1H timeframe.
Contact me for further info.
Volatility indicator based on ATR Hello,
I'm sharing to you a volatility indicator I've done in the last few weeks based on ATR. There is multiple functionalities on this indicator, the first one is an overlay displaying when an asset is in an "overvolatily zone"
(displayed with red cross) and when we are in an "undervolatily zone" (displayed with green cross). You can change the sensibility of the signals in the parameters if you wish to have more or less greedy signals
(it will only modify the overvolatility signals). By the way those signals are not working for week-ends because volatility works differently on week-ends and it's not a good idea to count week-ends in the calculations, so do not worry if you see no signals on weekends.
Second part of the indicator is something I called "Atr bands" it's an equivalent to the famous Bollinger-Bands but based on ATR. I haven't backtested them yet but they seems really interesting in low ut
(15 mins seems to be the best ut for those) and they seems pretty bad in high ut so they can maybe be useful for low ut scalping.
Last thing, there is a parameter allowing you to display bands on the week-ends so you can easily see where the indicator won't give signals.
I would be really happy if I could have some feedsback if you try the indicator :)
Have a wonderful day
Zlema Strateg Long 5mJust putting this out there.
I created this Strategy based on Everget Zlema.
Opens long trade when Zlema changes color.
It is profitable as it is, but just putting it out to the community to see if someone else has ideas to make it better.
How to make this strategy better?
1. FInd a way to filter ranging bad trades.
2. Trades would be more profitable if entry point had an entry on the candle the zlema changes color.
3. I had to put TP 5 limit, but the optimal would be when the zlema changes color back to red (if ranging trades can we filtered that is).
In any case, just putting it out there, hope it is useful for someone, and I am open to suggestions.
xBrat BIAS DEPTH HeatmapThis Trading Indicator is the "Go - No Go Gauge" for any trading signals strategy. A Sub-Chart that looks up 6 time frames and gives you real time BIAS. Bullish, Neutral or Bearish on each level. Making decisions, acting on trading signals easier! Only identifying those highest probability trades, no matter what signals trading indicator you are using. Ideal for Forex Trading, Futures Trading, Crypto Trading and Stocks Trading
This BIAS Depth Heatmap includes:
6 Levels of BIAS Depth
Scalping Setting
Day Trading Setting
Swing Trading Setting
And by only concentrating on trading the highest probability trades of any trading strategy, we can block out all the other noise and concentrate on a simple set of rules!
This is why our Founder, Paul Bratby, decided to help filter out all the noise and allow traders to see what's going off on higher timeframes "in depth" to help make those important trade entry decisions. This more global view of the BIAS DEPTH is designed to help traders make decisions faster!
LTDP: Long Trade on Drop Price (ETH/USDT, Timeframe 4H)How it works
The script analyses drawdown periods and negative price variation in order to search for ideal entry points for long positions.
"Has 'buy the dip' really produced profitable results so far?" "How do you define a buy the dip entry?" "What are the best setups to take advantage of a strong market drop?"
Many investors ask themselves these questions when they are buying during a strong drop price. Having an analysis tool that allows you to analyse the profitability of buying during a market drop is indispensable for dealing with it like a pro. We have decided to develop a script that gives you the ability to analyse this market condition in depth.
LTDP is a very light script created with Pine V.5 that has about 50 strings of code. We have developed a user interface capable of adjusting the analysis period from a few days to several years. We have chosen the Rate Of Change indicator to implement the function to analyse the period and the price variation. Finally, we have set the condition with which the script simulates a long entry with the intention of exploiting the volatility and the bearish moment. The trade is closed by stop losses and take profits which can be adjusted by the user interface.
What can you do with LTDP ?
1) Understand if a Buy The Dip approach can be profitable .
Using the interface you can adjust the periods and variations and analyse whether there is a possibility to use this strategy on that market. Understand if in the past this approach has produced positive results on the market under analysis.
2) Understand the best setup to approach a "Buy The Dip" strategy.
Once you understand and set up the best period and variation you can research which take profit and stop loss has worked best so far.
In this test
We used LTDP to answer this question on the ETH/USDT pair with 4H timeframe.
Buying after a drop of -17.5% over 28 hours, is it possible to achieve profitable conditions by opening only long positions with a 3% take profit and a 4% stop loss?
In this study case the result was that offered by the backtest. In this market using this simple strategy, positive results have been produced over the last 4 years.
The initial capital set is €10,000 (You can change this from the "Properties" section of the user interface).
Each individual trade uses 100% of the set capital, in this case €10,000.
The default commission per trade is 0.03% (You can change this in the "Properties" section of the user interface).
User Interface
1) General backtest time settings: Set the history period to be analysed
StartDate: backtest start date
StartMonth: backtest start month
StartYear: backtest start year
EndDate: backtest end day
EndMonth: backtest end month
EndYear: backtest end year
2) Buy The Dip analysis settings: Set the drawdown period and the variation to be taken into account
Period_on_analysis: Drawdown bars analysis
Source: Open, Close, High, Low
PercentDrawDown: The percentage of decline to be observed in Period_on_analysis
3) Money Management Settings: Set Take Profit and Stop Loss
TakeProfit: % Profit
StopLoss: % Loss
Please do not hesitate to contact us for any questions or information.
Disclaimer
Be careful, the past is not a guarantee of future performance, so remember to use the script as a pure analysis tool that cannot be intended as the sole reference in making and implementing financial investment strategies. The developer takes no responsibility for any use other than research and analysis and can in no way be held liable for damages resulting from misuse of this code.
Scanner Alert ExamplesThis is a visual representation of the alerts built into the Vib Scanner Table (right side of main panel) and Vib Scanner Labels (bottom most panel) that are based on Mr. A's TrueVibration (other lower panel). Instead of a table or scanner labels, this indicator will print labels direction under/over candles identifying where the scanners will trigger alert, but this script only looks at a single asset. You can use this script to see how various settings play out across an asset's entire history and fine tune your scanner settings to your likings.
All of the alerts are coded the exact same way across all 3 of these:
Qualified pivots longs trigger with a "potential pivot long" occurs with a higher local low compared to the last time SmoothVib was under 30. Qualified shorts require the potential pivot short occur at a lower local high than the last time SmoothVib was over 70. As with the table, there is the option to choose to either require a Full Reset (SmoothVib goes all the way to the other extreme first) or just a partial reset (SmoothVib only comes out of OB/OS territory and back into it).
Overbought/Oversold FSR Divergences look for regular and hidden divergences in the FSR while it is in overbought or oversold territory.
Charge V1 Bull Alert is triggered when Full Vib is over the Full Vib Bull Threshold and FSR crosses over the Full Vib. Bear alert is Full Vib below Full Vib Bull Threshold and FSR crosses below Full Vib.
Charge V2 uses a "most recent DBI" filter and will trigger an alert any time the FSR crosses the Full Vibration and is in agreement with the most recent DBI .
Pivots V1 Bull Alert is triggered when Full Vib is over the Full Vib Bull Threshold and FSR pivots above the Full Vib. Bear Pivots are the opposite of this.
Pivots V2 look for similar FSR pivots , but with a Leading/Lagging Full Vib comparison. Bull Alerts require Leading Full to be above Lagging Full and the FSR to pivot on top of both. Bear pivots are the exact opposite.
Bull and Bear Stampede's look for FSR crossing over 120 or under -20, respectively, and indicate EXTREME momentum.
Please note: these alerts are my extensions of the TrueVibration indicator and concepts by TrueCrypto28, aka Mr. A. HUGE thank you to him for all his incredible work!
While these scanners can be used as standalone to some extent, an understanding of TrueVibration will take them to another level.
Vib Scanner LabelsVib Scanner Labels (bottom most panel) is an alternate option for the Vib Scanner Table (seen on right side of main chart area). Instead of a table that only sends alerts on bar close, this will print labels identifying any asset that is meeting the chosen alert criteria IN REAL TIME, though the alerts will still only trigger on bar close. It can be useful if you want to get an early eye on assets that may trigger an alert in the very near future.
Please note: these alerts are my extensions of the TrueVibration indicator and concepts by TrueCrypto28 Mr. A (TrueCrypto28). HUGE thank you to him for all his incredible work!
I've inset a pared down version of it in the main chart image here for some clarity. The TrueVibration indicator is still driving the candle colors in this chart image.
While these scanners can be used as standalone to some extent, an understanding of TrueVibration will take them to another level.
Two other indicators go hand in hand with this:
The "Vib Scanner Table" (again, seen on the right side of the main panel) will display all scanned assets in a table with momentum readings colored for various reasons explained in that indicator detail. All of the alerts are identical.
"Scanner Alert Examples" (labels displayed directly under/over candles) will display labels directly on the chart you're looking at, see the results across an asset's entire history, and can tweak the scanner settings to your liking.
All of the alerts are coded the exact same way across all 3 of these:
Qualified pivots longs trigger with a "potential pivot long" occurs with a higher local low compared to the last time SmoothVib was under 30. Qualified shorts require the potential pivot short occur at a lower local high than the last time SmoothVib was over 70. As with the table, there is the option to choose to either require a Full Reset (SmoothVib goes all the way to the other extreme first) or just a partial reset (SmoothVib only comes out of OB/OS territory and back into it).
Overbought/Oversold FSR Divergences look for regular and hidden divergences in the FSR while it is in overbought or oversold territory.
Charge V1 Bull Alert is triggered when Full Vib is over the Full Vib Bull Threshold and FSR crosses over the Full Vib. Bear alert is Full Vib below Full Vib Bull Threshold and FSR crosses below Full Vib.
Charge V2 uses a "most recent DBI" filter and will trigger an alert any time the FSR crosses the Full Vibration and is in agreement with the most recent DBI .
Pivots V1 Bull Alert is triggered when Full Vib is over the Full Vib Bull Threshold and FSR pivots above the Full Vib. Bear Pivots are the opposite of this.
Pivots V2 look for similar FSR pivots , but with a Leading/Lagging Full Vib comparison. Bull Alerts require Leading Full to be above Lagging Full and the FSR to pivot on top of both. Bear pivots are the exact opposite.
Bull and Bear Stampede's look for FSR crossing over 120 or under -20, respectively, and indicate EXTREME momentum.
CRC.i Bollinger Bands ®This script is yet another variant of the famous Bollinger Bands® TA tool used to track price volatility as it deviates from the mean of a security using standard deviations (positive &negative). Built for my own personal preferences. But perhaps you might like it, too.
Includes
+ Chart Lines: price, upper and lower bands
+ User Options: SMA length, stdev value
+ Heads up Display (HUD) with TARGET's and other related stats
Bugs? Comments? Requests? Ping me @calmrat
Predator [Crypto Trading FR]The Predator indicator is an oscillation indicator based on a complex mathematical equation that draws two lines, a fast and a slow one. Having two oscillating lines allows for crossovers between fast and slow lines, which can be used as confirmation of a slight trend bias.
Another advantage of the Predator indicator is the 50% Line. This could be added as another filter for trading rules. Having the lines above the 50% Predator line indicates that the price is on an uptrend while the lines below the 50% line indicates that the price is on a downtrend.
In this way, the algorithm can serve as a trend filter. For example, long trades can only be taken when values are above 50, while short trades require values below 50.
When the Predator line (orange) crosses above the slow trailing line, it indicates short-term momentum is to the upside, and long trades may be taken. Conversely, when the smoothed RSI crosses below the slow trailing line, short-term momentum is to the downside, and shorts may be more appropriate.
The indicator rarely generates false alarms and has virtually no lag, which makes it invulnerable both during periods of increased volatility and during flats with wide amplitude. Larger timeframes deserve special attention, as you can catch a very strong movement.
Summarizing, we should note that the Predator indicator does not raise any problems, it can be useful for both the beginners who just set foot on the way to learn trading and experienced traders as an additional method or as a signal module.
Relative Strength Index + Candle coloringRelative Strength Index (RSI)
>The Relative Strength Index (RSI), developed by J. Welles Wilder, is a momentum oscillator that measures the speed and change of price movements. The RSI oscillates between zero and 100.
>Traditionally the RSI is considered overbought when above 70 and oversold when below 30. But blindly selling at 70 and buying at 30 is a bad idea because price can make very low movement while oscillator makes large moves and vice versa.
>In RSI Signals can be generated by looking for divergences and failure swings. RSI can also be used to identify the general trend.
>Calculation
The RSI is a fairly simple formula, The basic formula is:
RSI = 100 –
>In this script I have used the standard 14 period RSI and added candle coloring feature, I used two other periods other than 14 to determine the major trend and use the position of 14 period RSI relative to other 2 periods to color the candle.
>color reference, what they represent :
>also look out for divergences, its not included in this script will provide in next updates, divergence are HH on price but LH on RSI, LL on price but LH on RSI, easy to identify. the best divergences are often easy to find they occur within next 5-10 candles, do not overcomplicate when it doesn't exist.
How to use this candle coloring:
>best during major trends.
>not best for mean reversion plays.
>use it as an addition to your system.
EMA based Candle ColoringEMA or Exponential Moving Average (EMA) is a technical indicator used in trading practices that shows how the price of an asset or security changes over a certain period of time. The EMA is different from a simple moving average in that it places more weight on recent data points (i.e., recent prices)
In this script plain EMA or MA is not used for candle coloring, but it takes multiple EMAs of the original EMA and then subtracts lag from the result to get data points of each candle of two certain periods defined. As it differs from traditional EMAs and MAs by reacting quicker to price changes and is able to subtract lag with its calculated formula.
The candle coloring is able to interpret short-term price direction and overall trend and its suitable for active traders. As it tracks price more closely than SMAs
Since EMAs can also provide support or resistance for price and is highly reliant on the asset’s lookback period we can make sure we stay with the trend rather than going against the trend.
*First of all here's what the colors represent and how to interpret them is shown in below image
Examples of how I use the Coloring pattern
Spotting a fakeout/stophunt
during trends:
* No strategy is 100% accurate this script is one of those too , traders must use this as an addition to their system rather than making it a standalone system.
* Context is important as the coloring is done using calculations, different timeframes has different context hence traders discretion is key.
Hope you find this helpful,
Thankyou.
happy trading.