Mark.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
SamplePriceModification
Collapse
X
-
SamplePriceModification
Hello, how do I add short position in the strategy attached, thank you.
Mark.Tags: None
-
Hello snakepatob,
Thank you for your post.
In general, a short position can be added with the reverse conditions as the long. In this strategy there would need to be a few changes. Below is and example of using the reverse of what is used for the long and considering the position before taking a new position.
Code:// Resets the stop loss to the original value when all positions are closed if (Position.MarketPosition == MarketPosition.Flat) { SetStopLoss(CalculationMode.Ticks, stoplossticks); // Entry Condition: Increasing price along with RSI oversold condition if (Close[0] > Close[1] && RSI(14, 3)[0] <= 30) { EnterLong(); } // Opposite of long condition if (Close[0] < Close[1] && RSI(14, 3)[0] >= 30) { EnterShort(); } } // If a short or long position is open, allow for stop loss modification to breakeven else if (Position.MarketPosition == MarketPosition.Long) { // Once the price is greater than entry price+50 ticks, set stop loss to breakeven if (Close[0] > Position.AvgPrice + 50 * TickSize) { SetStopLoss(CalculationMode.Price, Position.AvgPrice); } } else if (Position.MarketPosition == MarketPosition.Short) { // Once the price is greater than entry price-50 ticks, set stop loss to breakeven if (Close[0] < Position.AvgPrice - 50 * TickSize) { SetStopLoss(CalculationMode.Price, Position.AvgPrice); } }
-
Patrik,
thanks for listening, I could include the code and compile.
Without your help I would not have succeeded.
Mark.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
146 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
79 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment