Volume Stops

Category: Indicators By: bolsatrilera Created: April 12, 2017, 10:51 AM
April 12, 2017, 10:51 AM
Indicators
6 Comments

Adaptation for the indicator platform Prorealtime v10.3 created by Gqman for the Tradingview platform.

Volume Stops is based on the increase or decrease of volume in relation to the opening and closing of the last 3 bars or candles.

Blue candles are bullish signs.

Black candles are bearish signs.

The Stop Loss is placed in the opening of the candle and is not made effective until a closing takes place piercing that level.

The openings are used as supports / resistances.

 

REM VOLUME STOPS
//código original para la plataforma Tradingview por Gqman
//adaptación para la plataforma Prorealtime v10.3


redbar=open>=close
greenbar=open<=close
long1=volume[2]<volume[1] and volume[1]<volume[0] and redbar[2] and redbar[1] and greenbar[0]
short1=volume[2]<volume[1] and volume[1]<volume[0] and greenbar[2] and greenbar[1] and redbar[0]
long2=volume[2]>volume[1] and volume[1]>volume[0] and redbar[2] and redbar[1] and greenbar[0]
short2=volume[2]>volume[2] and volume[1]>volume[0] and greenbar[2] and greenbar[1] and redbar[0]

if long1 or long2 then
drawcandle (open,high,low,close) coloured (0,0,255) bordercolor (0,0,0)
elsif short1 or short2 then
drawcandle (open,high,low,close) coloured (0,0,0) bordercolor (0,0,0)
endif

return

Download
Filename: volume-stops.itf
Downloads: 615
bolsatrilera Master
Operating in the shadows, I hack problems one by one. My bio is currently encrypted by a complex algorithm. Decryption underway...
Author’s Profile

Comments

Logo Logo
Loading...