Tìm cơ hội cược BO với Trend line

Tìm cơ hội cược BO với Trend line

Tìm cơ hội cược BO với Trend line
list macro hôm nay thê nào bác hjhj có đẹp như mọi hôm k ta keke:D
cặp EU hôm nay e 1 4
List Bo - Bar M15 Signal ngày 4/2/2020 EJ IDC M15, 6w-4l = hòa vốn, keke, vẫn chờ 1 list đẹp như thứ 6 tuần trước :D
chrome_DKNwsqBW2s.png
 
 
Vẫn là những cú bắt đỉnh bắt đáy cực chất của Bar M15 Signal, nhưng payout của EJ trong phiên Á tốt hơn EU nhiều, tỷ số hôm nay đang là 3w-1l, hy vọng tối có list đẹp khoe anh em :)
IMG_20200205_091712.jpg
 
 
tối đến giờ chạy con signal này nè, cháy trên từng ngọn nến luôn :D
Mã:
//@version=4
//BO - Bar M15 1/3 Signal
//author: anhnguyen14
study(title="BO - Bar M15 1/3 Signal", overlay=false)
hline1=hline(25)
hline0=hline(0)
// Calculate hours, minutes, and seconds till close
timeLeft = barstate.isrealtime ?
     (time_close - timenow) / 1000 :
     na

hoursLeft   = floor(timeLeft / 3600)
minutesLeft = floor((timeLeft % 3600) / 60)
secondsLeft = timeLeft % 60

//============================================\\
//Delay 5': wait for prices setup temporary peak and bottom
sig_time=minutesLeft<=10? true:false

//Signal: Reversal previous bar's direction
x1 =
       sig_time==true
       and close<open


y1 =
       sig_time==true
       and close>open

//Signal
xTech=
       x1
      
      

yTech=
       y1
      
      
//--------------------------------------\\
// - /FUNCTIONS

//--------------------------------------\\
//Plot Analyzing Signals
//sig_columns_col=color.new(color.silver,0)
//label_sig20 = label.new(bar_index[0], 20, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig20[1])
//label_sig30 = label.new(bar_index[0], 30, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig30[1])
//label_sig40 = label.new(bar_index[0], 40, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig40[1])
//label_sig50 = label.new(bar_index[0], 50, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig50[1])
//label_sig60 = label.new(bar_index[0], 60, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig60[1])
//label_sig70 = label.new(bar_index[0], 70, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig70[1])
//label_sig80 = label.new(bar_index[0], 80, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig80[1])

sigtext=x1?"Put signal":y1?"Call signal":"Analyzing Signals"
sig_col=xTech?color.new(color.red,0):yTech?color.new(color.blue,0):color.new(color.navy,0)
label_sig_text = label.new(bar_index[0], 8, text=sigtext, style=label.style_none, textcolor=sig_col, size=size.large)
label.delete(label_sig_text[1])

//sig_val_m=80-secondsLeft
//label_sig_m = label.new(bar_index[0], sig_val_m, style=label.style_triangleup, color=sig_col, size=size.tiny)
//label.delete(label_sig_m[1])

//sig_val_p=secondsLeft+20
//label_sig_p = label.new(bar_index[0], sig_val_p, style=label.style_triangledown, color=sig_col, size=size.tiny)
//label.delete(label_sig_p[1])

//plot Signal
putcol = xTech? color.red : na
callcol = yTech? color.blue : na
PutSignal= xTech?-100:na
CallSignal= yTech?-100:na
hsignalm1=hline(-100)
plot(PutSignal, title='Put Signal', style=plot.style_columns, color=color.red, offset=0, transp=0, show_last=1)
plot(CallSignal, title='Call Signal', style=plot.style_columns, color=color.blue, offset=0, transp=0, show_last=1)
plotshape(PutSignal, title='Put', text="Put", style=shape.labeldown, location=location.bottom, color=color.orange, textcolor=color.black, offset=0, transp=0, show_last=1)
plotshape(CallSignal, title='Call', text="Call", style=shape.labelup, location=location.bottom, color=color.orange, textcolor=color.black, offset=0, transp=0, show_last=1)

// Alert
mms1="Signal alert"
mms2="Put alert"
mms3="Call alert"
PutAlert=
       (xTech)
      
CallAlert=
       (yTech)
      

alertcondition(PutAlert or CallAlert, title="Signal alert", message=mms1)
alertcondition(PutAlert, title="Put alert", message=mms2)
alertcondition(CallAlert, title="Call alert", message=mms3)

//EOF
===List, macro vẫn kiểm tra khi nến M15 cháy đc 5' và đáo hạn khi nến M15 cháy hết, 15' macro kiểm tra nến 1 lần :D
chrome_gsZZRg4IBJ.png
 
 
tối đến giờ chạy con signal này nè, cháy trên từng ngọn nến luôn :D
Mã:
//@version=4
//BO - Bar M15 1/3 Signal
//author: anhnguyen14
study(title="BO - Bar M15 1/3 Signal", overlay=false)
hline1=hline(25)
hline0=hline(0)
// Calculate hours, minutes, and seconds till close
timeLeft = barstate.isrealtime ?
     (time_close - timenow) / 1000 :
     na

hoursLeft   = floor(timeLeft / 3600)
minutesLeft = floor((timeLeft % 3600) / 60)
secondsLeft = timeLeft % 60

//============================================\\
//Delay 5': wait for prices setup temporary peak and bottom
sig_time=minutesLeft<=10? true:false

//Signal: Reversal previous bar's direction
x1 =
       sig_time==true
       and close<open


y1 =
       sig_time==true
       and close>open

//Signal
xTech=
       x1
     
     

yTech=
       y1
     
     
//--------------------------------------\\
// - /FUNCTIONS

//--------------------------------------\\
//Plot Analyzing Signals
//sig_columns_col=color.new(color.silver,0)
//label_sig20 = label.new(bar_index[0], 20, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig20[1])
//label_sig30 = label.new(bar_index[0], 30, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig30[1])
//label_sig40 = label.new(bar_index[0], 40, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig40[1])
//label_sig50 = label.new(bar_index[0], 50, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig50[1])
//label_sig60 = label.new(bar_index[0], 60, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig60[1])
//label_sig70 = label.new(bar_index[0], 70, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig70[1])
//label_sig80 = label.new(bar_index[0], 80, style=label.style_square, color=sig_columns_col)
//label.delete(label_sig80[1])

sigtext=x1?"Put signal":y1?"Call signal":"Analyzing Signals"
sig_col=xTech?color.new(color.red,0):yTech?color.new(color.blue,0):color.new(color.navy,0)
label_sig_text = label.new(bar_index[0], 8, text=sigtext, style=label.style_none, textcolor=sig_col, size=size.large)
label.delete(label_sig_text[1])

//sig_val_m=80-secondsLeft
//label_sig_m = label.new(bar_index[0], sig_val_m, style=label.style_triangleup, color=sig_col, size=size.tiny)
//label.delete(label_sig_m[1])

//sig_val_p=secondsLeft+20
//label_sig_p = label.new(bar_index[0], sig_val_p, style=label.style_triangledown, color=sig_col, size=size.tiny)
//label.delete(label_sig_p[1])

//plot Signal
putcol = xTech? color.red : na
callcol = yTech? color.blue : na
PutSignal= xTech?-100:na
CallSignal= yTech?-100:na
hsignalm1=hline(-100)
plot(PutSignal, title='Put Signal', style=plot.style_columns, color=color.red, offset=0, transp=0, show_last=1)
plot(CallSignal, title='Call Signal', style=plot.style_columns, color=color.blue, offset=0, transp=0, show_last=1)
plotshape(PutSignal, title='Put', text="Put", style=shape.labeldown, location=location.bottom, color=color.orange, textcolor=color.black, offset=0, transp=0, show_last=1)
plotshape(CallSignal, title='Call', text="Call", style=shape.labelup, location=location.bottom, color=color.orange, textcolor=color.black, offset=0, transp=0, show_last=1)

// Alert
mms1="Signal alert"
mms2="Put alert"
mms3="Call alert"
PutAlert=
       (xTech)
     
CallAlert=
       (yTech)
     

alertcondition(PutAlert or CallAlert, title="Signal alert", message=mms1)
alertcondition(PutAlert, title="Put alert", message=mms2)
alertcondition(CallAlert, title="Call alert", message=mms3)

//EOF
===List, macro vẫn kiểm tra khi nến M15 cháy đc 5' và đáo hạn khi nến M15 cháy hết, 15' macro kiểm tra nến 1 lần :D
chrome_gsZZRg4IBJ.png
winrate cao thê bác keke. nếu chạy cái này phai đặt stop loss take profit trước bác nhỉ :D
 
 

BÌNH LUẬN MỚI NHẤT

AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

Back
Bên trên

Miễn trừ trách nhiệm

Tất cả nội dung trên website này đều vì mục đích cung cấp thông tin và không phải lời khuyên đầu tư.

Tại Việt Nam, giao dịch CFD forex có các rủi ro nhất định, trong đó bao gồm rủi ro về pháp lý. Độc giả nên tìm hiểu kỹ trước khi đưa ra quyết định tham gia.