TradingView
pipizer
2016年12月1日午後1時58分

Binary_Blast Pipizer 

Euro Fx/U.S. DollarFXCM

詳細

Call or Put this is simple Binary Indicator.
Expiry 2 candles after signal.
コメント
pavelstep1983
Why now is no signals long time? is it "no repaint" ?? can we use another tf and another pair's for example gbp-usd. I think it more better to use expiraton 5 min TF m1
edgar.alonso.arellano
how can i add this to my chart?
pipizer
@edgar.alonso.arellano, Search for indicator in your chart in indicators with the keyword "Binary_Blast Pipizer"
nnld218
hi, can i have script for modify ?
pipizer
@nnld218, Check PM
mostafaelbialy2070
bro is it repaint ?
andy_bart
your script doesn't seem to load onto the chart...?
pipizer
@andy_bart, I have copied code in the comment section and you can try my new Binary Option script this one generates less signals new one is better.
chipsy5
Is there a way to add a signal to this indicator?
pipizer
I have accidentally clicked on protected script people who are seeking for code of this script is as under :-

//@version=2
study("Binary_Blast Pipizer", overlay=true)



//Minor Trend
mTrend = (close[8]-open[8]) +(close[7]-open[7])+(close[6]-open[6])+(close[5]-open[5])+(close[5]-open[5])+(close[4]-open[4])+(close[3]-open[3])+(close[2]-open[2])



x = high > high[1] and low < low[1] and close [1] < close and open > open[1] and (close[2]-open[2]) < 0 and (close - open) > 0 and high < high[2] and (close[1] - open[1]) >= 0 and (close[3]-open[3]) < 0 and mTrend < 0

y = high > high[1] and low < low[1] and close [1] > close and open < open[1] and (close[2]-open[2]) > 0 and (close - open) < 0 and low > low[2] and (close[1] - open[1]) <= 0 and (close[3]-open[3]) > 0 and mTrend > 0


CadThird = abs(close[2]-open[2])
cadSec = abs(close[1]-open[1])



xx = high[2] < high[1] and low[2] > low[1] and (close[1]-open[1]) > 0 and close[1] < high[2] and (close-open) > 0 and cadSec < CadThird and high[1] > close and mTrend < 0
yy = high[2] < high[1] and low[2] > low[1] and (close[1]-open[1]) > 0 and close[1] > low[2] and (close-open) < 0 and cadSec < CadThird and low[1] < close and mTrend > 0


body = abs(close[1]-open[1])
upshadow = open[1]>close[1]?(high[1]-open[1]):(high[1]-close[1])
downshadow = open[1]>close[1]?(close[1]-low[1]):(open[1]-low[1])
pinbar_h = close[2]>open[2]?(body[2]>body?(upshadow>2.5*body?(upshadow>2*downshadow?1:0):0):0):0
pinbar_l = open[2]>close[2]?(body[2]>body?(downshadow>2.5*body?(downshadow>2*upshadow?1:0):0):0):0

xy = pinbar_l and low[2] > low[1] and (close-open) > 0 and mTrend < 0

yx = pinbar_h and high[2] < high[1] and (close-open) < 0 and mTrend > 0

plotchar(y,text="Put",char="",color=red)
plotchar(x,text="Call",char="",color=lime,location=location.belowbar)

plotshape(x, style= shape.triangleup, color = lime, location = location.belowbar)
plotshape(y, style= shape.triangledown, color = red, location = location.abovebar)

plotchar(yy,text="Put",char="",color=red)
plotchar(xx,text="Call",char="",color=lime,location=location.belowbar)

plotshape(xy, style= shape.triangleup, color = lime, location = location.belowbar)
plotshape(yx, style= shape.triangledown, color = red, location = location.abovebar)

plotchar(yx,text="Put",char="",color=red)
plotchar(xy,text="Call",char="",color=lime,location=location.belowbar)

plotshape(xx, style= shape.triangleup, color = lime, location = location.belowbar)
plotshape(yy, style= shape.triangledown, color = red, location = location.abovebar)

詳細