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

  • NinjaTrader_Austin
    replied
    Mzsolt, unfortunately custom bar implementations are unsupported. Hopefully some community members will be able to help you out.

    Leave a comment:


  • Mzsolt
    replied
    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.

    Leave a comment:


  • RJay
    replied
    Can you post an example?? These bars you posted look ok to me.

    Leave a comment:


  • Mzsolt
    started a topic Custom Renko (WickedRenko) implementation

    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

Latest Posts

Collapse

Topics Statistics Last Post
Started by algospoke, Yesterday, 06:40 PM
2 responses
19 views
0 likes
Last Post algospoke  
Started by ghoul, Today, 06:02 PM
3 responses
14 views
0 likes
Last Post NinjaTrader_Manfred  
Started by jeronymite, 04-12-2024, 04:26 PM
3 responses
45 views
0 likes
Last Post jeronymite  
Started by Barry Milan, Yesterday, 10:35 PM
7 responses
21 views
0 likes
Last Post NinjaTrader_Manfred  
Started by AttiM, 02-14-2024, 05:20 PM
10 responses
181 views
0 likes
Last Post jeronymite  
Working...
X