Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

^Tick as Renko Candles in Strategy Builder

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    ^Tick as Renko Candles in Strategy Builder

    Hello,
    I want to use the ^Tick in the strategy builder as Renko Candles but I cant choose them. Can I implemnt it somehow?

    Thanks
    Robin
    Attached Files

    #2
    Hello Lopat,

    Thank you for your note.

    Adding a secondary series of any custom or "exotic" bars types is not supported in the Strategy Builder. You would need to unlock the code and use AddRenko() to add a secondary Renko series.



    That being said, I have added a vote for you to an existing feature request to allow custom/exotic bars types to be added in the Strategy Builder. This request is being tracked under the number SFT-1614.

    As with all feature requests, interest is tracked before implementation is considered, so we cannot offer an ETA or promise of fulfillment. If implemented, it will be noted in the Release Notes page of the Help Guide.

    Release Notes — https://ninjatrader.com/support/help...ease_notes.htm

    Please let us know if we may be of further assistance to you.
    Kate W.NinjaTrader Customer Service

    Comment


      #3
      Thank you for your answer. I changed the code but i get no results. Do I have to change something inside the RSI?

      else if (State == State.Configure)
      {
      AddRenko("Tick", 10, MarketDataType.Last);
      }
      else if (State == State.DataLoaded)
      {
      RSI1 = RSI(Closes[1], Convert.ToInt32(RSIPeriode), 3);

      Comment


        #4
        Hello Lopat,

        Thank you for your reply.

        You're not putting the instrument name in the AddRenko() call correctly, if you're wanting to add ^TICK you need to put it in there just like that:

        AddRenko("^TICK", 10, MarketDataType.Last);

        Please let us know if we may be of further assistance to you.
        Kate W.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by MarianApalaghiei, Today, 10:49 PM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by love2code2trade, Yesterday, 01:45 PM
        4 responses
        28 views
        0 likes
        Last Post love2code2trade  
        Started by funk10101, Today, 09:43 PM
        0 responses
        8 views
        0 likes
        Last Post funk10101  
        Started by pkefal, 04-11-2024, 07:39 AM
        11 responses
        37 views
        0 likes
        Last Post jeronymite  
        Started by bill2023, Yesterday, 08:51 AM
        8 responses
        46 views
        0 likes
        Last Post bill2023  
        Working...
        X