I am developing a scaling in strategy. I want to scale in a position after the market has gone in my direction for 6 ticks. My strategy uses a simple crossover to signal entries. After the entry I use the MarketPosition=MarketPosition.Long/Short to scale in the 2nd position. In the Initialize() I have added the EntriesPerDirection = 1;
EntryHandling = EntryHandling.UniqueEntries; I made sure to label my entries uniquely. My strategy is working properly in all but one area. The 2nd long is being filled, but the 2nd short is being ignored. Does the EntriesPerDirection only work with long positions? If so how can I scale into a short postion?
Rick

Comment