IF decisions using the order gain
- This topic has 7 replies, 4 voices, and was last updated 5 years ago by .
Viewing 8 posts - 1 through 8 (of 8 total)
Viewing 8 posts - 1 through 8 (of 8 total)
Similar topics:
Forums › ProRealTime English forum › ProOrder support › IF decisions using the order gain
Tagged: positionperf
The instruction POSITIONPERF(n) returns: The performance (ratio gain/cost of the position)
So in order to use it in a condition you can do:
1 2 3 |
if positionperf(0) > 0 then //we are in gain!! endif |
You can do something like this:
1 2 3 4 5 6 7 8 9 |
takeprofit = 1000 if longonmarket and (close - positionprice) * countofposition > takeprofit then sell at market endif if shortonmarket and (positionprice - close) * (0 - countofposition) > takeprofit then exitshort at market endif |
which will check at the bar close if you are in the desired profit or alternatively just use:
1 |
set target $profit 1000 |
which places an order on the market to sell when up $1000 or whatever currency the instrument is in.
When I have tried this it does not seem to work. I would like to exit greater than a gain value. Is this possible?
Yes just set your gain value as a percentage, for example …
1 2 3 |
if positionperf(0) > 0.1 then //gain > 0.1% Sell at Market endif |
Find exclusive trading pro-tools on