TradingView
pipizer
4 дек 2016 г., 16:38

Binary Blast v2 Pipizer 

Euro Fx/U.S. DollarFXCM

Описание

1 bar strategy after the signal bar closes. Maximum consecutive loses 5 found in back test!
Комментарии
LCMabizela
how does it work?
pipizer
@LCMabizela, It works on highly oversold scenarios better to be used in choppy markets!
imranbalouch942
Very impressive
pipizer
Note: Please edit script at line 36 there is an error change "EMA = out1" to "EMA = out2"

Instructions to avoid failure!




Script is below:



//@version=2
study("My Script", overlay=true)


len = input(3, minval=1, title="Length")
src = input(high, title="Source")
out = ema(src, len)
HIGH = out

len1 = input(3, minval=1, title="Length")
src1 = input(low, title="Source")
out1 = ema(src1, len1)
LOW = out1


HL2 = (HIGH+LOW)/2

len2 = input(15, minval=1, title="Length")
src2 = input(close, title="Source")
out2 = ema(src2, len2)
EMA = out2

x = HIGH<HL2[1] and LOW<HL2[1]
y=HIGH>HL2[1] and LOW>HL2[1]



plotshape(x, style=shape.cross,location=location.abovebar, color=yellow)
plotshape(y, style=shape.cross,location=location.belowbar, color=yellow)


Sigep1901dl
@pipizer, I put in the script for the crosses exactly as you wrote it, but they're not showing up. When I add the cross script to the chart, no errors pop up; it just doesn't show any crosses. I'm trying to use this on hourly charts. Think that may be an issue? Any idea on how to fix it? From the pic you posted, it looks like the crosses would really help to filter out bad trades, so I'd really like to get the script working. Thanks in advance!
pipizer
@Sigep1901dl, I have published this script with name "EMA strong trend".
importantProfi14978
Добрый день ! Где можно скачать индикатор Binary Blast v2. Напишите пожалуйста на почту 786utemis@mail.ru
extremetrinidad
Excellent signals
ReeseJohnson
high this looks impressive does it repaint once you come off the chart then look back on it. ?
pipizer
@ReeseJohnson, Nah! let the current candle close where you find signal!
Ещё