I have a strategy that uses market order entry combined with limit order exits for stop loss and profit target.
As I am using a different datafeed for charting, and a different one for executing through my broker, I want to use entirely market orders.
My Entry:
So I compare current price with my ray-price and then enter using EnterLong() or EnterShort().
Then I have a 50% profit line, that exits half of my position using the ExitLong() or ExitShort() functions.
How do I exit my 2:nd profit line using ExitShort() or ExitLong(), it does not seem to work, and I am forced to use ExitShortLimit(currentprice) instead of just ExistShort() when the price reaches my final profit target price.
Is there a limitation in NT7 on how many times you can use the ExitShort() or ExitLong() function????


and make sure that you know what you are doing. It is not just a matter of changing a few order entry types.
Comment