Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Adjusting Stop Loss to Breakeven plus
Collapse
X
-
Adjusting Stop Loss to Breakeven plus
I have a problem where by my strategy some time gains 400 dollar intraday, and then close witha minor loss. Can I use the StopLoss to set my exit point to above my entry point? e.g. I enter long at 1012 the market move up 40 ticks. I want to protect my profit, and set a stoploss at 10 ticks above my average entry point. How can I perform this action?Tags: None
-
What you would want to do is modify your SetStopLoss() dynamically. Please check out this reference sample for an idea of how to do it. http://www.ninjatrader-support.com/v...ead.php?t=3222
So in your case when you edit your SetStopLoss() you would probably do something like
Code:if (Close[0] > Position.AvgPrice + 40 * TickSize) SetStopLoss(Position.AvgPrice + 10 * TickSize);Josh P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
44 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
65 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment