Thanks for reply and that's a good news but I didn't get it. can you explain it little more simple please as I'm not a very technical person.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
I will Develop your Indicator or Strategy for FREE
Collapse
This topic is closed.
X
X
-
FirstbrainOriginally posted by firstbrain View Post
Thanks for reply and that's a good news but I didn't get it. can you explain it little more simple please as I'm not a very technical person.
-
bezbez,
yes you can
Build a new chart.
Build SMA with RSI (with your own perferences) as the data series; select "left" under Scale Justification and "Same as input series" under Panel
Have fun.
Leave a comment:
-
BezBez
Hi guys, my favorite indicator is RSI and its MA, I wish I could put the RSI's MA on the price action as an MA, the question is, is it possible?
thanks
Leave a comment:
-
NT ships with 2 KeyReversalBar indicators: one each for "down" and "up". Just make a copy of either to a new name, and draw in your triangles as you wish. You can even then concatenate the code into one indicator.Originally posted by firstbrain View PostHi Mike,
just try the build in "SWING" indicator and set the Strength to 1. You can change the settings of the indicator to show triangeles also. Maybe this coould help quickly ..
firstbrain
Leave a comment:
-
Comparing Custom Session Ranges
Here's my idea. Thanks for the help!
Compare the high low range for multiple Forex pairs during a specific time of day. For example, the indicator would be able to show me the average range of each Forex pair from 2:30am - 7:45am for 20 days back.
Visualize this on a single chart with multiple lines on the same scale. See the 'Visual Example' image below. Convert into pips by accounting for price quote differences (YEN vs Non-Yen Base Pairs)
Also, I would like it to control for spreads by dividing the each of the averages by their respective pair's current spread.
Leave a comment:
-
Sorry, I was not clear in my communication, I have modified the post now. The rules are expressed in #235, and they are based on higher high/ lower close and lower low/higher close. What I wanted to say is that it is not a bad idea to stick with these rules.Originally posted by firstbrain View PostHarry,
You are completly right. Just didn'r read the whole post in depth - blame on me
But I'm missing the code you advertised in your post ...,
firstbrain
You should find somebody who does that for you. You could also try here:
membership is required.....
I do not have the time now to code.
Leave a comment:
-
Harry,Originally posted by Harry View PostSetting the Swing indicator to 1 does not work, as the indicator does not compare the bar closes, but just takes into account highs and lows.
It makes more sense to stick with the code as posted below. The indicator is pretty easy to code, and a perfect exercise for somebody who wants to start to code in NinjaScript.
You are completly right. Just didn'r read the whole post in depth - blame on me
But I'm missing the code you advertised in your post ...,
firstbrain
Leave a comment:
-
That sounds too complicated for me. Could someone make a file that I need to just add?
Leave a comment:
-
Setting the Swing indicator to 1 does not work, as the indicator does not compare the bar closes, but just takes into account highs and lows.Originally posted by firstbrain View PostHi Mike,
just try the build in "SWING" indicator and set the Strength to 1. You can change the settings of the indicator to show triangeles also. Maybe this coould help quickly ..
firstbrain
It makes more sense to stick with the rules as posted below in #235. The indicator is pretty easy to code, and a perfect exercise for somebody who wants to start to code in NinjaScript.Last edited by Harry; 06-20-2013, 08:50 AM.
Leave a comment:
-
If you dare code this yourself, you can take the default RSI indicator and a few lines in OnBarUpdate(). You can actually use DrawRectangle() to add the colored areas. Look up the NinjaTrader user manual to find out how to use DrawRectangle().Originally posted by kt5ssm View PostHi,
I need a little help.
I use rsi indicator and I want to colour the areas between 20 and 32, 38 and 51, 53 and 62, 68 and 80.
Could you tell me the code to do this?
thank you
The inconvenience about DrawRectangle() is that it will plot on top of the RSI lines, you cannot make it plot behind the lines, if you put it into the same indicator.
It is therefore a better solution to create a separate indicator that plots the 4 colored areas. You can then programmatically set the rectangles behind the RSI lines. Just add a line ZOrder = -1 in the Initialize() section.
DrawRectangle() reduces the speed with which the chart is built. If you want to produce an indicator that shows up faster, you may consider to add a custom plot to the RSI.
Leave a comment:
-
rsi
Hi,
I need a little help.
I use rsi indicator and I want to colour the areas between 20 and 32, 38 and 51, 53 and 62, 68 and 80.
Could you tell me the code to do this?
thank you
Leave a comment:
-
Hi Mike,Originally posted by Mike8085 View PostDear All,
Cheers, I would really appreciate if you could make a what i call a bar reversal indicator (NT7) for me.
With the following condition:
1. Reversal Bar Down (Draw Style: Triangle Down above the bar with space)
The current bar high is higher than previous bar high and close lower than previous bar
close. =AND(H>H[-1],C<C[-1])
2. Reversal Bar Up (Draw Style: Triangle Up below the bar with space)
The current bar low is lower than previous bar low and close higher than previous bar close. =AND(L<L[-1],C>C[-1])
If you have any question can email me at [email protected]
With many Thanks
Regards,
Michael
just try the build in "SWING" indicator and set the Strength to 1. You can change the settings of the indicator to show triangeles also. Maybe this coould help quickly ..
firstbrainLast edited by firstbrain; 06-20-2013, 07:33 AM.
Leave a comment:
-
Programming Services
My firm provides custom programming of fully automated strategies and custom indicators. If you can conceive it, we can build it. And for a limited time only, we are offering custom programming services with NO PAYMENTS OR INTEREST for six months. Trust your trading dollars to a Ninja certified firm with more than 6 years of programming experience and 100% satisfied clients. Contact [email protected] for more information.Last edited by canthony; 06-01-2013, 09:19 PM.
Leave a comment:
-
Dear All,Originally posted by michel View PostHi everybody
I am new to NinjaTrader but i have been developing indicators for tradestation for 6 years
I'm still getting familliar with Ninja and i need the practice so i will develop strategies for free
Note that I wont be taking over complicated requests. keep it simple and clean. if there are too many requests i will take my pick as to which ones i do
happy trading
Regards,
Michel
www.fxcteam.com
Cheers, I would really appreciate if you could make a what i call a bar reversal indicator (NT7) for me.
With the following condition:
1. Reversal Bar Down (Draw Style: Triangle Down above the bar with space)
The current bar high is higher than previous bar high and close lower than previous bar
close. =AND(H>H[-1],C<C[-1])
2. Reversal Bar Up (Draw Style: Triangle Up below the bar with space)
The current bar low is lower than previous bar low and close higher than previous bar close. =AND(L<L[-1],C>C[-1])
If you have any question can email me at [email protected]
With many Thanks
Regards,
Michael
Leave a comment:
-
Bar Reversal Indicator
Dear All,
Cheers, I would really appreciate if you could make a what i call a bar reversal indicator (NT7) for me.
With the following condition:
1. Reversal Bar Down (Draw Style: Triangle Down above the bar with space)
The current bar high is higher than previous bar high and close lower than previous bar
close. =AND(H>H[-1],C<C[-1])
2. Reversal Bar Up (Draw Style: Triangle Up below the bar with space)
The current bar low is lower than previous bar low and close higher than previous bar close. =AND(L<L[-1],C>C[-1])
If you have any question can email me at [email protected]
With many Thanks
Regards,
MichaelLast edited by Mike8085; 05-26-2013, 01:17 AM.
Leave a comment:
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
607 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
353 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
561 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Leave a comment: