trader3cnd
Member
- Messages
- 73
- Likes
- 3
Hello,
The following is portion of Easylanguage code generated by Automatic Pattern Search software (APS) that sets the profit target and stop loss of an entry in points (pips in the case of forex):
input: targetpoints(0), stoppoints(0), multiplier(1);
variables: profitprice(0), stopprice(0);
profitprice = O of tomorrow + ( targetpoints * multiplier) points;
stopprice = O of tomorrow - ( stoppoints * multiplier) points;
sell next bar at profitprice limit;
sell next bar at stopprice stop;
Question: If a EURUSD chart is used and target and stop are both 75 pips, should I set both targetpoints and stoppoints to 0.0075? What is the value of the multiplier then?
Thanks in advance
The following is portion of Easylanguage code generated by Automatic Pattern Search software (APS) that sets the profit target and stop loss of an entry in points (pips in the case of forex):
input: targetpoints(0), stoppoints(0), multiplier(1);
variables: profitprice(0), stopprice(0);
profitprice = O of tomorrow + ( targetpoints * multiplier) points;
stopprice = O of tomorrow - ( stoppoints * multiplier) points;
sell next bar at profitprice limit;
sell next bar at stopprice stop;
Question: If a EURUSD chart is used and target and stop are both 75 pips, should I set both targetpoints and stoppoints to 0.0075? What is the value of the multiplier then?
Thanks in advance