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

Custom Renko (WickedRenko) implementation

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

    Custom Renko (WickedRenko) implementation

    Hi,

    I am using WickedRenko on NT7 but i noticed a problem when there are data outside the current market range much more than 1 tick, it is common, just 1 or 2 time and sales data, but because renkos forming this time, it can be a great mess..

    I tried to filter data in the cs file like this:

    if(
    (Math.Abs(close-close[1])) > (1*tickSize)
    ){
    close = close[1]+1*tickSize;
    }

    Lets suspect we trading is liquid market, so if the next tick is outside the current trading area more than 1 tick, than it is impossible, so correct this value back to normal.

    But this code doesnt changed anything

    Any idea how can it be solved?

    WickedRenkoBarsType_NT7.zip


    All of this bars are created in 1-2sec..
    Attached Files

    #2
    Can you post an example?? These bars you posted look ok to me.
    RJay
    NinjaTrader Ecosystem Vendor - Innovative Trading Solutions

    Comment


      #3
      yeah visually they ok, but behind the scenes they aren't. They have no volume, no time, no wick, this is all of because they borned from some outside data tick.

      For example the market is trading in 18.62 -18.63 the time and sales like this

      18.62 500
      18.62 100
      18.63 20000
      18.62 500
      19.25 200000 -->this is a delayed data, sometimes happens in the market
      18.63 200 -->back to normal

      in this example many renko will born when 19.25 comes in, many renko up, than many renko down, they do not hold any information about the price movement, so i want to correct this data, to not born renkos, and dont mess up the chart.

      Comment


        #4
        Mzsolt, unfortunately custom bar implementations are unsupported. Hopefully some community members will be able to help you out.
        AustinNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Aviram Y, Today, 05:29 AM
        4 responses
        11 views
        0 likes
        Last Post Aviram Y  
        Started by algospoke, 04-17-2024, 06:40 PM
        3 responses
        27 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by bmartz, 03-12-2024, 06:12 AM
        3 responses
        30 views
        0 likes
        Last Post NinjaTrader_Zachary  
        Started by gentlebenthebear, Today, 01:30 AM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by cls71, Today, 04:45 AM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X