AUTO TP EA

 
Good day, Any information on an EA on auto tp and sl with automatic profit taking by specifying price (bid/ ask). Most auto tp EA work with points. I'm looking for one with price.

More Info : I'd  like to revamp my trading plan with an auto tp EA which modifies pending and open orders by Price instead leaving me to open daily orders at will with daily estimates

Example 
Buy Orders
Value tp : 1.1596
Value tp : 1.1486

Therefore any order for the day without existing tp will be automatically edited. 

Any idea of an existing EA or how to program this on the MetaEditor will be highly appreciated 
 

You can create variable  Buytp=1.1596 and Selltp=1.1486 and make  if OrdersTotal()>0  For BuyOrderModify= if(buyticket>0)OrderModify(buyticket,OrderOpenPrice(),BSL,Buytp,0,CLR_NONE);

and for sell orderModify= if(sellticket>0)OrderModify(sellticket,OrderOpenPrice(),SSL,Selltp,0,CLR_NONE); It would work.

Reason: