Free Indicators Archives » DepthHouse Trading Indicators https://depthhouse.com/category/indicators/free-indicators/ Professional Trading Indicators Made for the TradingView Platform Mon, 26 Aug 2019 16:22:14 +0000 en-US hourly 1 https://depthhouse.com/wp-content/uploads/2018/04/cropped-LGT3a-32x32.png Free Indicators Archives » DepthHouse Trading Indicators https://depthhouse.com/category/indicators/free-indicators/ 32 32 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.

]]>
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 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.

]]>