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

Paste indictor script in Strategy

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

    Paste indictor script in Strategy

    Good morning,

    I built an indicator, but I want to copy and paste the entire script into a strategy instead of adding the indicator as a private variable in the public class scope of the strategy. Is this possible?

    #2
    Hello AdeptistJune,

    You can copy logic from one script to another.

    Below is a link the NinjaScript Editor 401 training video which discusses this.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      AdeptistJune I do not think you really want to copy your code from an indicator to a strategy what you want to do is leverage your indicator in a strategy they will get out of sync quickly

      Ninja Documentation

      search AddChartIndicator()


      Take the case of having an indicator with a name of IndicatorName

      Create a reference to it


      indicator named: MyIndicator
      strategy named: MyStrategy

      Under Public Class MyClass
      private IndicatorNameMyIndicator;

      under else if (State == State.DataLoaded)
      MyIndicator = InicatorName(Period,StopTicks,Risk_Planned);
      MyIndicator.Panel=2;
      AddChartIndicator(MyIndicator);

      In onBarUpdate

      MyIndicator.Monitored_item[0]

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by ChartTourist, Today, 08:22 AM
      0 responses
      3 views
      0 likes
      Last Post ChartTourist  
      Started by LiamTwine, Today, 08:10 AM
      0 responses
      2 views
      0 likes
      Last Post LiamTwine  
      Started by Balage0922, Today, 07:38 AM
      0 responses
      5 views
      0 likes
      Last Post Balage0922  
      Started by JoMoon2024, Today, 06:56 AM
      0 responses
      6 views
      0 likes
      Last Post JoMoon2024  
      Started by Haiasi, 04-25-2024, 06:53 PM
      2 responses
      19 views
      0 likes
      Last Post Massinisa  
      Working...
      X