How can I change EA TP and SL to invisible so my broker don't know where these levels are?
thanks
thanks
Looking for EA Manage order with Invisible SL less than 5 pips 6 replies
Looking for a trade management ea that is invisible to brokers.... 2 replies
Invisible Indicator Color 3 replies
DislikedThere is no such thing as \"Invisible SL/TP\" unless you are referring to
\"Mental SL/TP\" in which case, you simply manually CLOSE the position once your exit prices are met/reachedIgnored
DislikedHow can I change EA TP and SL to invisible so my broker don't know where these levels are?
thanksIgnored
extern int Stop_Loss = 20; extern int Take_Profit = 20; if (OrderSelect(ticket,SELECT_BY_TICKET)==true) { double OpenPrice = OrderOpenPrice(); if ((Bid <= OpenPrice - Stop_Loss*Point) || (Bid >= OpenPrice + Take_Profit*Point)) { OrderClose();//Your OrderClose Function Here// } }