
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
To be able to scale out, TP=0 when OrderSend/OrderModify, how do I keep track when to scale out for each ticket?
You know where the trendlines are - you just calculated them. You know where you opened it's in OrderOpenPrice() so you know where the scale price is.
market above scale price and SL below BE - no previous scale, do it now.
I think there must be a simple solution to this but right now I am stucked with the following questions
1. How to avoid a position being scaled out more than once? (e.g. position 5)
2. With multiple opened orders, how to know when to scale out as they all have different target
e.g. position 1 & position 2 are actually in different zones, target for 1 is red and target for 2 is yellow.
if I was to scale out position 2 by comparing the OrderOpenPrice to one of the target trendlines, how do I know which trendline value to compare (yellow or red ?)
Thank you all for your comment
I think there must be a simple solution to this but right now I am stucked with the following questions
1. How to avoid a position being scaled out more than once? (e.g. position 5)
2. With multiple opened orders, how to know when to scale out as they all have different target
e.g. position 1 & position 2 are actually in different zones, target for 1 is red and target for 2 is yellow.
if I was to scale out position 2 by comparing the OrderOpenPrice to one of the target trendlines, how do I know which trendline value to compare (yellow or red ?)
Thank you all for your comment
You know where the trendlines are - you just calculated them. You know where you opened. it's in OrderOpenPrice() so you know where the scale price is.
market above scale price and SL below BE - no previous scale, do it now.
I think I get it
big thanks WHRoeder & RaptorUK