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

Switching direction

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

    Switching direction

    I am trying to set up a notification for when an indicator switches direction. This seems pretty simple but my code isn't working and I'm not great with trouble shooting yet. What am I doing wrong here? Is there an easier way of doing this?

    Code:
    if 	(
    					
    	SMA(20)[0] < SMA(20)[1]
            && SMA(20)[1] > SMA(20)[2]
    			
    	)
    					
    	DrawArrowUp("UpTrend"+CurrentBar, 0, Low[0] - 5, bullColor);

    #2
    Hello BReal,


    Could you please reply with your script attached, so that I may investigate this behavior further?


    You can attach your strategy to your response by going to File > Utilities > Export NinjaScript > Export selected source files > select your script > select the right arrow > Export. The file will be located under (My) Documents\NinjaTrader 7\bin\Custom\ExportNinjaScript.




    You could post the script to your forum reply, or send an email to platformsupport [at] ninjatrader [dot] com with the script as an attachment. In the email please include a link to this forum thread.
    Shawn B.NinjaTrader Customer Service

    Comment


      #3
      Here is the file. Thanks!
      Attached Files

      Comment


        #4
        Hello BReal,


        You could use CurrentBar to ensure there are enough bars on the chart. Here is an example that checks to make sure you have at least 20 or more bars.
        Code:
        [LEFT]        protected override void OnBarUpdate()
                {
                           if(CurrentBar < 20)
                                 return;[/LEFT]
        Here is the CurrentBar help guide to assist you further.
        Here is a page from our forum on how to Make sure you have enough bars in the data series you are accessing.
        Shawn B.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by FrancisMorro, Today, 03:24 AM
        0 responses
        1 view
        0 likes
        Last Post FrancisMorro  
        Started by Segwin, 05-07-2018, 02:15 PM
        10 responses
        1,770 views
        0 likes
        Last Post Leafcutter  
        Started by Rapine Heihei, 04-23-2024, 07:51 PM
        2 responses
        31 views
        0 likes
        Last Post Max238
        by Max238
         
        Started by Shansen, 08-30-2019, 10:18 PM
        24 responses
        944 views
        0 likes
        Last Post spwizard  
        Started by Max238, Today, 01:28 AM
        0 responses
        11 views
        0 likes
        Last Post Max238
        by Max238
         
        Working...
        X