public class jhk : Strategy
{
#region Variables
// Wizard generated variables
private int myInput0 = 1; // Default setting for MyInput0
// User defined variables (add any user defined variables below)
#endregion
/// <summary>
/// This method is used to configure the strategy and is called once before any strategy method is called.
/// </summary>
protected override void Initialize()
{
EntriesPerDirection = 1;
EntryHandling = EntryHandling.UniqueEntries;
SetStopLoss(CalculationMode.Ticks, 10, false);
SetProfitTarget("Long1a", CalculationMode.Ticks, 20);
SetProfitTarget("Short1a", CalculationMode.Ticks, 20);
SetTrailStop(CalculationMode.Ticks, 8);
CalculateOnBarClose = true;
}
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
// Condition set 1
if (CrossAbove(SMA(6), SMA(10), 1)
{
EnterLong(1,"Long1a");
EnterLong(1, "Long1b");
DrawArrowUp("My up arrow" + CurrentBar, false, 0, 0, Color.Lime);
}
// Condition set 2
if (CrossBelow(SMA(6), SMA(10), 1)
{
EnterShort(1, "Short1a");
EnterShort(1, "Short1b");
DrawArrowDown("My down arrow" + CurrentBar, false, 0, 0, Color.Red);
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Trouble Scaling out
Collapse
X
-
Trouble Scaling out
After wrestling with the reference sample, I was able to come up with this, and I don't understand why it isn't working. Whenever I backtest it, it simply scales out everything at the set profit target, instead of scaling out half and letting the second half scale with the trailing stop.
Code:Tags: None
-
I suggest debugging your code as per here: http://www.ninjatrader-support.com/v...ead.php?t=3418
Also: TraceOrders coudl be of value too. Please check out the docs.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
65 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
35 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
59 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
51 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment