![]() |
|
|||||||
| Indicator Development Support for the development of custom indicators using NinjaScript. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#121 |
|
Junior Member
Join Date: Jul 2012
Location: Houston, TX
Posts: 17
Thanks: 1
Thanked 15 times in 9 posts
|
Pedro,
Here's the HiLoActivator with the default High/Low replaced with the HeikenAshi High/Low. When you use this indicator, you can leave the Input series property set to the default value (which should be the chart's instrument). I'm not sure how the HeikenAshi works, so if something doesn't appear right, please feel free to let me know and we'll get it working! Kenny |
|
|
|
|
The following user says thank you to Coder_Kenny for this post: |
|
|
|
#122 |
|
Member
Join Date: Jul 2012
Posts: 31
Thanks: 3
Thanked 0 times in 0 posts
|
Thanks Coder_Kenny,
The Indicator works very well,but had only one problem:the indicator calculate the avarege of just 3 prev highs or lows.I need parameters like in my indicator,with parameter I can choose the lenght(3 or 4 or 5 or etc..) Thanks, Pedro Ivo |
|
|
|
|
|
#123 |
|
Junior Member
Join Date: Apr 2011
Posts: 5
Thanks: 0
Thanked 0 times in 0 posts
|
Hi,
I would like to have the strategy for ATM to handle the trade once it is triggered. Thanks. Subodh Shourie |
|
|
|
|
|
#124 |
|
Junior Member
Join Date: Jul 2012
Location: Houston, TX
Posts: 17
Thanks: 1
Thanked 15 times in 9 posts
|
I'm glad it's working for you Pedro. The HiLo Activator that you linked to me has a description "Calculates average of 3 prev highs or lows for use as stop". Can you send me a link to the one you're using now that has unlimited params?
|
|
|
|
|
|
#125 | |
|
Senior Member
Join Date: Oct 2007
Posts: 1,863
Thanks: 17
Thanked 99 times in 82 posts
|
Quote:
http://www.bigmiketrading.com/downlo...-download.html Just did not have time last week-end. |
|
|
|
|
|
|
#126 |
|
Junior Member
Join Date: Jun 2010
Posts: 2
Thanks: 1
Thanked 0 times in 0 posts
|
hello,
first of all I would like to say thank you for the offering and everyone who help other people! I don’t want to create a completely new indicator, all I need is a modification on a well known indicator. All the GOM package and volume ladder are excellent tools to analyze markets especially if you follow the flow of orders and distribution of volume. I use the volume ladder in delta mode, when the value (bars and numbers) of volume and delta appears in different column. It is good because you can see the distribution of both the volume and delta within a time interval at first glance. The part of volume is ok, but there is one thing that is more important then the value of delta itself, the ratio of the volume. From this point of view the pure delta distribution is misleading. In my opinion it will be useful to see them in one column in the same bar and enough the value of the volume. This is not my invention of course this is what GomDeltaVolume shows but only horizontally. It would be useful to see the clusters and the volume profile the same way. Thank you Andre
Last edited by andre.adamov; 07-24-2012 at 09:59 AM.
Reason: completing
|
|
|
|
|
|
#127 |
|
Junior Member
Join Date: Oct 2011
Posts: 12
Thanks: 4
Thanked 0 times in 0 posts
|
Hello Everyone,
I'm basically new to NinjaTrader and NinjaScript. I want to play with a simple strategy, but I don't know how to put it into NinjaScript. I started reading and playing with the custom indicators and custom strategies and back testing. Sometimes I can get things to work and other times I can't get them to work. Not sure why ... I'm not a software engineer. So this is my strategy. I want to create a strategy with a Bollinger Band and 20 EMA. When price hits the upper Bollinger band on a daily chart, I want to short and when price hits the 20 EMA I want to exit my position. Can someone please help me with this. Also, is there a library of already developed custom indicators and strategies some where? Thanking you, Michael |
|
|
|
|
|
#128 |
|
Member
Join Date: May 2008
Posts: 49
Thanks: 0
Thanked 2 times in 2 posts
|
Coder Kenny,
Any chance you can code an arrow signal when the ChikoSpan cross outside below/above the ichimoku cloud? (I know its lagging 26 bars, and I still need to have the signal on the current bar that will show the ChikoSpan crossing out 26 bars back) Thanks in advance. T. |
|
|
|
|
|
#129 |
|
Member
Join Date: May 2008
Posts: 49
Thanks: 0
Thanked 2 times in 2 posts
|
Anyone?
Can anyone help me with a code to place an arrow signal when the ChikoSpan cross outside below/above the ichimoku cloud? (I know its lagging 26 bars but I still need to see the signal on the current bar that will show the ChikoSpan crossing out 26 bars back) Thanks in advance. T. |
|
|
|
|
|
#130 |
|
Member
Join Date: May 2008
Posts: 49
Thanks: 0
Thanked 2 times in 2 posts
|
Anyone?
I got a PM from Kenny that is working on it but if anyone has the answer he will not need to spend his time on it. T. |
|
|
|
|
|
#131 |
|
Junior Member
Join Date: May 2012
Posts: 5
Thanks: 0
Thanked 0 times in 0 posts
|
Harry,
i'm looking for an indicator similar to ninja HMAColourChange, but would like the indicator for SMA. This indicator changes the color of the moving average based on slope, up or down. I followed ninja forum links for this indicator but they lead nowhere. i am not an elite member of bigmike so my access is limited. I would appreciate your help. Thank you, skipper |
|
|
|
|
|
#132 | |
|
Senior Member
Join Date: Oct 2007
Posts: 1,863
Thanks: 17
Thanked 99 times in 82 posts
|
If you look for an indicator that changes the color based on slope, this is pretty easy to code
Add two colors in the variables section, then add the code below to OnBarUpdate() Code:
if (Rising(Values[0]))
PlotColors[0][0] = upColor;
else if(Falling(Values[0]))
PlotColors[0][0] = downColor;
else
PlotColors[0][0] = PlotColors[0][1];
Quote:
|
|
|
|
|
|
|
#133 | |
|
Junior Member
Join Date: May 2012
Posts: 5
Thanks: 0
Thanked 0 times in 0 posts
|
Quote:
i appreciate your time for a newbie skipper |
|
|
|
|
|
|
#134 |
|
Member
Join Date: Feb 2012
Posts: 60
Thanks: 0
Thanked 1 time in 1 post
|
Is this post still valid? Is there a person still coding an indicator for free? Thanks
|
|
|
|
|
|
#135 |
|
Junior Member
Join Date: Feb 2012
Posts: 5
Thanks: 2
Thanked 0 times in 0 posts
|
Hello there,
I'm looking for a coder who can help me with Ninjascript. I want Market Analyzer to prompt me when the price hits Bollinger Band limits. I will take a bid for the job. Thanks, Jasmine |
|
|
|
![]() |
| Tags |
| practice development |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How much interest is there to Develop a COT Indicator | Sherif | Indicator Development | 4 | 06-25-2011 09:45 AM |
| Measuring trade intensity with the free Pace of Tape indicator | cunparis | NinjaScript File Sharing Discussion | 6 | 01-13-2011 12:02 AM |
| Please Help develop indicator | skikg | Indicator Development | 10 | 12-13-2009 12:48 PM |
| I will develop your indicator for FREE | fddayan | Indicator Development | 32 | 07-03-2009 11:09 AM |
| Free Indicator: KamaPivotRange | KamaCoder Eric | Indicator Development | 1 | 11-10-2008 05:46 AM |