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

A simple question from a new NT programmer

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

    A simple question from a new NT programmer

    Hello everyone
    In spite of my poor english.....
    I was yesterday trying to write some basic indicators in NinjaScript (new for me)........I want to translate indicators developed in MetaStock........but when I tried to make something like 2*RSI or RSI+MACD (obviously writing it in C# way), the compiler told me that operator * or operator + where not applicable in the context
    I know is a very simple question, but, how is it suppossed I must write something like....

    double rsimacd

    rsimacd = rsi+macd

    Value.Set (rsimacd)

    Best Regards

    #2
    You could do something like:

    Code:
    double doubleRsi = RSI(14, 3)[0] * 2;
    Value.Set(doubleRsi);
    There are about 6 indicator development tutorials in the Help Guide. This is a great way to get started understanding the concepts behind indicator development using NinjaTrader.
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Rapine Heihei, Yesterday, 07:51 PM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by kaywai, Today, 06:26 AM
    1 response
    6 views
    0 likes
    Last Post kaywai
    by kaywai
     
    Started by ct, 05-07-2023, 12:31 PM
    6 responses
    205 views
    0 likes
    Last Post wisconsinpat  
    Started by kevinenergy, 02-17-2023, 12:42 PM
    118 responses
    2,780 views
    1 like
    Last Post kevinenergy  
    Started by briansaul, Today, 05:31 AM
    0 responses
    10 views
    0 likes
    Last Post briansaul  
    Working...
    X