Try this one.
Attached File(s)
Live Renko charts on MT4 and EAs? Is it possible? 7 replies
RENKO Trading SYSTEM - RENKO Indicators 7 replies
New Renko Bar and Reversal Renko Bar Indicator Alert Help Please 5 replies
Looking for RENKO Indicator for live Chart? 1 reply
Renko SFS 2013 - A live test 31 replies
DislikedProblem Solved! I lifted code from watube to try another approach. The problem appears to be that you cannot OrderSend() a TP and SL you have to send a naked order and then modify. kind of like this: ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,5,0,0,0,0,0,CLR_NONE); if(ticket<1) { error=GetLastError(); Print("Error = ",ErrorDescription(error)); } else { OrderSelect(ticket,SELECT_BY_TICKET); OrderModify(ticket,OrderOpenPrice(),Bid - SL * Point, Ask + TP * Point,0); OrderPrint();...Ignored