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 Rapine Heihei, Today, 08:19 PM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by Rapine Heihei, Today, 08:25 PM
    0 responses
    5 views
    0 likes
    Last Post Rapine Heihei  
    Started by f.saeidi, Today, 08:01 PM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by Rapine Heihei, Today, 07:51 PM
    0 responses
    6 views
    0 likes
    Last Post Rapine Heihei  
    Started by frslvr, 04-11-2024, 07:26 AM
    5 responses
    98 views
    1 like
    Last Post caryc123  
    Working...
    X