Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
any takers on this one
Collapse
X
-
Originally posted by eDanny View PostI thought I'd give this a try but sometimes the lines are very close together and crossovers are hard to see. I modified the indicator to show pending crossovers and then the actual crossover. It is then up to you to determine if there is divergence of course. Take a look at the chart and let me know if I should post the indicator.
Hi Danny,
This is what we are all here for. Post away. Give it a version so people don't override the existing one when they download it.
RJay
Leave a comment:
-
I thought I'd give this a try but sometimes the lines are very close together and crossovers are hard to see. I modified the indicator to show pending crossovers and then the actual crossover. It is then up to you to determine if there is divergence of course. Take a look at the chart and let me know if I should post the indicator.Last edited by eDanny; 12-13-2008, 03:09 PM.
Leave a comment:
-
Kowal, Tom,Originally posted by chartlearner View PostThanks for the hard work! The only problem I am having is when I set it to calc on close=false it becomes 1 line scrunched together?
Thanks, Tom
I made a few changes. I didn't like that line of code either.
See if this version works any better,
RJay


Zip file has been updated. See later post!!!!!!!Last edited by RJay; 12-14-2008, 06:37 AM.
Leave a comment:
-
Thanks for the hard work! The only problem I am having is when I set it to calc on close=false it becomes 1 line scrunched together?
Thanks, Tom
Leave a comment:
-
RJay
Thanks so much. That's exactly what I was looking for. So far it looks like it works perfectly.
That makes me a happy camper! 
Mahlon
Leave a comment:
-
Mahlon,
Here is this indicator with the changes you requested.
RJayAttached Files
Leave a comment:
-
Thanks for posting this rt6176!
Originally posted by rt6176 View PostEnjoy !!!!
Any issues let me know.
RJay


Leave a comment:
-
i really appreciate you doing that for me.
it looks good so far
thanks again
jay
Leave a comment:
-
Hi jaybird151,
If no one takes you up on this you could also try one of the 3rd party NinjaScript Consultants here: http://www.ninjatrader.com/webnew/pa...injaScript.htm
Leave a comment:
-
any takers on this one
need to transfer this from easy language to ninja
this indicator is really good for spotting div on smaller time frames
inputs:
SigLineXMALen1( 3) ,
TRIXLength( 3.75) ,
SigLineXMALen2( 4.5) ;
variables:
EMA1( 0 ),
EMA2( 0 ),
EMA3( 0 ),
TRIXLine( 0 ),
SignalLine1( 0 ),
SignalLine2( 0 ) ;
EMA1 = XAverage( Close, TRIXLength ) ;
EMA2 = XAverage( EMA1, TRIXLength ) ;
EMA3 = XAverage( EMA2, TRIXLength ) ;
if EMA3[1] <> 0 then
{ Ensure not about to divide by zero }
TRIXLine = 10 * ( EMA3 - EMA3[1] ) / EMA3[1] ;
SignalLine1 = XAverage( TRIXLine, SigLineXMALen1 ) ;
SignalLine2 = XAverage( TRIXLine, SigLineXMALen2 ) ;
Plot1( TRIXLine, "TRIXLine1" ) ;
Plot2( SignalLine1, "SignalLine1" ) ;
Plot3( SignalLine2, "SignalLine2" ) ;
any help is appreciated
thanksTags: None
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
12 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
18 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Leave a comment: