Expert Advisor ??

 
I need to modify an order.
I insert 3 target value, when the ask price (o bid price, i'ts depend il i'm long or short) reach one target i've to change the STOP LOSS of the position.
With a program i'm not able because the program was executed only 1 time.
I need an experts?
Note that i enter the market by myself, not with an expert.

Thanks
 
Marco,

are you talking about some kind of a "trailing/level stop"?
if so,
you probably loop on the conditions, i.e., if you reach some target2 you have a new stop2, then target3, etc... until some targetX is also a take profit. Is it right?

Well, you DO need an expert.
It's no problem if you are going to the market by yourself, there are several solutions:
1. the expert picks up the order (number) of the order that you manually opened. if you have more than 1 order opened, you'll have to decide who's the one you want to pick up, for example by an external variable in the EA.
2. you could open your manual positions using scripts. the scripts can then register all the order information in global variables.

once the original order number is known, the expert advisor can continue from there.


regards,
mike
Reason: