![]() |
|
|||||||
| NinjaScript File Sharing Discussion Discussion for shared NinjaScript files. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Administrator
Join Date: Nov 2004
Location: Denver, CO, USA
Posts: 11,163
Thanks: 6
Thanked 45 times in 32 posts
|
This is an indicator I published for the September 07 issue of S&C. This indicator is provided on an "as-is" basis.
To import: - Download the file contained in this thread to your desktop - From the Control Center window select the menu File > Utilities > Import NinjaScript - Select the downloaded file
Ray
NinjaTrader Customer Service |
|
|
|
|
The following user says thank you to NinjaTrader_Ray for this post: |
|
|
|
#2 |
|
Junior Member
Join Date: Aug 2007
Posts: 18
Thanks: 0
Thanked 0 times in 0 posts
|
Thanks Ray,
I did modify the alert, any wave file you want can be created here http://public.research.att.com/~ttsweb/tts/demo.php |
|
|
|
|
|
#3 |
|
Junior Member
Join Date: Aug 2007
Posts: 29
Thanks: 0
Thanked 0 times in 0 posts
|
Hello,
You auto trend line is GREAT! I love it. Have a question for you. How hard would it be to devise a indicator that works the same type of way but works with divergence? Ie - plots the divergence between price action and say macd or stoch or both :-) Thanks, Colin |
|
|
|
|
|
#4 |
|
Senior Member
Join Date: Jun 2007
Posts: 254
Thanks: 0
Thanked 0 times in 0 posts
|
Thanks Ray for the auto trendline indicator.
When I tried to install it is trying to overwrite the default "swing"indicator, is this expected? Does it change swing indicator in anyway? What does the "strength" field indicate? Does it indicate number of swing pivots needed for drawing the trendline? Did you test whats the optimum strength field for ES 3 min chart. Appreciate your time on this. Thanks RK |
|
|
|
|
|
#5 |
|
NinjaTrader Product Manager
Join Date: May 2007
Location: Denver, CO
Posts: 17,458
Thanks: 1
Thanked 106 times in 70 posts
|
The reason it is trying to overwrite the Swing indicator is because the way the export NinjaScript is designed is to allow the export file to work on its own. You can safely overwrite your Swing indicator as it is the same file. There will be no changes done.
Josh
NinjaTrader Customer Service |
|
|
|
|
|
#6 |
|
Administrator
Join Date: Nov 2004
Location: Denver, CO, USA
Posts: 11,163
Thanks: 6
Thanked 45 times in 32 posts
|
Strength represents the number of bars left and right of a pivot required to form a pivot. I have not done any optimization to determine best values on any time frame.
Ray
NinjaTrader Customer Service |
|
|
|
|
|
#7 |
|
Senior Member
Join Date: Jun 2007
Posts: 254
Thanks: 0
Thanked 0 times in 0 posts
|
Thanks Josh. I appreciate it.
Do you know what the "strength" field indicates? Does it indicate number of swing pivots needed for drawing the trendline? Did you test whats the optimum strength field for ES 3 min chart. Appreciate your time on this. Thanks RK |
|
|
|
|
|
#8 |
|
Senior Member
Join Date: Jun 2007
Posts: 254
Thanks: 0
Thanked 0 times in 0 posts
|
Hi
Any active users of this auto trendline indicator, did you experiment with what "strength" property value you are getting good results? I tried 5 and not sure if it is good. Also when does it give the signal. Does it wait for atleast one bar to close below the current trendline? Josh thanks for good indicator. I am not a Ninja programming expert, trying to learn the indicator programming. Is it possible you can modify the indicator to include a property field "the number of bars to close below trendline to give signal" Also I would like to request if you are considering enhancements to make the trendline a little below the swing lows with a "displacement". For example in an uptrend the trendline is joining the swing low pivots. I am finding that if the trendline is a bit conservative and like a few ticks below the swing lows, it is holding well. For example, if the swing lows in ES uptrend are like 1531.50, 1535.50, 1540.50, then a line joining 1531.25 ,1535.25,1540.25 with 0.25 displacement to downside is holding really well and when it breaks, it gives a very strong signal and doesn't give false signals. May be this can be enhanced by adding a "displacement field" to properties. I appreciate your time and any active users opinion on this. Thanks RK |
|
|
|
|
|
#9 |
|
NinjaTrader Product Manager
Join Date: May 2007
Location: Denver, CO
Posts: 17,458
Thanks: 1
Thanked 106 times in 70 posts
|
Unfortunately I cannot provide assistance on this indicator RK_trader. It wasn't me who programmed this one and so I do not know what the parameters do or mean.
Josh
NinjaTrader Customer Service |
|
|
|
|
|
#10 |
|
Senior Member
Join Date: Jun 2007
Posts: 254
Thanks: 0
Thanked 0 times in 0 posts
|
Thanks Josh for the quick reply. No problem.
I would appreciate opinions/comments on people who are actively using this indicator. Any volunteers who can modify the code to get the enhancements/options. Thanks RK |
|
|
|
|
|
#11 |
|
Administrator
Join Date: Nov 2004
Location: Denver, CO, USA
Posts: 11,163
Thanks: 6
Thanked 45 times in 32 posts
|
The indicator waits for the first value lower or higher than a uptrend or downtrend line. If the indicator's "Calculate on bar close" is set to true, it will wait for a close of the bar otherwise just the first tick.
Unfortunately I will not be ammending the code to provide extra user defineable parameters however, anyone can take this open source code and modify it as they wish.
Ray
NinjaTrader Customer Service |
|
|
|
|
|
#12 |
|
Senior Member
Join Date: Jun 2007
Posts: 254
Thanks: 0
Thanked 0 times in 0 posts
|
Thanks Ray. I am still in learning phase of Ninja programming.
I see "calculateonbarclose" on line 42 in Initialize() and it is set to true And the other place I see it is on line 298 which says as below: indicator.CalculateOnBarClose = CalculateOnBarClose; Can you please clarify as to in which line, I need to change the value to true, so that it waits for a a bar to close below the trendline to give the alert. Appreciate your time on this. Thanks RK |
|
|
|
|
|
#13 |
|
Administrator
Join Date: Nov 2004
Location: Denver, CO, USA
Posts: 11,163
Thanks: 6
Thanked 45 times in 32 posts
|
Line 42 should be set to 'true'.
Ray
NinjaTrader Customer Service |
|
|
|
|
|
#14 |
|
Senior Member
Join Date: Jun 2007
Posts: 254
Thanks: 0
Thanked 0 times in 0 posts
|
Hi Ray,
In line 42, it is already set to true. Thanks RK |
|
|
|
|
|
#15 |
|
Junior Member
Join Date: Oct 2007
Posts: 11
Thanks: 0
Thanked 0 times in 0 posts
|
If it is set tof alse the calcs are on incoming tick basis.
Probably can change it in the indicator prop window. Pat |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Automatic Trend Line Indicator | Greg1 | Charting | 6 | 07-23-2009 07:48 AM |
| Pattern detection via indicator | nybangali | Indicator Development | 6 | 08-20-2007 12:52 AM |
| CCI w/ Audible Alert | Jibu V | Indicator Development | 12 | 08-03-2007 11:08 AM |
| Alert() | AO76 | Strategy Development | 5 | 05-27-2007 09:21 AM |
| Line "names" in Indicator Box change to "Line" after modification | higler | Charting | 3 | 05-02-2007 06:05 AM |