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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
182 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
334 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
258 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
358 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
188 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment