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

Bandas de MANCUSO (Traiding View to NT*)

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

    Bandas de MANCUSO (Traiding View to NT*)

    Hi, your cant help me to convert this code to NT8?

    //@version=3
    study("Bandas de MANCUSO", shorttitle="MANCUSO Bands ", overlay=true)
    rangoL_3 =sma(low,3)
    rangoH_3 = sma(high,3)
    promRango = (rangoH_3 - rangoL_3) * 2 // rango promedio de los últimos 3 dias multiplicado x 2
    Minimo = ema(low, 10) - promRango // resultado minimos
    Maximo = ema(high, 10) + promRango // resultado maximos
    Media = avg(Maximo,Minimo) // media entre bandas
    cierre = close // precio de cierre
    plot(Media, title='Promedio', linewidth= 2, color = yellow)
    plot(Maximo, title='Maximos', linewidth= 2, color = red)
    plot(cierre, title='Cierre', linewidth= 2, color = lime, trackprice = true )
    plot(Minimo, title='Minimos', linewidth= 2, color = purple)

    #2
    Hello cocoescala,

    Thank you for your note.

    There is not an official indicator/strategy converter which takes scripts from TradingView and converts them to NT8 however on the forum there is a post which provides script for conversion.



    I’d like to mention its best to do a manual conversion for accuracy as not all scripts are simple enough to be converted directly.

    Also below I’ve provided a link to code breaking changes which you should consider when converting your scripts:



    Converting customer code is out of the scope of NinjaScript support however if you’d like I could have someone from our business development team pass over a list of third party developers that you could contact about debugging your code.

    Please let us know if you need further assistance.
    Alan P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by FrazMann, Today, 11:21 AM
    0 responses
    3 views
    0 likes
    Last Post FrazMann  
    Started by geddyisodin, Yesterday, 05:20 AM
    8 responses
    51 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    10 responses
    36 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by DayTradingDEMON, Today, 09:28 AM
    4 responses
    24 views
    0 likes
    Last Post DayTradingDEMON  
    Started by George21, Today, 10:07 AM
    1 response
    19 views
    0 likes
    Last Post NinjaTrader_ChristopherJ  
    Working...
    X