Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
unique entry
Collapse
X
-
Hello zachj,
Thank you for your post.
To exit uniquely with SetStopLoss() and SetTrailStop() you will need to call the signalName of the entry you wish to exit.
The syntax for SetStopLoss() is the following: SetStopLoss(string fromEntrySignal, CalculationMode mode, double value, bool simulated)
And for SetTrailStop() it is the following: SetTrailStop(string fromEntrySignal, CalculationMode mode, double value, bool simulated)
For information on the different order methods please visit the following link: http://www.ninjatrader.com/support/h...er_methods.htm
Please let me know if you have any questions.
-
So if I have..
if //conditions here//
{EnterLong(200, "SPY");}
Would I have...
if //conditions here//
{SetStopLoss("SPY", CalculationMode.Ticks, 1);}
because I'm getting an error message, tried SPY w/o parantheses too. I do have a for loop at the start of the Entry and StopLoss not sure if that throws it off.
For loop is.... for (int series = 0; series < 3; series++)Last edited by zachj; 06-30-2013, 07:13 PM.
Comment
-
Ok gotcha.
If I wanted to do multiple instruments is this the best way to do it or is there a shorter way, if this even would work that is....
SetStopLoss("SPY", CalculationMode.Ticks, 1, false);
SetStopLoss("DIA", CalculationMode.Ticks, 1, false);
I have the EnterLong based on a loop where it keeps pulling through one series at a time...
for (int series = 0; series < 3; series++)
//entry conditions
{EnterLong();}
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
574 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment