Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Tradestation Indicator ( TRENDLINES AUTOMATIC )...
Collapse
X
-
Tradestation Indicator ( TRENDLINES AUTOMATIC )...
Hey guys, I am trying to find this Indicator on the Ninja forums and have had no luck yet. Does Ninja have this Indicator an it's just under a different name?? If someone know where I can get this or if you would be intersted in developing it, That would be so great. The settings for it are ( 4, 4, 10, YES, RED, BLUE, Intrabar ). Thanks for the help - MichaelTags: None
-
Not sure if its the same as Tradestation, but try this:Attached FilesLast edited by Elliott Wave; 12-18-2008, 10:49 PM.
-
connecting swing (ATR) high low
regression channel keeps changing, and only applies to most recent trend.
since swing (ATR) high lows are available, can anyone connect high to high and low to low ? when they are breaches, new swing (ATR) high high, low low should be connected (new trend).
thanks
Comment
-
Correct the Regression Channel will show you the bestfit over the 'Period' input of bars. I am not aware of a script tracking the history of the developing channel...maybe some community member can chime in.
Here's a link to our NinjaScript consultants, in case you need this custom programmed - http://www.ninjatrader.com/webnew/pa...injaScript.htm
Comment
-
Compile error with Auto TrendLine CS file
After loading the Auto TrendLine.cs file into the NJ Editor & Compiling I get the following error:
Compiler Error CS0101
The namespace 'NJ.Indicator' already contains a definition for 'Swing' at line 27. I don't see where it 'calls' for Swing yet alone calling for it twice.
[Gui.Design.DisplayName("AutoTrendLine")]
publicclass AutoTrendLine : Indicator
{
Line 27 starts with => #region Variables
privatebool alertOnBreak = true;
privateint strength = 5; // Default setting for Strength
privateint lineWidth = 2; // Default setting for LineWidth
private Color downTrendColor = Color.Red;
private Color upTrendColor = Color.Green;
privateint triggerBarIndex = 0;
privateint signal = 0; // 0 = no signal, 1 = buy signal on down trend break, 2 = sell signal on up trend break
#endregion
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
587 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
341 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
555 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

and the Auto Trendline & Swings are on the chart now I just need to adjust it under live data.
Comment