Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

I will Develop your Indicator or Strategy for FREE

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • bezbez
    replied
    Originally posted by firstbrain View Post
    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.
    Firstbrain

    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.

    Leave a comment:


  • firstbrain
    replied
    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
    replied
    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:


  • koganam
    replied
    Originally posted by firstbrain View Post
    Hi 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
    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.

    Leave a comment:


  • wadams
    replied
    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.
    Attached Files

    Leave a comment:


  • Harry
    replied
    Originally posted by firstbrain View Post
    Harry,
    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
    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.

    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:


  • firstbrain
    replied
    Originally posted by Harry View Post
    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.

    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.
    Harry,
    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:


  • kt5ssm
    replied
    That sounds too complicated for me. Could someone make a file that I need to just add?

    Leave a comment:


  • Harry
    replied
    Originally posted by firstbrain View Post
    Hi 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
    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.

    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:


  • Harry
    replied
    Originally posted by kt5ssm View Post
    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
    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().

    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:


  • kt5ssm
    replied
    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:


  • firstbrain
    replied
    Originally posted by Mike8085 View Post
    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,
    Michael
    Hi 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
    Last edited by firstbrain; 06-20-2013, 07:33 AM.

    Leave a comment:


  • canthony
    replied
    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:


  • Mike8085
    replied
    Originally posted by michel View Post
    Hi 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
    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,
    Michael

    Leave a comment:


  • Mike8085
    replied
    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,
    Michael
    Last 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
600 views
0 likes
Last Post Geovanny Suaza  
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
0 responses
347 views
1 like
Last Post Geovanny Suaza  
Started by Mindset, 02-09-2026, 11:44 AM
0 responses
103 views
0 likes
Last Post Mindset
by Mindset
 
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
0 responses
558 views
1 like
Last Post Geovanny Suaza  
Started by RFrosty, 01-28-2026, 06:49 PM
0 responses
558 views
1 like
Last Post RFrosty
by RFrosty
 
Working...
X