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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
64 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