Indicators Archives » DepthHouse Trading Indicators https://depthhouse.com/category/indicators/ Professional Trading Indicators Made for the TradingView Platform Thu, 28 Nov 2019 00:48:33 +0000 en-US hourly 1 https://depthhouse.com/wp-content/uploads/2018/04/cropped-LGT3a-32x32.png Indicators Archives » DepthHouse Trading Indicators https://depthhouse.com/category/indicators/ 32 32 DepthHouse Peak Momentum is now LIVE! https://depthhouse.com/depthhouse-peak-momentum-is-now-live/ Thu, 28 Nov 2019 00:48:33 +0000 https://depthhouse.com/?p=2662 DepthHouse – Peak Divergence indicator uses the linear regression calculation to help determine and plot peak momentum points throughout financial markets. Peak levels are then displayed by either red or green lines above or below the candle. Red lines above the candles represent a peaks in bearish momentum while Green lines below represent peaks in bullish momentum. These levels are a

The post DepthHouse Peak Momentum is now LIVE! appeared first on DepthHouse Trading Indicators.

]]>

DepthHouse – Peak Divergence indicator uses the linear regression calculation to help determine and plot peak momentum points throughout financial markets.

Peak levels are then displayed by either red or green lines above or below the candle.

Red lines above the candles represent a peaks in bearish momentum while Green lines below represent peaks in bullish momentum. These levels are a great tool to help support intermittent tops and bottoms along with possible support and resistance.

The projected peak levels are then used to determine momentum divergence in the market.
IF momentum divergence is present the bars colors will change represent either bull or bear divergence.

Important Notes:
If the price crosses a peak line and the bar color does not change; it means momentum has increased/decreased with the price and the divergence has been canceled.
If divergence is present, and then the following candle is not colored then momentum has increased to cancel the previously present divergence.

click here to view the product page

The post DepthHouse Peak Momentum is now LIVE! appeared first on DepthHouse Trading Indicators.

]]>
How to Add Custom Indicators to your TradingView Chart https://depthhouse.com/how-to-add-custom-indicators-to-your-tradingview-chart/ Sun, 27 Oct 2019 23:56:03 +0000 https://depthhouse.com/?p=2607 Adding custom indicators to your TradingView chart can be tricky if you are unfamiliar with the platform. Below is a brief tutorial on the couple ways you can add custom indicators to your chart on TradingView.

The post How to Add Custom Indicators to your TradingView Chart appeared first on DepthHouse Trading Indicators.

]]>

Adding custom indicators to your TradingView chart can be tricky if you are unfamiliar with the platform. Below is a brief tutorial on the couple ways you can add custom indicators to your chart on TradingView.

The post How to Add Custom Indicators to your TradingView Chart appeared first on DepthHouse Trading Indicators.

]]>
Volume Flow Indicator https://depthhouse.com/volume-flow-indicator/ Thu, 22 Aug 2019 16:06:56 +0000 https://depthhouse.com/?p=2307 DepthHouse Volume Flow indicator is used to help determine trend direction strictly based on Negative and Positive volume data. How to Read:  - Moving Average crossovers are used to help determine a possible trend change or retracement. - The area cloud on the bottom is calculated by the difference of the moving averages. This could be used to

The post Volume Flow Indicator appeared first on DepthHouse Trading Indicators.

]]>

DepthHouse Volume Flow indicator is used to help determine trend direction strictly based on Negative and Positive volume data.

How to Read: 
– Moving Average crossovers are used to help determine a possible trend change or retracement.
– The area cloud on the bottom is calculated by the difference of the moving averages. This could be used to help determine the trending volume strength.
– Bright colored volume bars are large volume spikes calculated by the x factor in the options.

Other changes: 
– DepthHouse is going open source with numerous of its indicators. This is only one of many!
– Volume is now displayed without being altered for calculations.

Click here to see original post on TradingView

Source Code:

//@version=4
//DepthHouse Trading Indicators
// by oh92
study(“Volume Flow v3″, shorttitle=”Volume Flow [DepthHouse]”)

maType = input(title=”Moving Average Type”, options=[“Simple”, “Exponential”, “Double Exponential”], defval=”Simple”)
length = input(14, title=”MA Length”)
x = input(3.1, title=”Factor For Breakout Candle”)

//////////////////////////
// oh92 favorite colors //
//////////////////////////
red = #FF510D //#ff848a // #FA8072 // #323433 // #ff848a
green = #5AA650 // #8cffe5 // #6DC066 // #80aebd // #8cffe5

// Basic Volume Calcs //
vol = volume
bull = close>open?vol:0
bear = open>close?vol:0

// Double EMA Function //
dema(src, len) => (2 * ema(src, len) – ema(ema(src, len), len))

// BEAR Moving Average Calculation
bullma = maType == “Exponential” ? ema(bull, length) :
maType == “Double Exponential” ? dema(bull, length) :
sma(bull, length)

// BEAR Moving Average Calculation //
bearma = maType == “Exponential” ? ema(bear, length) :
maType == “Double Exponential” ? dema(bear, length) :
sma(bear, length)

// ma dif //
vf_dif = bullma-bearma
vf_absolute = vf_dif > 0 ? vf_dif : vf_dif * (-1)

// Volume Spikes //
gsig=crossover(bull, bullma*x)?vol:na
rsig=crossover(bear, bearma*x)?vol:na

// Color Calcs //
vdClr = vf_dif > 0 ? green : red
vClr=close>open?green:red

// Plots //
plot(vol, color=vClr, style=plot.style_columns, transp=80, title=”Volume”)
plot(bullma*2, color=green, linewidth=1, transp=0, title=”Bull MA”)
plot(bearma*2, color=red, linewidth=1, transp=0, title=”Bear MA”)

plot(gsig, style=plot.style_columns, transp=50, color=green, title=”Bull Vol Spike”)
plot(rsig, style=plot.style_columns, transp=50, color=red, title=”Bear Vol Spike”)

plot(vf_absolute/2.5, style=plot.style_area, color=vdClr, title=”Difference Value”)

The post Volume Flow Indicator appeared first on DepthHouse Trading Indicators.

]]>
Volume Weighted Support & Resistance Update https://depthhouse.com/volume-weighted-support-resistance-update/ Fri, 09 Aug 2019 16:47:56 +0000 https://depthhouse.com/?p=2278 DepthHouse Volume Weighted Support and Resistance or VWSP uses advanced volume calculations to determine possible levels of support and resistance . Aug 9 Release Notes: new advanced calculation to determine S/R levels added multiple time frame capabilities

The post Volume Weighted Support & Resistance Update appeared first on DepthHouse Trading Indicators.

]]>
DepthHouse Volume Weighted Support and Resistance or VWSP uses advanced volume calculations to determine possible levels of support and resistance .

Aug 9 Release Notes:

  • new advanced calculation to determine S/R levels
  • added multiple time frame capabilities

The post Volume Weighted Support & Resistance Update appeared first on DepthHouse Trading Indicators.

]]>
CME Gap Finder for Bitcoin https://depthhouse.com/cme-gap-finder-for-bitcoin/ Wed, 19 Jun 2019 16:10:53 +0000 https://depthhouse.com/?p=2310 The CME Gap Finder is an indicator for the TradingView platform that locates weekly gaps created by the CME Futures market for Bitcoin . As you can see, Bitcoin tends to close the weekly gaps created in the futures market so I thought this could be a very useful tool. Instead of having to look between multiple charts, this simply overlays the

The post CME Gap Finder for Bitcoin appeared first on DepthHouse Trading Indicators.

]]>

The CME Gap Finder is an indicator for the TradingView platform that locates weekly gaps created by the CME Futures market for Bitcoin .
As you can see, Bitcoin tends to close the weekly gaps created in the futures market so I thought this could be a very useful tool.
Instead of having to look between multiple charts, this simply overlays the past weeks open and close should a gap appear.

Source Code:

//@version=2
//by oh92 [DepthHouse Indicators]
//Version 2 is used because V3 causes lag in gap display – would love to update this at a future date
//Weekly Gap Display for the Bitcoin CME Futures market

study(title=”CME Gap Finder – Bitcoin”, overlay=true)

//Criteria using Weekly Sessions
cwo = security(‘CME:BTC1!’, ‘W’, open)
pwc = security(‘CME:BTC1!’, ‘W’, close[1])
pwh = security(‘CME:BTC1!’, ‘W’, high[1])
pwl = security(‘CME:BTC1!’, ‘W’, low[1])

gap_up = cwo > pwh ? 1 : 0

gap_up_open = gap_up == 1 ? cwo : na
gap_up_close = gap_up == 1 ? pwc : na

gap_down = cwo < pwl ? 1 : 0

gap_down_open = gap_down == 1 ? cwo : na
gap_down_close = gap_down == 1 ? pwc : na

////OH92’s FAVORITE COLORS////
g = #8cffe5
r = #ff848a
gg = #adff75
rr = #ff80be

p1 = plot(gap_up_open, title=”Gap Up – Weekly Open”, style=circles, linewidth=2, color=g)
p2 = plot(gap_up_close, title=”Gap Up – Last Weeks Close”, style=circles, linewidth=2, color=g)
fill(p1, p2, color=g, transp=70, title=”Gap Up Fill”)

p3 = plot(gap_down_open, title=”Gap Down – Weekly Open”, style=circles, linewidth=2, color=r)
p4 = plot(gap_down_close, title=”Gap Down – Last Weeks Close”, style=circles, linewidth=2, color=r)
fill(p3, p4, color=rr, transp=85, title=”Gap Down Fill”)

The post CME Gap Finder for Bitcoin appeared first on DepthHouse Trading Indicators.

]]>
DepthHouse Peak Momentum BETA is now live! https://depthhouse.com/depthhouse-peak-momentum-beta/ Fri, 21 Sep 2018 13:49:55 +0000 https://depthhouse.com/?p=1716 For the next 30 days people enjoy the DepthHouse Peak Momentum Indicator for FREE! To participate you can either comment on the original post on TradingView, message oh92 directly on TradingView, or simply request a Free Trial here on the DepthHouse site. DepthHouse Peak Momentum Oscillator uses advance calculations of linear regression to help determine price momentum and

The post DepthHouse Peak Momentum BETA is now live! appeared first on DepthHouse Trading Indicators.

]]>
For the next 30 days people enjoy the DepthHouse Peak Momentum Indicator for FREE!

To participate you can either comment on the original post on TradingView, message oh92 directly on TradingView, or simply request a Free Trial here on the DepthHouse site.

DepthHouse Peak Momentum Oscillator uses advance calculations of linear regression to help determine price momentum and momentum peaks.

How to read it:
The least opaque columns represent general momentum direction.
When these columns are above the zero line, generally there is more bullish momentum in the market.
When they are below the zero line, generally there is more bearish momentum in the market.
When these columns turn white, it means the price could be losing its bullish or bearish momentum.

The more transparent columns in the background represent the lead band, which reacts faster than the general momentum columns.
This could be used to as a leading indication of where the market could be heading.

Swap Momentum Bands option:
This option removes the white columns from the general momentum histogram and in turn only gives signals when strong momentum is present.

 

**Free BETA Expires Oct. 21 2018**

The post DepthHouse Peak Momentum BETA is now live! appeared first on DepthHouse Trading Indicators.

]]>
Bitcoin Momentum Oscillator with Backtest Capabilities https://depthhouse.com/bitcoin-momentum-oscillator-with-backtest-features/ Thu, 24 May 2018 15:04:24 +0000 https://depthhouse.com/?p=1430 NOTE: Only Works on BTC. All testing was done on 1hr Timeframe. Past performance Is no guarantee of future results. This is a experimental indicator - use at your own risk.  DepthHouse BTC Momentum Oscillator is an advanced tool to help determine Bitcoin Market Momentum. The separate back test script which is included with a

The post Bitcoin Momentum Oscillator with Backtest Capabilities appeared first on DepthHouse Trading Indicators.

]]>
NOTE: Only Works on BTC.
All testing was done on 1hr Timeframe.
Past performance Is no guarantee of future results.
This is a experimental indicator – use at your own risk. 

DepthHouse BTC Momentum Oscillator is an advanced tool to help determine Bitcoin Market Momentum.
The separate back test script which is included with a subscription to the BTC MO is designed to aid traders in finding the best indicators settings to match their trading style.

—BTC MO SIgnals—
Signal Line: Generally, if the Signal Line is greater than 0, then there is more bullish momentum in the market
Tops & Bottoms: Signals used to help spot where BTC 0.51% momentum may have topped or bottomed out
Possible Divergences: Used to help spot possible reversals on continuous trends

—oh92’s Preset Setting—
Scalper: (20,11,17,6) Very reactive settings that I use while day trading. However, faster settings generally increase the chance of false signals(20,11,17,6)
Swing Trader: (5,25,55,10) Greatly reduces noise for my longer time trades. Generally makes ‘tops’ and ‘bottoms’ more accurate. Which can be a huge advantsge in spoting an earnly trend reversal
Custom: Allows user adjustments of all settings

—Built-in-Alerts—

  • Tops
  • Bottoms
  • Bearish Divergences
  • Bullish Divergences
  • Signal Line Crossovers

Link to the original TradingView Script posts:

The post Bitcoin Momentum Oscillator with Backtest Capabilities appeared first on DepthHouse Trading Indicators.

]]>
DepthHouse Volume Flow Indicator https://depthhouse.com/depthhouse-volume-flow-indicator/ Tue, 03 Apr 2018 01:42:54 +0000 http://depthhouse.com/?p=1035 DepthHouse Volume Flow Indicator The DepthHouse Volume Flow Indicator is used to help determine trend direction, and possible reverals with calculations strictly based off of volume data. A crossover of the moving averages is a possible signal for a trend change or retracement. Trendlines may be drawn on the histogram, and moving averages to help spot

The post DepthHouse Volume Flow Indicator appeared first on DepthHouse Trading Indicators.

]]>

DepthHouse Volume Flow Indicator

The DepthHouse Volume Flow Indicator is used to help determine trend direction, and possible reverals with calculations strictly based off of volume data.

A crossover of the moving averages is a possible signal for a trend change or retracement.

Trendlines may be drawn on the histogram, and moving averages to help spot possible breakouts, and/or divergences even sooner.

DepthHouse Volume Flow Indicator

Changelog from version 1: 
Completely altered based calculation of moving averages.
Removed the standard volume bar option and the volume overflow option.
Replaced the options above with the histogram volume bars. 

click here to be redirected to the indicator page.

DepthHouse

The post DepthHouse Volume Flow Indicator appeared first on DepthHouse Trading Indicators.

]]>