NinjaTrader Support Forum  
X

Attention!

This website will be down for maintenance from Friday May 24th at 6PM MDT until Saturday May 25th at 11AM MDT. We apologize for the inconvenience. If you need assistance during this time, please email sales@ninjatrader.com


Go Back   NinjaTrader Support Forum > NinjaScript Development Support > General Programming

General Programming General NinjaScript programming questions.

Reply
 
Thread Tools Display Modes
Old 09-07-2007, 08:02 AM   #1
Ronin
Junior Member
 
Join Date: Sep 2007
Posts: 10
Thanks: 0
Thanked 0 times in 0 posts
Default Simple Indicator

Hello

I am trying to create a simple indicator that plots the difference Bollinger Band Top and price(High). Could someone help with the codes.

Thanks
Ronin is offline  
Reply With Quote
Old 09-07-2007, 08:37 AM   #2
NinjaTrader_Josh
NinjaTrader Product Manager
 
NinjaTrader_Josh's Avatar
 
Join Date: May 2007
Location: Denver, CO
Posts: 17,458
Thanks: 1
Thanked 106 times in 70 posts
Default

Hi Ronin,

To get started you can run the NinjaScript indicator wizard (Tools->New NinjaScript->Indicator). Make sure you have at least one plot when you go through the wizard pages. After you finish, press the "Generate" button to get the NinjaScript editor to open with your new indicator.

If you look in the OnBarUpdate() section you will notice this line of code:
Code:
Plot0.Set(Close[0]);
By default, the indicator will be plotting the close because that is what we set our plot to equal. In your case, you want Bollinger Band Top minus price high. This can be done with this code:
Code:
Plot0.Set(Bollinger(2, 14).Upper[0] - High[0]);
Whatever you place in the parenthesis after .Set is what your Plot0 will take values from. What the code is doing is telling the plot to be set to the upper bollinger band's value (bollinger band has standard deviation of 2 and period of 14) minus the high price.
NinjaTrader_Josh is offline  
Reply With Quote
Old 09-07-2007, 10:50 AM   #3
Ronin
Junior Member
 
Join Date: Sep 2007
Posts: 10
Thanks: 0
Thanked 0 times in 0 posts
Default

Hi Josh

Thanks. The code is working great.

Regards
Ronin is offline  
Reply With Quote
Old 09-10-2007, 11:26 PM   #4
Ronin
Junior Member
 
Join Date: Sep 2007
Posts: 10
Thanks: 0
Thanked 0 times in 0 posts
Default

In the case below I am trying to build an indicator to determine whether BB is sloping or not.

The code is

Plot0.Set(((Bollinger(2, 20).Upper[0] - Bollinger(2, 20).Upper[5])/Bollinger(2, 20).Upper[0]*100));

Formula is
Bollinger Upper Band -Bollinger upper band 5 period ago/Bollinger upper band *100

But this code is not returning any value.

Could someone please correct my code.

Thanks
Last edited by Ronin; 09-11-2007 at 12:51 AM.
Ronin is offline  
Reply With Quote
Old 09-11-2007, 07:00 AM   #5
NinjaTrader_Ray
Administrator
 
NinjaTrader_Ray's Avatar
 
Join Date: Nov 2004
Location: Denver, CO, USA
Posts: 11,163
Thanks: 6
Thanked 45 times in 32 posts
Default

The problem can likely be resolved by reviewing this "Tip".

http://www.ninjatrader-support.com/v...ead.php?t=3170
NinjaTrader_Ray is offline  
Reply With Quote
Old 09-11-2007, 12:09 PM   #6
Ronin
Junior Member
 
Join Date: Sep 2007
Posts: 10
Thanks: 0
Thanked 0 times in 0 posts
Default

This partly sorted the problem. The code now plots the values. However there seems to be huge gaps in plotting the indicator.

What I am actually trying to do is simply apply ROC indicator to Boll Band, SMA etc. I want to calculate rate of change of indicator value instead of price.

Could you please guide me how to do this.

Thanks much.


Ronin is offline  
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
A simple question about performance. MGDavid Miscellaneous Support 2 06-21-2007 08:47 AM
Problems with simple donchian cross test zoltran Strategy Development 2 04-02-2007 10:21 AM
Simple Strategy Oli Automated Trading 2 03-05-2007 11:42 PM
Simple profit/stop strategy Steveinvest Miscellaneous Support 1 12-30-2005 02:50 AM


All times are GMT -6. The time now is 01:41 AM.