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

resetting ray position

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

    resetting ray position

    HI, I would like to draw a horizontal ray going forward from the open of a candle which a signal was given, but to then have that same ray update to the latest candle once the next signal is given.

    #2
    Hello brucelevy,

    Thank you for your patience.

    Below is code that would draw a ray on the first instance and then set it to the second instance (or in my example that last instance of the signal). My example uses Close[0] > SMA(20)[0] as the signal.
    Code:
        public class TestRay : Indicator
        {
            #region Variables
            private int instance = 0;
    		private int barOfInstance;
    		private IRay myRay;
            #endregion
    
            /// <summary>
            /// This method is used to configure the indicator and is called once before any bar data is loaded.
            /// </summary>
            protected override void Initialize()
            {
                DrawOnPricePanel	= true;
                Overlay				= true;
            }
    
            /// <summary>
            /// Called on each bar update event (incoming tick)
            /// </summary>
            protected override void OnBarUpdate()
            {
                if(Close[0] > SMA(20)[0]) // Basic Signal
    			{
    				if(instance == 0) // first instance of our signal
    				{
    					myRay = DrawRay("myRay", 0, Close[0], -1, Close[0], Color.Black);
    					instance = 1;
    					barOfInstance = CurrentBar;
    				}
    				if(instance == 1
    					&& CurrentBar > barOfInstance) // second instance of our signal
    				{
    					myRay = DrawRay("myRay", (CurrentBar - barOfInstance), Close[(CurrentBar - barOfInstance)], 0, Close[0], Color.Black);
    					instance = 0;
    				}
    			}
            }
    
            #region Properties
            
            #endregion
        }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Skifree, Today, 03:41 AM
    3 responses
    12 views
    0 likes
    Last Post Skifree
    by Skifree
     
    Started by traderqz, Yesterday, 09:06 AM
    5 responses
    32 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by guillembm, Today, 11:25 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by owensd, 04-21-2024, 11:34 PM
    9 responses
    34 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by trilliantrader, 04-10-2024, 09:33 PM
    7 responses
    25 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Working...
    X