MAPS - HiLo DivergenceThe High/Low indicator utilizes the measuring of local highs and lows as well as local peaks and troughs to identify possible divergence in the price action.
Purple oscillator = Higher Timeframe's price measurement
Purple high triangle = A local high on the higher timeframe has been made
Purple low triangle = A local low on the higher timeframe has been made
Red high triangle on the purple oscillator = A local high on the higher timeframe has been made and is deemed a bearish divergent high
Green low triangle on the purple oscillator = A local low on the higher timeframe has been made and is deemed a bullish divergent low
Orange oscillator = Current Timeframe's price measurement
Orange high triangle = A local high on the current timeframe has been made
Orange low triangle = A local low on the current timeframe has been made
Red high triangle on the orange oscillator = A local high on the current timeframe has been made and is deemed a bearish divergent high
Green low triangle on the orange oscillator = A local low on the current timeframe has been made and is deemed a bullish divergent low
Bitcoin (Mata Wang Kripto)
Bitcoin Block Height (Total Blocks)Bitcoin Block Height by RagingRocketBull 2020
Version 1.0
Differences between versions are listed below:
ver 1.0: compare QUANDL Difficulty vs Blockchain Difficulty sources, get total error estimate
ver 2.0: compare QUANDL Hash Rate vs Blockchain Hash Rate sources, get total error estimate
ver 3.0: Total Blocks estimate using different methods
--------------------------------
This indicator estimates Bitcoin Block Height (Total Blocks) using Difficulty and Hash Rate in the most accurate way possible, since
QUANDL doesn't provide a direct source for Bitcoin Block Height (neither QUANDL:BCHAIN, nor QUANDL:BITCOINWATCH/MINING).
Bitcoin Block Height can be used in other calculations, for instance, to estimate the next date of Bitcoin Halving.
Using this indicator I demonstrate:
- that QUANDL data is not accurate and differ from Blockchain source data (industry standard), but still can be used in calculations
- how to plot a series of data points from an external csv source and compare it with another source
- how to accurately estimate Bitcoin Block Height
Features:
- compare QUANDL Difficulty source (EOD, D1) with external Blockchain Difficulty csv source (EOD, D1, embedded)
- show/hide Quandl/Blockchain Difficulty curves
- show/hide Blockchain Difficulty candles
- show/hide differences (aqua vertical lines)
- show/hide time gaps (green vertical lines)
- count source differences within data range only or for the whole history
- multiply both sources by alpha to match before comparing
- floor/round both matched sources when comparing
- Blockchain Difficulty offset to align sequences, bars > 0
- count time gaps and missing bars (as result of time gaps)
WARNING:
- This indicator hits the max 1000 vars limit, adding more plots/vars/data points is not possible
- Both QUANDL/Blockchain provide daily EOD data and must be plotted on a daily D1 chart otherwise results will be incorrect
- current chart must not have any time gaps inside the range (time gaps outside the range don't affect the calculation). Time gaps check is provided.
Otherwise hardcoded Blockchain series will be shifted forward on gaps and the whole sequence become truncated at the end => data comparison/total blocks estimate will be incorrect
Examples of valid charts that can run this indicator: COINBASE:BTCUSD,D1 (has 8 time gaps, 34 missing bars outside the range), QUANDL:BCHAIN/DIFF,D1 (has no gaps)
Usage:
- Description of output plot values from left to right:
- c_shifted - 4x blockchain plotcandles ohlc, green/black (default na)
- diff - QUANDL Difficulty
- c_shifted - Blockchain Difficulty with offset
- QUANDL Difficulty multiplied by alpha and rounded
- Blockchain Difficulty multiplied by alpha and rounded
- is_different, bool - cur bar's source values are different (1) or not (0)
- count, number of differences
- bars, total number of bars/data points in the range
- QUANDL daily blocks
- Blockchain daily blocks
- QUANDL total blocks
- Blockchain total blocks
- total_error - difference between total_blocks estimated using both sources as of cur bar, blocks
- number_of_gaps - number of time gaps on a chart
- missing_bars - number of missing bars as result of time gaps on a chart
- Color coding:
- Blue - QUANDL data
- Red - Blockchain data
- Black - Is Different
- Aqua - number of differences
- Green - number of time gaps
- by default the indicator will show lots of vertical aqua lines, 138 differences, 928 bars, total error -370 blocks
- to compare the best match of the 2 sources shift Blockchain source 1 bar into the future by setting Blockchain Difficulty offset = 1, leave alpha = 0.01 =>
this results in no vertical aqua lines, 0 differences, total_error = 0 blocks
if you move the mouse inside the range some bars will show total_error = 1 blocks => total_error <= 1 blocks
- now uncheck Round Difficulty Values flag => some filled aqua areas, 218 differences.
- now set alpha = 1 (use raw source values) instead of 0.01 => lots of filled aqua areas, 871 differences.
although there are many differences this still doesn't affect the total_blocks estimate provided Difficulty offset = 1
Methodology:
To estimate Bitcoin Block Height we need 3 steps, each step has its own version:
- Step 1: Compare QUANDL Difficulty vs Blockchain Difficulty sources and estimate error based on differences
- Step 2: Compare QUANDL Hash Rate vs Blockchain Hash Rate sources and estimate error based on differences
- Step 3: Estimate Bitcoin Block Height (Total Blocks) using different methods in the most accurate way possible
QUANDL doesn't provide block time data, but we can calculate it using the Hash Rate approximation formula:
estimated Hash rate/sec H = 2^32 * D / T, where D - Difficulty, T - block time, sec
1. block time (T) can be derived from the formula, since we already know Difficulty (D) and Hash Rate (H) from QUANDL
2. using block time (T) we can estimate daily blocks as daily time / block time
3. block height (total blocks) = cumulative sum of daily blocks of all bars on the chart (that's why having no gaps is important)
Notes:
- This code uses Pinescript v3 compatibility framework
- hash rate is in THash/s, although QUANDL falsely states in description GHash/s! THash = 1000 GHash
- you can't read files, can only embed/hardcode raw data in script
- both QUANDL and Blockchain sources have no gaps
- QUANDL and Blockchain series are different in the following ways:
- all QUANDL data is already shifted 1 bar into the future, i.e. prev day's value is shown as cur day's value => Blockchain data must be shifted 1 bar forward to match
- all QUANDL diff data > 1 bn (10^12) are truncated and have last 1-2 digits as zeros, unlike Blockchain data => must multiply both values by 0.01 and floor/round the results
- QUANDL sometimes rounds, other times truncates those 1-2 last zero digits to get the 3rd last digit => must use both floor/round
- you can only shift sequences forward into the future (right), not back into the past (left) using positive offset => only Blockchain source can be shifted
- since total_blocks is already a cumulative sum of all prev values on each bar, total_error must be simple delta, can't be also int(cum()) or incremental
- all Blockchain values and total_error are na outside the range - move you mouse cursor on the last bar/inside the range to see them
TLDR, ver 1.0 Conclusion:
QUANDL/Blockchain Difficulty source differences don't affect total blocks estimate, total error <= 1 block with avg 150 blocks/day is negligible
Both QUANDL/Blockchain Difficulty sources are equally valid and can be used in calculations. QUANDL is a relatively good stand in for Blockchain industry standard data.
Links:
QUANDL difficulty source: www.quandl.com
QUANDL hash rate source: www.quandl.com
Blockchain difficulty source (export data as csv): www.blockchain.com
TA Night Bot AlertsThe absolutely most insane indicator for the Cryptoassets
With this script signals for short and long positions are recognized. It still has some false signals during extreme market movements, furthermore it runs best in the 15min & 5min chart. You can increase your risk limit in the settings. The indicator is based on different indicator values.
the indicator is a component of a superordinate algorithm and therefore not perfect.
who would like to test it pm
BTC
ETH
EOS
XRP
IntradaySignal #Trading #Candlestick #SignalThis is a simple version of taking bull and bear positions.
Time Frame: Although the time frame decided while making the script was for 1 minute chart, but after checking, even Daily charts work good.
Asset class: The underlying here, is XAUUSD (GOLD) but confirmatory strong positional trades on stocks for intraday purposes.
Condition: The signals are meaningful and are of significant importance when its in trending pattern and not in sideways pattern.
The signals are presented by the background color. when the color is red, start taking short positions, and when the signal is green, go with long position.
StopLoss: Complete reliance on the script might not be rewarding, Prepare your own stoploss and targets. I advise you to take profit and book losses as per "resistance & support" zones.
[astropark] ALGO Trading V1.2 [alarms]Dear Followers,
today another awesome Swing and Scalping Trading Strategy indicator : the upgraded version of ALGO Trading V1 for Binance Bitcoin PERP on 15m timeframe!
It is runnable on a bot , just write me in order to help you do it.
If you are a scalper or you are a swing trader, you will love suggested entries for fast and long-lasting profit.
Keep in mind that a proper trailing stop strategy and risk management and money management strategies are very important (DM me if you need any clarification on these points).
This strategy has the following options:
enable/disable signals on chart
enable/disable bars and background coloring based on trend
enable/disable a Filter Noise option, which reduces overtrading
enable/disable a Trailing Stop option
enable/disable/config a Take Profit option, with Re-Entry
enable/disable a secret Smart Close Option which may improve profit on your chart (again, check it on you chart if it helps or not)
This strategy only trigger 1 buy (where to start a long trade) or 1 sell (for short trade). If you enable Take Profit / Stop Loss option, consider that many TP can be triggered before trend reversal, so take partial profit on every TP an eventually buy/sell back lower/higher on RE-ENTRY signal to maximize your profit.
This is not the "Holy Grail", so use proper money and risk management strategies.
This indicator will let you set all alerts you need in order to get notified whenever a new signal is triggered.
To check its backtesting, you should use the strategy version, that you can find by searching for "ALGO Trading V1.2" or here below:
You can check out previous ALGO Trading V1 indicator here below:
This is a premium indicator , so send me a private message in order to get access to this script.
Bitcoin Logarithmic Curves OscillatorThis a companion indicator for the Bitcoin Logarithmic Growth Curves indicator.
This is an oscillator version of the above. When the indicator is at / near 1 then Bitcoin price is at / near the upper range of its long-term logarithmic growth trend. When at / near 0 then price is at / near the lower range of that trend.
This indicator only works with the BLX Brave New Coin Index (ticker:BLX) and only on 1 day, 3 day, or 1 week timeframes.
Bitcoin Wallet Transaction Volume (QUANDL:BCHAIN/MWTRV)Simple script that graphically represents the Bitcoin Wallet Transaction Volume .
Blockchain data made available at QUANDL .
Its logic is simple, search the data in the QUANDL database and plot it on the chart.
Advance strategy for trading and scalping for Crypto / Forex Hello traders ,
here i am introducing my strategy with updated features.
It provide signals for entering in the market and signal for exit.
Signal for opening short / sale position is when Price drop bellow the yellow line of the Indicator ( Price action ) and same time the red line of the Indicator Momentum Action is dropping .
Additional confirmation is if the price goes bellow MAMA line as well ( Violet colour on the chart )
For open buy/long position we need to see break over the Price action indicator ( Yellow line ) and same time the red line of Momentum indicator must goes over 0 level of the bottom chart.
The rule currently use 2 bars difference from break of price indicator or break of momentum level 0 , so the indicator will show long/short if the break of both points is within 2 bars .
I can suggest entering on H1 or H3/H4 time frames as on lower frames more noise .
I have added few more filters for more clear signals and higher win rate .
Added are MAMA ( The Mesa Adapter Moving Average by John Ehlers ) and FAMA ( Following Adaptive Moving Average )
Additional filter for monitoring Higher Time Frame Time frame position of the Momentum indicator .
For Example if we are watching basically at H1 time frame we can set HTF Filter Period to monitor 4 hours time frame and once we have same direction signals we will have confirmation . ( Moving Action indicator is same way in H1 and H4 ) .
Alerts can be set once signal appear you can be notified accordingly so you dont miss any trades
As before strongly suggest using Momentum Action Indicator on the chart .
Free trial period 15 days is available for all users who want to try the strategy , please contact me via personal message if you want to receive a trial period or for more information.
Thank you.
HFT Fibonacci Bands Indicator
Default Settings are meant to be used in XBT/USD chart on 15 min time frame. If you want to use for another asset on another time frame YOU MUST CHANGE THE SETTINGS
This is a Fibonacci bands based trading indicator developed by HFT Research. It is a highly customizable indicator and provided endless opportunities to find profitable trades in the market.
Use Fib BB
This is the main decision maker of the strategy. Tuning the settings of this portion of the strategy will change the outcome the most. We have provided default settings. However, they are only good for 15min chart on Bitcoin. Please adjust accordingly.
Fib BB Length: This setting adjusts the middle line of your Fibonacci Bands. It is the moving average that you take it as base for your Fibonacci bands. Default value is currently 20.
Fib Level to Use for Entry: Here, you adjust which one of the Fibonacci Ratio levels you would like to use for your entry. You can only choose one of the following options.
Fibonacci Ratio 1
This is your Fib ratio level 1 and you can put any number here you would like
Fibonacci Ratio 2
This is your Fib ratio level 2 and you can put any number here you would like
Fibonacci Ratio 3
This is your Fib ratio level 3 and you can put any number here you would like
Please keep in mind that Ratio 1 should be higher than Ratio 2 and Ratio 2 should be higher than Ratio 3.
Use RSI
You can also turn on and off the RSI as well. Alternatively, there is an option to use RSI on a different time frame than you are currently on. For example, if you are looking at the 5min chart to use Bollinger bands but you would like to look at the RSI value on the 15min chart. You can do so by selecting the custom RSI timeframe as well as adjusting the Oversold and Overbought value.
Use CCI
Commodity Channel Index is an indicator developed by Donald Lambert. It is a momentum-based oscillator used to help determine when an investment vehicle is reaching conditions of being overbought or oversold. It also used to asses price trend direction and strength. Default settings are usually the safest and the best fit.
Use VWAP
VWAP stands for volume weighted average price. It is an extremely useful indicator when trading intra-day. It does reset every trading session which is at 00:00 UTC. Instead of looking at x number of candles and providing an average price, it will take into consideration volume that’s traded at a certain price and weigh it accordingly.
Use ADX
ADX stands for average directional index. It is an indicator that measures volatility in the market. Unfortunately, the worst market condition for this strategy is sideways market. ADX becomes a useful tool since it can detect trend. If the volatility is low and there is no real price movement, ADX will pick that up and will not let you get in trades during a sideways market. It will allow you to enter trades only when the market is trending.
Use MA Filters
Lookback: It is an option to look back x number of candles to validate the price crossing. If the market is choppy and the price keeps crossing up and down the moving average you have chosen, it will generate a lot of “noisy” signals. This option allows you to confirm the cross by selecting how many candles the price needs to stay above or below the moving average. Setting it 0 will turn it off.
MA Filter Type: There is a selection of moving averages that is available on TradingView currently. You can choose from 14 different moving average types to detect the trend as accurate as possible.
Filter Length: You can select the length of your moving average. Most commonly used length being 50,100 and 200.
Filter Type: This is our propriety smoothing method in order to make the moving averages lag less and influence the way they are calculated slightly. Type 1 being the normal calculation and type 2 being the secret sauce.
Reverse MA Filter: This option allows you to use the moving average in reverse. For example, the strategy will go long when the price is above the moving average. However, if you use the reserve MA Filter, you will go short when the price is above the moving average. This method works best in sideways market where price usually retraces back to the moving average. So, in an anticipation of price reverting back to the moving average, it is a useful piece of option to use during sideway markets.
If you want to get access to this indicator please DM me or visit our website.
TSI CCI Hull with profit$$$$ , Alert versionThis is a modified version of @SeaSide420 TSI CCI Hull with profits exit on long and short order with alert as well
original script :
the strategy script:
/// feel free to edit/improve and comment
Bitcoin Market Capitalization (QUANDL:BCHAIN/MKTCP)Simple script that graphically represents the Bitcoin Market Capitalization
Blockchain data made available at QUANDL .
Its logic is simple, search the data in the QUANDL database and plot it on the chart.
Bitcoin Total Output Volume (QUANDL:BCHAIN/TOUTV)Simple script that graphically represents the total dollar output volume at BITCOIN
Blockchain data made available at QUANDL.
Its logic is simple, search the data in the QUANDL database and plot it on the chart.
Bitcoin Difficulty (QUANDL:BCHAIN/DIFF)Simple script that graphically represents the mining difficulty of BITCOIN .
Blockchain data made available at QUANDL .
Its logic is simple, search the data in the QUANDL database and plot it on the chart.
Moving Average Indicator - TradingSargentThis indicator is based on Hull Moving averages, and works best for signals on the 6 hour and above timeframe with standard settings - as always, fully adjustable from settings...
simple to use as another confirmation on your strategies -
Green = buy
red = sell
DM for access rules
Bitcoin Hash Rate (QUANDL:BCHAIN/HRATE)Simple script that graphically represents the bitcoin hashrate.
Blockchain data made available at QUANDL .
Its logic is simple, search the data in the QUANDL database and plot it in the graph.
Custom TF MoneyFlow Crypto -- TradingSargentcompletely adjustable Money flow indicator - adjust to look at other time frames to save time flicking through the charts.
Using as a standard oscilator, when the MFI plot reaches the bottom, giving a buy signal, and visa versa, at the top..
adjustable length, but i find "14" is best, on the 15minute and 2 hour time frames
SupertrendIndicatorSupertrend (13,2.5) & Supertrend (18,3) are best for intraday.
Loving the signals.
Horus RSI Stoch BTC - SPX EMA SpreadHello Traders,
Horus RSI Stoch BTC - SPX EMA Spread is an oscillator based on BITSTAMP:BTC and the SPX500USD EMA spread and may indicate Bitcoin oversold / overbought conditions compared to SPX. You can also setup an other time frame.
How it works?
- Like an RSI but only for BTC
- Setup any time frame you want
- Display Stochastic
- Display StochRSI
- Display Crosses for potential breakout / breakdown
If its indicated overbought, this does not mean it can't go higher. Same the other way around.
Use other indicators and PA for more confluence.
Wuuzzaa
Market Trading Tools - Buy Sell SystemOur Buy Sell System indicator generally works on a modified version of the ATR ( Average True Range ) formula. The Buy Sell System is a trading method that generates Buy and Sell signals when conditions are met. These conditions include Exponential Moving Averages, ATR and depends on price action as well. Our indicator also shows a green/red background that indicates the trend on a chosen time frame.
** Our Indicator does not repaint.
** It can be used on any financial market; crypto, stocks or forex. We also encourage using time frames as the 15 minutes and above. The use of a higher than 4hr time frame requires special settings and once you have access to it, you can change the parameters as you want. We have enabled our users to freely use the settings as they wish and to their on discretionary.
Once you are granted access to use it, add it from going into the scripts >> invite only scripts >> enable the indicator. Once the indicator is added to your chart you will see the indicator popping up on your chart.
We are happy to announce that our trading indicator is special and unique from different ones because it firstly eliminates noise coming out from an average ATR indicator. We believe we are providing a service second to none and we are happy with our product.We believe that we have not seen a similar indicator, and we are proud of our work and we will continue updating the indicator when we believe it is necessary according to market changes. We have also enabled a function for our users to get a better view of the trend when they add the indicator to their chart. You can now view the trend background color (red&green) depending on if the price is above the EMA of your choice. you can also check whichever time interval you want that does not limit you to the time interval chosen on your chart itself.
Hope you enjoy it, Good luck and stay safe!
** If you are interested in this indicator. please use the link below to obtain access to this indicator
Market Trading Tools - Trend ReversalsOur Trend Reversals indicator is there to notify you when a trend reversal (depending on your time frame) might occur.
Trend Reversals will signal a cross shape signal (X), that will be in red when a downfall might happen and will be in green when a movement up is about or might happen. The indicator algorithm is based on 3 indicators, when these three intersect, the signal will be fired once the condition is met.
** Our Indicator does not repaint.
** It can be used on any financial market; crypto, stocks or forex. We also encourage using time frames as the 15 minutes and above. The use of a higher than 4hr time frame requires special settings and once you have access to it, you can change the parameters as you want. We have enabled our users to freely use the settings as they wish and to their own discretion.
Once you are granted access to use it, add it from going into the scripts >> invite only scripts >> enable the indicator. Once the indicator is added to your chart you will see the indicator popping up on your chart.
We believe that we have not seen a similar indicator, and we are proud of our work and we will continue updating the indicator when we believe it is necessary according to market changes. We have also enabled a function for our users to get a better view of the trend when they add the indicator to their chart. You can now view the trend background color (red&green) depending on if the price is above the EMA of your choice. you can also check whichever time interval you want that does not limit you to the time interval chosen on your chart itself.
Hope you enjoy it, Good luck and stay safe!
** If you are interested in this indicator. please use the link below to obtain access to this indicator