Screener - Mean Reversion Channel█ OVERVIEW
This is Screener script for Mean Reversion Channel Indicator
█ Description & How To Use
The screener works by scanning through up to 40 symbols and list down symbols that are currently within Overbought/Oversold Zone as defined by Mean Reversion Channel indicator.
The Overbought/Oversold Zone are further categorized and sorted by:
Strong : Indicated by "(Strong)" next to the symbol name
Normal : Indicated by the absence of "(Strong)" or "(Weak)" next to the symbol name
Weak : Indicated by "(Weak)" next to the symbol name
Notes: Refer to chart above to see how the Zone are categorized.
Notes: If the screener displays "Nothing Interesting". It simply means none of the screened assets are within the Overbought/Oversold Zone.
█ Features
- Scan up to 40 symbols at a time (By default, no asset is define. Once configured all the symbols you required, remember to save as default to save you from pain of configuring it again in the future)
- Options to scan by zones
- Custom Timeframe
█ Limitation
Due to multiple use of security() function required to call other symbols, expect the screener to be slow at certain times
█ Disclaimer
Past performance is not an indicator of future results.
My opinions and research are my own and do not constitute financial advice in any way whatsoever.
Nothing published by me constitutes an investment recommendation, nor should any data or Content published by me be relied upon for any investment/trading activities.
I strongly recommends that you perform your own independent research and/or speak with a qualified investment professional before making any financial decisions.
Any ideas to further improve this indicator are welcome :)
Credit: QuantNomad for his script idea on custom screener
Cripto
PpSignal Haiken Ashihere is the development of ppsignal Heiken Ashi with a formula of ours.
It also has a Smooth move average.
When HA this green is buying, when red is selling... simple entry system for scalping.
Enjoy it
[fareid] Quick Backtest Framework█ OVERVIEW
This Framework allows Pine Coders to quickly code Study() based signal/strategy and validate its viability before proceed to code with more advance/complex customized rules for entry, exit, trailstop, risk management etc..
This is somewhat an upgraded version of my earlier personal template with different strategy used, cleaner code
and additional features.
█ USE CASES
- You have an idea for trade signal and need a quick way to verify its potential before writing lengthy/complicated code
- You found a study script for trading signal in public library and want to validate it profitability with minimum effort before including it in your trading playbook
█ FEATURES
- Alert: Ready to use alert function based on signals from your custom indicator.
- Visual Backtest: Auto-plot entry, stop-loss and take profit for simple strategy performance analysis
- Backtest Statistic: Provide basic key metrics based on backtest strategy
- BTE External Signal Protocol: Ready to use code that will supply required state to PineCoders Backtesting & Trading Engine if you wish to have more advance and sophisticated backtesting engine
Notes: All of the above features have On/Off toggle
█ Description & How To Use
This Framework consist of 5 Modules but you only need to edit the first 2 Modules:
Module1: Indicator
Module2: Framework Input Protocol
Module3: Alert
Module4: Backtest
Module5: Backtest & Trading Engine
Tips: The source-code includes collapsible block by module for easy navigating
Module1: Indicator:
-----------------------------------------------------------------------------------
Main Module. Place custom indicator input parameter/calculation/indicator plotting here
Sample Strategy: Double MACD Crossover
MACD Signal: 1st MACD Cross above signal line indicate Buy Signal
1st MACD Cross below signal line indicate Sell Signal
MACD Filter: 2nd MACD is above 0 line indicate Uptrend
2nd MACD is below 0 line indicate Downtrend
Module2: Framework Input Protocol:
-----------------------------------------------------------------------------------
Use this module to connect main indicator/signal calculated in Module1 to the rest of the framework's module
4 variables needed to be defined here:
1. Uptrend
2. Dntrend
3. BuySignal
4. SellSignal
i'm not sure how to place a code snippet here to show you example so in the source code i already put a comment in Module2 on which part u need to edit. I hope its pretty simple to use.
Module3: Alert Module Description:
-----------------------------------------------------------------------------------
As long as the variables in Module2 properly defined, the alert module is ready to use without any further modification.
Input:
Enable Alert --> Enable TV's alert and plot signal to chart
Alert Type --> Set to take Buy only, Sell only or Both alert
Module4: Backtest Module Description:
-----------------------------------------------------------------------------------
As long as the variables in Module2 properly defined, the backtest module is ready to use without any further modification.
Input:
Backtest Stat --> Enable Backtest Statistic Label
Backtest Visual --> Enable Backtest visual simulation
Backtest Type --> Set to take Buy only or Sell only or both
SL Type -->
ATR : Set SL in ATR times Multiplier below entry price
Fixed : Set SL in fixed point below entry point (in 'Dollar'). e.g. for Stocks -> 0.5 equals to 50cent while for EURUSD currency -> 0.005 equal to 50 pips
HiLo Bar: Set SL at highest/lowest wick of previous bar plus/minus Fixed point. e.g. EURUSD HiLo=3 and Fixed Point = 0.0005, buy trade will place SL 5 Pips below lowest of previous 3 bar
SL ATR Multi --> Set Lookback Period used for SL's ATR calculation
SL ATR Multi --> Set ATR Multiplier for SL
SL Fixed --> Set Fixed Level for SL
SL Bar --> Set Number of previous bar to check for SL placement
TP RR Ratio --> Set TP based on RR multiplier. e.g. 2 means TP level will be twice further from entry point compared to Entry-SL distance.
Notes: The point is for preliminary testing, so it only supports 1 trade at a time and no Trailing Stop
Module5: Backtest & Trading Engine Description:
-----------------------------------------------------------------------------------
As long as the variables in Module2 properly defined, the Pinecoders BTE module is ready to use without any further modification.
Input:
External Signal Protocol --> Set ESP State to send to "Backtesting & Trading Engine "
Signal With Filter --> Use this to send entry signal that already filtered by this study indicator (without stoploss level)
Signal Without Filter --> Use this to send raw entry signal that are NOT YET FILTERED by this study indicator (without stoploss level)
Signal and Stop With Filter --> Use this to send entry signal WITH StopLoss that already filtered by this study indicator (with stoploss level)
Signal and Stop Without Filter --> Use this to send raw entry signal WITH StopLoss that are NOT YET FILTERED by this study indicator (with stoploss level)
Notes: Backtesting & Trading Engine already have built-in Filter, Entries and Stop Level. e.g. Unselect all their filter state if only want to use custom filter and make sure send Signal with Filter (with or without SL level)
█ DISCLAIMER:
This framework main objective is to create my personal indicator template so that i just have to modify the indicator module for preliminary testing in future.
The sample strategy included are for educational purpose only. Use at your own risk
credit: LucF/PineCoders for a lot of his scripts that i use as a guide to complete this
Heiken Ashi MTF Strategy- IndicatorHello, this is both a strategy and indicator that revolves around Heikin Ashi candles.
In this case we take 3 different time frames, in this example we use daily , weekly and monthly.
The conditions for entry are :
For long : we check that we have a green daily candle, at the same time we check that the weekly and monthly candles are also green.
For short : We check that all candles, daily, weekly and monthly and red.
For exit of long : as soon as 1 of the 3 candles, daily or weekly or monthly converts to red, we exit.
For exit of short : as soon as 1 of the 3 candles converts to green, we exit.
This strategy- indicator can be adapted to any type of market.
Quansium Series A BacktestThis comes with preconfigured setups or strategies. Simply choose one from our list based on the timeframe it was made for. Leverage can be changed; to keep trading safe, a maximum of 2 is allowed. In our findings, this was able to trade crypto (specifically BTC ), MES (Micro E-mini S&P 500 Index Futures ), and stocks. It is important to know that setups A, B, C, and D use variable position sizing, and dynamic stop loss/trailing stop/take profit, these parameters are provided through the alerts. The rest of the strategies were created with a simpler approach in mind, just plainly entry/exits signals.
Quansium as a framework:
Price reformat: we take the price source (Open, Close, High, Low) and remove any noise that affects the accuracy of our signals.
Time awareness: we take several time periods of the data on the chart such as start, end, and whole. We use this to add more depth to our signals.
Position size: our backtest tries to recreate as much as the real world trades as possible so our position is determined by the current equity. We also use the volatility of the market to increase or decrease our exposure or risk.
Risk awareness: stop loss, take profit, trailing stop are the risk exits we use to provide our users some peace of mind. These parameters are totally dynamic and follow the same behavior of the market.
Signals filtering: to make almost non-existent any errors and increase the quality of our trades, our indicators go through multiple phases, this avoid double entries or early exits, and help maintain a record of what has transpired and what’s currently taking place.
Indicators: whenever we can we use custom code or our own functions instead of the defaults ones provided. This gives us total control of what we’re trying to achieve. In many cases we tend to combine several indicators’ logic into one creating a more personalized take on it.
Easiness: since we started our main goal has been to provide the easiest and fastest way to alerts’ creation. It has taken us years to reach this level where now we already provide a list of preset strategies so the user doesn’t have to spend much time tinkering with scripts and more on other matters, because we know life is more than just trading.
Raw signals: we provide the option to turn off as much of our advanced features such as stop loss, take profit, trailing stop, dynamic sizing, etc, etc for a simple approach. Trade signals still go through the signals filtering method mentioned above,
Timeframe pairing: we take trading very seriously, by no way we’ll want the user to lose money (although such thing is expected because past results aren’t an indicative of futures ones), through years of experience we have found what are usually common mistakes the user makes, this feature allows us to only activate the strategy if the right timeframe is chosen.
Trend filters: through the years we have improved the arts of the trend. We like to keep things simple but yet powerful. We observe the macro and micro trend of the security. This helps confirm we are entering at the desirable timing. We also incorporate volume and volatility into decision making, we simply programmed it to trade when these are increasing and higher than the average values observed in both the short and long term. Finally we take into account the strength of the pair to make our final choice of whether to enter or wait, and if anything flashes contrary movement then we cancel the upcoming signal and stop monitoring until the next one comes along.
Full automated risk: stop loss, take profit, and trailing stops usually are set in percentages, and optimized even more using the current market behavior to become more adaptive. But always remains some sort of fixation, so the user must choose a value somewhere. This is where our framework shines the most, as previously mentioned before when we take time into our calculations, we use several periods to observe performance and get values that keep our risk exits natural and closest to the flow of the market itself.
Setups:
A: Centered oscillator with the difference of several moving averages with more sensitive settings. Momentum focused.
B: Centered oscillator using simple moving averages. Trend-Following focused.
C: Centered oscillator using smoothed data with the help of faster moving averages. Trend-Following focused.
D: Centered oscillator with the difference of several moving averages with less sensitive settings. Trend-Following focused.
E: Centered oscillator with the difference of moving averages where the standard deviation is applied first. It uses less sensitive settings. Trend-Following focused.
F: Finds the relationship between multiple readings of the price’s relative strength to better pin-point downs and ups. Trend-Following focused.
G: Centered oscillator with the difference of moving averages where the standard deviation is applied first. It uses more sensitive settings. Momentum focused.
H: Multiple centered oscillators using various moving averages. Trend-Following focused.
I: Centered oscillator using simple moving averages. Momentum focused.
Note: The framework is composed of almost 1000 lines of code as compared to each indicator that makes up the setup which is around 10. The power from Quansium doesn't come from the strategies themselves but rather the overall system that turns simple signals into complex and advanced trades.
Strategy Tester:
Initial Capital: chosen value is $20,000, as an approximate to Bitcoin’s ATH (All-Time High). In previous iterations we noticed some trades won’t go through if the capital was less than the ATH.
Order Size: 100% of equity (although the script controls this, and this is of no regards to the results).
Pyramiding: 1, system doesn’t place multiple entries in a row, only one at a time.
Commission: This simulates order execution with custom trading fees. Commissions are turned off by default because this script works in various markets and each operates differently. In order to reach results that are close to real world conditions, it is imperative the user fills this based upon their broker or exchange data.
When we started, we were focused on finding the best indicator, or creating it ourselves. After years we came to realize that the secret is not in which indicator you use but the framework behind it. All strategies have bad, good, best, worst performance periods. The key of a good system is to help keep you safe when it’s down and maximize your potential when it’s up. We hope this material at the very minimum inspires you to keep going and not lose faith, because it is not the smartest who win but those who persevere.
Keltner Channels Color BarsAnother tweak to a classic built-in script. Simply replacing the Keltner Channels overlay plot with color bars.
CRYPTO HA Strategy money maker long termToday I bring you another amazing strategy.
Its made of 2 EMA in this case 50 and 100.
At the same time, internaly for candles we calculate the candles using the HA system ( while still using in live the normal candles). This way we can assure that even if we use HA candles, we avoid repainting, and its legit.
We first calculate the HA candles based on the EMA 50 values, and after that , we use that candle properties to apply to EMA 100.
Once we have that, for entries we have the next conditions :
sell = o2 > c2 and o2 < c2 and time_cond
buy = o2 < c2 and o2 > c2 and time_cond
For sell : Our open from HA 100 is bigger than Close from ha 100, and the previous open is smaller than previous close
For long : Our open from ha 100 is smaller than close from ha 100 and the previous open is bigger than previous close.
Then we have 2 options :
If we wnat to go only long , which is my prefered version ,or the original one where we go both long and short.
I found that the best results are in general around bigger timeframes, 1h+ , 3h works the best so far on my tests.
For exit we have 2 versions :
1 lets say we had a long signal, as soon as we have a short signal we close the trade. Viceversa for short.
2. Is based on price % movement. In this case I use 7.5% price movement of asset.
We have no TP in use for this system.
For the purpose of this test I use 10.000 $ account. For test I use 100% of it, without any leverage.
I use the SL based on price movement , which is a very risky tool, since it can fluctuate even at 20-30% of our capital.
For comission I used 0.1% for each deal, and a slippage of 5 points.
Be cautious with this system !
If you have any questions , message me.
Crypto MultiTrend multi timeframesHello, today I bring you another crypto strategy which can work with multiple timeframes and most of crypto currencies
Its made entirelly of multiple EMA , of different lengths : like super fast, fast, normal, slow and very slow
We also combine a little bit of price action together with the trend direction both for entry and for exits, to have a more precise control.
The rules for long close is above all EMA's, they are in ascending order and the at same time close is bigger than the previous high, and previous high > second previous high, close > 3rd previous high , close > 4th previous high, close > 5th previous high, 5th high > 6th high.
For short we have the same, but instead of high, we use lows, and instead of > we use < .
As exit we have 2 conditions for long and 2 for short
To exit long we have : super fast ema < fast ema and fast ema < normal and normal < slow ema. For short, they would be the opposite, using > sign.
The second exit for long is when our current low crosses below 4 of ours EMA during the same candle. For short, is when the high crosses above 4 of ours EMA during the same candle.
CAUTIOUS : Currently it uses not risk management system, so in this current condition is extremely risky . Be careful
If you have any questions lets me know
PpSIgnal Algorithm Trade System SUSHI Algorithm-based solely for trading SUSHI USDT.
Initial capital 50 USD, you buy the maximum of the capital since it represents little money at the beginning, you can risk less capital in percentage, for example, 10% of the 50 USD.
Commission 0.0045% per contract, we use the commission of one of the best-known brokers.
You can adjust the slippage you consider.
Date of time strategy
You can choose the start day and the end day of the backtesting test.
Money management
Take profit to buy 0.5%
Stop Lose sell 1%
Take Profit 1%
Stop Loss 1%
How it works?
The system works by looking for trends and volatility in a 15-minute time frame.
Once the system finds the trend and volatility, it opens an operation looking for a profit at the buy of 0.5% and loss control of 1%.
For Sell operations, it will seek a 1% profit with a 1% loss control.
You can find the profit you want
PpSignal Momentum TraderThis is a combination of the PERCENTAGE of PRICE OSCILLATOR (PPO) and Momentum.
When both oscillators are up in the same direction it is buying (green bottom and green oscillators), when both oscillators are down it is sell (red bottom and red oscillators. When they do not agree (silver bottom) it is to keep doing nothing .
You can also see the change in trend with the candles as well. same colors as the background and the oscillators.
pSignal CFB and Slope Trend Folow This indicator shows the trend of an asset (nifty, crypto, forex, stock, etc., taking as a starting point the volatility and direction of the market.
When the moving average slope crosses up CFB (see CFB explanation below) it is BUY.
When the Moving Average Slope crosses CFB down it is sell.
The system also has a support and resistance (daily, weekly, or mouth) identifier.
The alarm of resistance or support signal: When price close and volume break daily support or resistance the general system is a visual signal.
Bull Wick= the high price broke the resistance.
Bear wick = the low price broke the support.
Break Out color blue color = the close price and the volume broke the resistance.
Break Out color maroon color = the close price and the volume broke the support.
The system also has the Bollinger bands that show us the volatility of the market and when it is up or down. Read more about the use of the Bollinger band
CFB
his indicator was designed to filter out lower price actions for a clearer view of trends. Inspired by QQE's volatility filter, this filter applies the process directly to price rather than a smoothed RSI . Range Filter and bands are now calculated in a singular function. There are now two different calculation methods for the filter. Select the type you want to use through the "Filter type" entry. Type 1 is the original formula. Multiple range size methods are now available.
You can choose between the following scales:
- Points
- Pips (Works best with currency pairs, obviously)
- Ticks -% of the price - ATR - Average change (default. This is the original sizing method). - Standard Deviation
- Absolute (absolute numerical value)
- Smoothing with the range elder is now optional, and you can specify its smoothing length.
Smoothing only affects dynamic scales (ATR, average change, and standard deviation).
- Filter movement can now be determined using highlights or closing price. This can be specified through the input.
Crypto BOT lower timeframesThis is a crypto bot designed for lower time frames.
Its made of 2 EMA, one fast and one slower . They are combined together with Stochastic, MACD and price action patterns.
For entries we have multiple conditions :
First we check if one of our last 4 closed candles crossed above or below the faster EMA. After that for long, we check that last close is above the fast EMA, that the fast ema is above the slower EMA, at the same time that the histogram from MACD is positive and that we have crossover with the oversold line on stochastic. For the short , the opposite of long.
For exit we have TP/SL mechanic based on price % movement, in this example if the price moved 10% from the initial position it will exit.
CRYPTO Trend Direction Multiple EMA'sToday I bring an indicator specialized in crypto markets.
Its made of multiples EMA : very fast, fast, normal, slow, very slow
The logic behind its simple :
For long : we check that the EMA are in ascending order like EMA 5 > EMA 10 > EMA 20 .... and at the same time that last close of candle is above all of them.
For short : we check that the EMA are in descending order like EMA 5 < EMA 10 < EMA 20 .... and at the same time last close of candle is below all of them.
It can be used with all time frames.
Enjoy it !
Profits Unlimited Pro Strategy** This is the backtesting (strategy) version of ~ Profits Unlimited Pro ~ proprietary script in TradingView. **
~ Profits Unlimited Pro Strategy ~
֎ Trading system script on tradingview that brings an easy approach to trading with a high profitability rate
֎ Our proprietary formula was developed over the course of the past two years through a combination of trial and error and algorithmic backtesting.
-- HOW IT WORKS --
֎ The algorithm starts with a proprietary script combining custom inputs with a formula that works with custom bollinger bands settings and specific RSI levels to results in deadly accurate signals for long and short entry points.
but that's not all...
֎ When we first developed our formula, we noticed that it produced a lot of accurate signals but also didn't fully understand the dynamics of market momentum and trending directions...
...so there were a lot of needless calls being made that were reducing profitability.
You see, most markets spend roughly 80% of the time trading sideways with no significant trend either up or down...
...And trading these sideways markets commonly result in what's called a "whipsaw"...
A whipsaw is when price is moving in one direction but then quickly pivots to move in the opposite direction resulting in a loss. And nobody wants to be stuck trading in a sideways market getting killed by whipsaws all day...
So what did we do to fix this?...
-- THE WINNING FORMULA --
֎ We added the Average Directional Index into our custom formula with a goal of teaching the algorithm to only trade during periods of strong momentum and trends whether up or down.
֎ We also added trend exhaustion levels to give clear indication for exit signals and help determine best times of getting out of a trade.
֎ Trend Exhaustion Levels work in conjunction with trailing stop loss % and both are customizable for ideal exits and profitability.
֎ The results are mind blowing!
-- WHO IT'S FOR --
֎ Optimized for crypto markets, to catch trend movements as soon as possible and maximize profitability
֎ It's A Swing Traders Dream.
-- What You Get --
֎ Sell & Buy alerts, Stop Loss alerts and always adding new features!
֎ Customizable settings.
֎ Chrome Extension in development for fine-tuning settings automatically(COMING SOON)
-You will be able to select an asset. push a button. and the extension will find the best settings for you!
֎ Users Facebook community for learning, sharing and direct support
If you’d like to test the trading script in TradingView, I can give you access to a 10 days trial.
Please send me PM in tradingview and I’ll activate it right away.
Thank you!
Ichimoku Cloud ForecastUsing doubled crypto settings, forecast Tenkan and Kijun lines, assuming price remains neutral (constant).
Tenkan - 14 periods
Kijun - 20 periods
Companion::DivergentCompanion::Divergent is a combined indicators strategy optimized for Bitcoin Markets and tested on Bitfinex.
Mainly, it is an Ichimoku based strategy.
Used indicators:
- Ichimoku (displayed on chart): trendline analysis;
- Double Hull MA (displayed on chart): trendline analysis;
- MACD (not displayed): confirmative/momentum detection;
- CCI (not displayed): confirmative/momentum detection;
- ATR: used toghether with Ichimoku to determine Stop Loss/Take Profit levels;
- VWMA: For implementing trailing stop orders based on volumes.
What the script does:
- determines trendlines combining mulitple indicators;
- automaticlally calculates Take profit and Stop Loss levels;
- permits automation generating Autoview signals;
- supports for margin trading. Spot trading will be added in the future.
It can be used on 1D or 1H timeframes but it can be adapted for other time frames tweaking the parameters. I used it a lot on Bitfinex on 1H timeframes. Please check parameters: if you will use the strategy on D or higher timeframes, the "Legacy Chikou analysis" option should be checked.
BACKTESTING
Backtest is not leveraged. Defaults are set as follow:
Capital: 10000
Percent of equity used for trades: 10%
Commission: 0.18% this is Bitfinex commission on orders
Change them accordingly on how you trade to get a more realistic backtest results.
Crypto Breakout Alert DEMOThe indicator plots breakout events of user-defined assets list, providing alert setting for breakout events.
Any big trend begins with a couple of price breakouts. By watching breakout events, we overlook the panorama of the whole market.
Version: DEMO
---------- Features --------------
User-Defined Crypto / or any Asset List, Up To 30 Assets, Demo has some limit
User-Defined Breakout Threshold
Accessible for wide timeframes: 5s - 1 Month, Demo has some limit
Plot the Breakouts History of whole market
Progressive color according to the strength of the breakthrough
--------- Indicator Settings -----------
"Show Bull or Bear?": To show Bull Breakout, Bear Breakout or Both
"User-Defined Breakout Threshold": User can defined the threshold of breakout, default value 999 means using default set up, as following - "Default Breakout Threshold"
"A rate to decrease Bitcoin Threshold": Bitcoin has much lower volatility than other coins, so this rate is usded to lower the threshold for Bitcoin , defval = 0.5
"Use Green for Bull? ": Toggle color for Bull, defval: true, if your region use red for bull, toggle it.
"Exchange": Your exchange name, which is used to defined tickerid, defval="BINANCE", optional - can be empty
"Asset PostFix": postfix of your asset symbol, which is used to define tickerid, defval="USDTP", change it if necessary, this can not be empty.
"Toggle Notice Label": close or open the notice label
--------- Default Breakout Threshold For Popular Timeframes-------------
5s 0.5%
15s 0.75%
30s 0.9%
1m 1.2%
2m 1.4%
3m 1.6%
5m 1.8%
8m 2%
15m 3%
20m 3.5%
30m 4%
60m 5%
120m 6.5%
240m 8%
480m 10%
1D 12%
1W 20%
---------- Versions Description ----------
The features may change later without advance notice.
DEMO version has basic features.
---------- Access to Indicators ----------
Contact the author by Private Chat for access to Invite-Only versions and a trial.
---------- Install Invite Only Version----------
Open the chart -> Add Indicators (On the Top or press /) -> Invite-Only Scripts (last button of the left bar)
Like/Favorite the indicator
Click to install on the chart
---------- About Loading Time ----------
It may take up to 1-3 minutes for your browser to load a new setting, depending on the your computer and network speed. For convenience, you can keep related pages open continuously.
---------- FAQ -----------
1. Why can't I see older breakout labels?
Due to system limit, 500 is the maximum of labels.
In order to see older breakout events, please Select Bull or Bear, instead of Both; Or Increase to filter weak breakouts.
2. How to watch more than 30 coins?
Due to system limit, 30 assets is the maximum.
In order to watch more assets, user can open the indicator in another chart, add your 2nd assets list, save 2nd layout, set alerts for different lists respectively.
---------- Disclaimer ----------
By using or requesting access to the indicator, you acknowledge that you have read and accepted that the indicator and any related content, including but not limited to: user manual, tutorials, ideas, videos, chats, emails, blog, are for the purpose of trading strategies studying and paper trading.
If a customer or user uses the indicator or related content mentioned above for live trading or investment, she/he should take all risks and responsibility of her/his own trading and investment activities.
---------- Updates ----------
The latest updates override the previous description.
To activate a update: Close the browser, Reopen the chart and apply the indicator.
【加密货币突破预警】指标绘制一系列资产的突破事件,提供突破预警
任何大趋势都开始于一系列的价格突破。通过监控突破事件,可以俯瞰市場的運動
版本 DEMO
---------- 产品特征------------
用户自定义的加密货币品种列表,或者其他资产列表,多达30个品种, DEMO 有限品种
用户自定义的突破门槛
适用于宽泛的时间维度:5秒--1月, DEMO 有限制
绘制整个市场的突破历史
漸進顏色 根據突破的力度
------------- 指标设置说明 -------------------
"展示牛熊突破?": 展示牛突破,熊突破或者两者
“用户自定义突破门槛”: 自己定义突破门槛,999代表默认的设置,详见下方“默认的突破门槛”
"比特币突破门槛修正": 比特币的波动性远远低于其他加密货币,这个比率用来调低比特币的门槛
"切换通知标签": 用来开关通知标签
"綠色為牛?": 切換標籤顏色,默認綠色為牛
“交易所”:用来定义资产名称,可以为空
“资产后缀”: 用来定义资产名称,不可以为空
---------默認的突破門檻-------------
5s 0.5%
15s 0.75%
30s 0.9%
1m 1.2%
2m 1.4%
3m 1.6%
5m 1.8%
8m 2%
15m 3%
20m 3.5%
30m 4%
60m 5%
120m 6.5%
240m 8%
480m 10%
1D 12%
1W 20%
---------- 版本描述 ----------------
產品特徵後續可能變化,恕不事先通知
DEMO版本供試用
----------- 獲取指標使用權 ------------
通過私信聯繫作者,要求訂閱或試用
----------- 安裝指標 -----------------
加指標 -》 Invite-Only (左邊欄目)
點贊或者收藏指標
點擊安裝指標
----------- 關於載入時間 ---------------
可能需要1--3分鐘來完成載入,取決於用戶的電腦和網絡速度,方便起見可以保持相關頁面持續開啟
------- FAQ ----------
1. 如何查看更早的突破歷史
由於系統限制,500 個標籤是上限
為了查看更早的突破,請選擇牛或者熊,而不是兩者;或者提高"用戶自定義突破門檻" 來過濾掉弱突破
2. 如何監控更多資產?
由於系統限制,30個資產是上限
為了監控更多資產,可以在第二個圖表加載指標,保存圖表,分別在不同的圖表設置突破預警
---------- 免責聲明 ----------
在要求獲得本指標使用權之前以及在使用本指標之前,用戶認可已經完全了解和接受:本指標僅供學習交流目的, 它不構成任何交易建議或者投資建議。用戶如果將指標用於其他用途,應自行承擔所有風險和責任。
本指標的開發者並非專業投資顧問,因此不對用戶的任何行为負責。
最近的更新會覆蓋之前的說明。請參閱更新來查看指標的新特徵和功能。
Crypto Breakout AlertThe indicator plots breakout events of user-defined assets list, providing alert setting for breakout events.
Any big trend begins with a couple of price breakouts. By watching breakout events, we overlook the panorama of the whole market.
---------- Features --------------
User-Defined Crypto / or any Asset List, Up To 30 Assets
User-Defined Breakout Threshold
Accessible for wide timeframes: 5s - 1 Month
Plot the Breakouts History of whole market
Progressive color according to the strength of the breakthrough
--------- Indicator Settings -----------
"Show Bull or Bear?": To show Bull Breakout, Bear Breakout or Both
"User-Defined Breakout Threshold": User can defined the threshold of breakout, default value 999 means using default set up, as following - "Default Breakout Threshold"
"A rate to decrease Bitcoin Threshold": Bitcoin has much lower volatility than other coins, so this rate is usded to lower the threshold for Bitcoin, defval = 0.5
"Use Green for Bull? ": Toggle color for Bull, defval: true, if your region use red for bull, toggle it.
"Exchange": Your exchange name, which is used to defined tickerid, defval="BINANCE", optional - can be empty
"Asset PostFix": postfix of your asset symbol, which is used to define tickerid, defval="USDTP", change it if necessary, this can not be empty.
"Toggle Notice Label": close or open the notice label
--------- Default Breakout Threshold For Popular Timeframes-------------
5s 0.5%
15s 0.75%
30s 0.9%
1m 1.2%
2m 1.4%
3m 1.6%
5m 1.8%
8m 2%
15m 3%
20m 3.5%
30m 4%
60m 5%
120m 6.5%
240m 8%
480m 10%
1D 12%
1W 20%
---------- Versions Description ----------
The features may change later without advance notice.
DEMO version has basic features.
---------- Access to Indicators ----------
Contact the author by Private Chat for access to Invite-Only versions and a trial.
---------- Install Invite Only Version----------
Open the chart -> Add Indicators (On the Top or press /) -> Invite-Only Scripts (last button of the left bar)
Like/Favorite the indicator
Click to install on the chart
---------- About Loading Time ----------
It may take up to 1-3 minutes for your browser to load a new setting, depending on the your computer and network speed. For convenience, you can keep related pages open continuously.
---------- FAQ -----------
1. Why can't I see older breakout labels?
Due to system limit, 500 is the maximum of labels.
In order to see older breakout events, please Select Bull or Bear, instead of Both; Or Increase to filter weak breakouts.
2. How to watch more than 30 coins?
Due to system limit, 30 assets is the maximum.
In order to watch more assets, user can open the indicator in another chart, add your 2nd assets list, save 2nd layout, set alerts for different lists respectively.
---------- Disclaimer ----------
By using or requesting access to the indicator, you acknowledge that you have read and accepted that the indicator and any related content, including but not limited to: user manual, tutorials, ideas, videos, chats, emails, blog, are for the purpose of trading strategies studying and paper trading.
If a customer or user uses the indicator or related content mentioned above for live trading or investment, she/he should take all risks and responsibility of her/his own trading and investment activities.
---------- Updates ----------
The latest updates override the previous description.
To activate a update: Close the browser, Reopen the chart and apply the indicator.
【加密货币突破预警】指标绘制一系列资产的突破事件,提供突破预警
任何大趋势都开始于一系列的价格突破。通过监控突破事件,可以俯瞰市場的運動
---------- 产品特征------------
用户自定义的加密货币品种列表,或者其他资产列表,多达30个品种
用户自定义的突破门槛
适用于宽泛的时间维度:5秒--1月
绘制整个市场的突破历史
漸進顏色 根據突破的力度
------------- 指标设置说明 -------------------
"展示牛熊突破?": 展示牛突破,熊突破或者两者
“用户自定义突破门槛”: 自己定义突破门槛,999代表默认的设置,详见下方“默认的突破门槛”
"比特币突破门槛修正": 比特币的波动性远远低于其他加密货币,这个比率用来调低比特币的门槛
"切换通知标签": 用来开关通知标签
"綠色為牛?": 切換標籤顏色,默認綠色為牛
“交易所”:用来定义资产名称,可以为空
“资产后缀”: 用来定义资产名称,不可以为空
---------默認的突破門檻-------------
5s 0.5%
15s 0.75%
30s 0.9%
1m 1.2%
2m 1.4%
3m 1.6%
5m 1.8%
8m 2%
15m 3%
20m 3.5%
30m 4%
60m 5%
120m 6.5%
240m 8%
480m 10%
1D 12%
1W 20%
---------- 版本描述 ----------------
產品特徵後續可能變化,恕不事先通知
DEMO版本供試用
----------- 獲取指標使用權 ------------
通過私信聯繫作者,要求訂閱或試用
----------- 安裝指標 -----------------
加指標 -》 Invite-Only (左邊欄目)
點贊或者收藏指標
點擊安裝指標
----------- 關於載入時間 ---------------
可能需要1--3分鐘來完成載入,取決於用戶的電腦和網絡速度,方便起見可以保持相關頁面持續開啟
------- FAQ ----------
1. 如何查看更早的突破歷史
由於系統限制,500 個標籤是上限
為了查看更早的突破,請選擇牛或者熊,而不是兩者;或者提高"用戶自定義突破門檻" 來過濾掉弱突破
2. 如何監控更多資產?
由於系統限制,30個資產是上限
為了監控更多資產,可以在第二個圖表加載指標,保存圖表,分別在不同的圖表設置突破預警
---------- 免責聲明 ----------
在要求獲得本指標使用權之前以及在使用本指標之前,用戶認可已經完全了解和接受:本指標僅供學習交流目的, 它不構成任何交易建議或者投資建議。用戶如果將指標用於其他用途,應自行承擔所有風險和責任。
本指標的開發者並非專業投資顧問,因此不對用戶的任何行为負責。
最近的更新會覆蓋之前的說明。請參閱更新來查看指標的新特徵和功能。
GreenCrypto PR Strategy for Swing TradesThis is a very good strategy for Swing Trading, I have been using this strategy for very long time and made good amount of profit using this. This works great for both long trades and short trades, Stop loss and Take profit target is must while entering the trade, this make sure that the trade ends up in good profit and in case if the market revers, ends in only small loss.
This strategy works using the pivot points, we calculate the pivot point using the number of candles mentioned in the input field "leftBars" and "rightBars", if you add more number of bars then the frequency of the trade decreases. for example with the leftBars as 4 you will get less trades than the leftBar=2. Every trade entry is represented using "Buy" and "Sell" signals, whenever there is a new signal chart shows buy/sell signal for limit price, you need to add a limit order for the same price.
Parameters:
LeftBars = Number of left bars should be used for calculating the pivot pints, (more bars means less frequent trades)
RightBars = Number of right candle bars used for calculating the pivot points (more bars means less frequent trades)
Date/month/day : for selecting the right backtesting the period (currently it set to Jan 2018 to current day )
for this backtesting i have used 1000$ capital and with 10% capital used for each trade, free to modify it as per your needs.
This strategy works best on 4H time frame but you can also try backtesting on other time periods.
The default parameters present in the strategy is works best for most of famous cryptocurrencies on 4H time period.
Please DM me if you would like to tryout 7 Days free trail.
The WaveRider - Help me to exit position!Hello,
I always like to refer to my previous articles to allow people to understand where am I in terms of knowledge at the time when I write this article.
BTC and ETH Long strategy version 1
BTC and ETH Long strategy version 2
Although some part of my crypto trading is automated via HaasOnline software, I like to take discretionary trades to feel the excitement of manual trading, especially during bull market :).
I write this new article and script because I did struggle to decide when to exit a recent LONG position on Ethereum.
Most of the novice traders struggles to know when to exit the position when gains are made.
The is exactly what happens to many people trading cryptos in the beginning of this bull market.
We always want more, we want to ride the wave as much as possible.
We see the gains growing every day and don't want to exist the position because tomorrow will bring more gains.
Yes, but sometimes there is a small retracement, the price is bleeding slowly but we want to hold because the price will move UP again in one of two days.
So the big question is went to exit (or not).
This subject is a difficult one because we are humans and highly influenced by our psychology.
Depending on the mood we are in, we can take different decisions.
If we are not feeling good and we are not in good mood, we will probably close a winning position as soon as a retracement comes in to keep our gains because we see this retracement as something bad.
On the other side, if we feel good and are in a good mood that day, we might take to opposition decision and keep the trade running as we believe that this retracement is something healthy for the price to allow it to continue to move up.
For novice traders, these emotions can impact the way how we trade and create frustrations if we exit a position too soon or too late.
So, why not to let a script giving us advices on this decision? If we are not sure if we should exit or not, this script might help us to take a better decision.
I have named this script the "WaveRider" because it is supposed to be used during bull market only when the asset is moving up.
Best time frame to use with crypto such as Bitcoin and Ethereum are 2H, 4H and 6H candles.
Even if it can also give you entry points to open a trade, the goal of this script is more to give you exit points.
So, if you have opened a trade manually and you are wondering if this is the right time to close it, this script is made for you.
Technically, entry points are based on 2 Moving averages (slow and fast). We can enter in position when crossing over.
The Position can be closed if the same Moving averages are crossing down. In addition, it will exit if the price suddenly drops below the Moving average.
I know it sounds simple and stupid, but sometimes we don't ask ourselves the right questions when taking the decision to exit a position. So, this script will remind you the basic stuff to consider before closing your position.
I hope that such idea will help you to take good exit decisions in the future.
Let me know if you need more details or want to access it.
Crypto EMA+MA+MACS by hobbeLeThis is an indicator that includes several EMAs and MAs (Used in Cryptotrading).
In addition, the Golden and Death Cross are also displayed.
Used MAs
MA 7 - Orange Line
MA 21 - Yellow Line
MA 25 - Grey Line
MA 99 - Blue Line
MA 200 - Green Line
Used EMAs
EMA 200 - Grey Dotted Line
EMA 222 - Pink Dotted Line
Golden Cross
Crossover MA25 + MA200
Death Cross
Crossunder MA25 + MA200
What is a Moving Average (MA) ?
A moving average (MA) is a widely used indicator in technical analysis that helps smooth out price action by filtering out the “noise” from random short-term price fluctuations.
Moving average is a trend-following, or lagging, indicator because it is based on past prices. The most common applications of moving averages are:
to identify the trend direction
to determine support and resistance levels
The two basic and commonly used moving averages are the simple moving average ( SMA ), which is the arithmetic average of a security over a defined number of time periods, and the exponential moving average ( EMA ), which gives greater weight to more recent prices.
What is a Golden Cross?
The golden cross is a candlestick pattern that is a bullish signal in which a relatively short-term moving average crosses above a long-term moving average. The golden cross is a bullish breakout pattern formed from a crossover involving a security's short-term moving average (such as the 15-day moving average) breaking above its long-term moving average (such as the 50-day moving average) or resistance level. As long-term indicators carry more weight, the golden cross indicates a bull market on the horizon and is reinforced by high trading volumes.
What Is a Death Cross?
The death cross is a technical chart pattern indicating the potential for a major selloff. The death cross appears on a chart when a stock’s short-term moving average crosses below its long-term moving average.
Source; Investopedia
[5F] Total circulating Bitcoin-═════════════════════════-
📋 Description :
This script displays several informations about Bitcoin :
the maximum number of Bitcoin
number of mined BTC
number of unmined BTC
calcul them in %
shows the previous halving date
📆 Note : need to be in dayli resolution or higher
Thanks to all Pinecoders who share their work with the community.
-═════════════════════════-
BTC and ETH Long strategy - version 2I wrote my first article in May 2020. See below
BTC and ETH Long strategy - version1
After 6 months, it is now time to check the result of my script for the last 6 months.
XBTUSD (4H): 14/05/2020 --> 22/11/2020 = +78% in 4 trades
ETHXBT (4H): 14/05/2020 --> 22/11/2020 = +21% in 9 trades
ETHUSD (4H): 14/05/2020 --> 22/11/2020 = +90% in 6 trades
Using the signals from this strategy to trade manually has shown that this was a bit frustrating because of the low rate of winning trades.
If you have to enter 100 trades and see 75% of them failing and 25% winning, this is frustrating. For sure the strategy makes good money but it is difficult to hold this mentality.
So, I have reviewed and modified it to get a higher winning rate.
After few days of work, tests and validation, I managed to get a wining rate close to 60%.
The key element was also to decrease the number of trades by using a higher time frame. (4H candles instead of 2H candles).
- Entry in position is based on
MACD, EMA (20), SMA (100), SMA (200) moving up
AND EMA (20) > SMA (100)
AND SMA (100) > SMA (200)
- Exit the position if: Stoploss is reached OR EMA (20) crossUnder SMA (100)
The goal of this new script is to be able to follow the signals manually and only make few trades per years.
I have also validated it against some other altcoins where some are giving very good results.
Here are some results for 2020 (from 01/01/2020 until now (22/11/2020). Those results are the one I get when using 4H candles.
ETH/USD: +144% in 8 trades.
BTC/USD: +120% in 7 trades.
ETH/BTC: +33% in 9 trades.
ICX/USD: +123% in 10 trades.
LINK/USD: +155% in 11 trades.
MLN/USD: +388% in 8 trades.
ADA/USD: +180% in 7 trades.
LINK/BTC: +97% in 10 trades.
The best is that above results are without considering compound effect. If you re-invest all gains done in each new trade, this will give you the below results :)
ETH/USD: +189% in 8 trades.
BTC/USD: +260% in 7 trades.
ETH/BTC: +29% in 9 trades.
ICX/USD: +112% in 10 trades.
LINK/USD: +222% in 11 trades.
MLN/USD: +793% in 8 trades.
ADA/USD: +319% in 7 trades.
LINK/BTC: +103% in 10 trades.
As you can see, the results are good and the number of trades for 11 months is not big, which allows the trader to place orders manually.
But still, I'm lazy :), so, I have also coded this strategy in HaasScript language which allows you to automate this strategy using the HaasOnline software specialized in automated crypto trading.
I hope that this strategy will give you ideas or will be the starting point for your own strategy.
Let me know if you need more details.