The entries per direction is set at 5 on the strategy.
I am trying to setup a strategy where if the strategy enters a direction, say Short, and the market reverses, that the strategy goes short again when the strategy indicates another Short. I dont want the Strategy to go long.
I have a profit target that i am trying to achieve.
So if i enter the market and it reverse, i want to have it so that the strategy fires another short order, accordingy to the Strategy criteria, which may be at a higher price. Currently i can only get one order in one direction at one time. The idea is that as the market moves against the initial position and we enter as the strategy fires new short positions the breakeven is moving in the direction of the market.
I am using Position.MarketPosition == MarketPosition.Flat to keep from firing both longs and shorts as per the raw strategy, and i have both the long and short of the strategy as condition 1 and 2(maybe that is the problem?), but that does not seem to allow me to have muliple entries in one direction.
Regards

Comment