Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
New User Woes
Collapse
X
-
just incase you guys may have forgot but the 6.5 release still hasnt fixed the issue in the wizard with the total. alltrades error discussed earlier in this thread, i tried using it tonight and still has the error, so one would have to code manually, which means unlocking the code which means goodbye to wizard
Comment
-
>> "Ninjatrader.Strategy.TrdeCollection' does not conatin a definition for "Performance'
This bug will be fixed with next update of NT6.5. Thanks for reporting.
that was posted by dierk,
thanks for the fast reply, it be sweet to get this to work without unlocking code, i am shure others would love it also
Comment
-
If i wanted to use tha ADX and look for higher lows, as in eliminate the fact the adx is not smooth what would i use for code,
if i use
ADX(14) [0] > ADX(14) [1]
it works fine to show me its increasing , but there are always dips and i am trying to elimate that
Comment
-
Hi guys,
I am having issues with using negative numbers, I am using teh slope function with this code
protectedoverridevoid OnBarUpdate()
{
if ( CurrentBar < 5) return;
double degrees = 0;
degrees = ((180/Math.PI) *(Math.Atan(Slope(EMA(Period),5,0))));
//Highs
if (degrees >= (longdegree))
DOTSSETTING.Set(1);
elseif (degrees <= (shortdegree))
DOTSSETTING.Set(-1);
else
DOTSSETTING.Set(0);
The problem is the line with short degrees, it is set to -10, but some how it is not using -10 as the threshold. In fact on the chart it shows 10,34,1 10 being teh threshold for positive degrees, 34 being the period of the ema used, and i duno why the chart says 1, but it is definetly using 1 instead of -10, even though in the settings it says -10
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
629 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
364 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
564 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
568 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment