Can anyone get me started.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Trix
Collapse
X
-
In your indicator, use DrawArrowUp(). http://www.ninjatrader-support.com/H...awArrowUp.html
Then be sure to use DrawOnPricePanel = true;
Josh P.NinjaTrader Customer Service
Comment
-
How do I tell it to do this when the TRIX MA line crosses the signal line?
// Initialize method of a custom indicator
protected override void Initialize()
{
Add(new Plot(Color.Orange, "tag1"));
DrawOnPricePanel = true; // Draw objects now paint on the indicator panel itself
// Paints a red down arrow on the current bar 1 tick below the low
DrawArrowUp("tag1", true, 0, Low[0] - TickSize, Color.Red);
Comment
-
rtj4201,
You should not place such logic in Initialize(). Please move your DrawArrow line of code into the OnBarUpdate() method. From there you can code an if-statement to draw the arrow.
Untested code.
Code:if (CrossAbove(TRIX(20, 3).Default, TRIX(20, 3).Signal, 1)) DrawArrowUp(...);Josh P.NinjaTrader Customer Service
Comment
-
trix with arrow
note: you can safely comment out plot1, plot0 color codes, they don't do anything.Attached Files
Comment
-
the code for down arrow is already in thereOriginally posted by rtj4201 View PostCan you update it so that it gives a down arrow when TRIX crosses below the signal line?
// if (CrossBelow(TRIX(period, signalPeriod).Default, 0,1))
if (CrossBelow(TRIX(period, signalPeriod).Default, TRIX(period, signalPeriod).Signal, 1))
DrawArrowDown("MyArrowDown"+CurrentBar, 0, High[0]+2* TickSize, Color.Orange);
// if (CrossAbove(TRIX(period, signalPeriod).Default, 0,1))
if (CrossAbove(TRIX(period, signalPeriod).Default, TRIX(period, signalPeriod).Signal, 1))
DrawArrowUp("MyArrowUp"+CurrentBar, 0, Low[0] -2* TickSize, Color.Red);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
579 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment