Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Change Indicator parameters based on condition

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

    Change Indicator parameters based on condition


    I am trying to change Indicator parameters based on condition (time). But I am unable to do so.
    I have tried putting the code in State.Configure , State.DataLoaded & OnBarUpdate()
    With on bar, the values don't match. With configure & data loaded, it errors out.
    Please advise & comment on the resource usage as well, if possible.

    if ((ToTime(Time[0]) >= 93000 && ToTime(Time[0]) < 110000))
    {
    currentVWAP = amaCurrentDayVWAP(Close, amaSessionTypeVWAPD.Custom_Hours, amaBandTypeVWAPD.Standard_Deviation, amaTimeZonesVWAPD.US_Eastern_Standard_Time, @"09:30", @"11:00", 1, 2, 3, 1, 2, 3);

    }
    else if ((ToTime(Time[0]) >= 110000 && ToTime(Time[0]) < 120000))
    {
    currentVWAP = amaCurrentDayVWAP(Close, amaSessionTypeVWAPD.Custom_Hours, amaBandTypeVWAPD.Standard_Deviation, amaTimeZonesVWAPD.US_Eastern_Standard_Time, @"11:00", @"12:15", 0.7, 1.25, 3, 0.7, 1.25, 3);
    }
    Print ("Current : " + currentVWAP.SessionVWAP[0]);


    Thanks in advance.



    #2
    Can someone from Ninja please comment on the above?
    Cheers!

    Comment


      #3
      Hello kashmiami,

      Welcome to the NinjaTrader forums!

      As a heads up, outside of our normal support hours the support has a minimal amount of representatives to provide replies and limited bandwidth to work on complex inquiries.
      The normal support hours are from 9:00 AM Eastern until 6:00 PM Eastern, Monday through Friday.

      The Time[0] series is available in OnBarUpdate as this is the time of the bar. This is not something that would be used in OnStateChange(). The Time series will not exist in State.Configure.

      When you mention: "With on bar, the values don't match". This would be expected. The indicator is being called at different times using different values supplied as the parameters. Different parameters will produce different values. Calling an indicator at different times, will produces values at that time which will different than calling an indicator at a different time.

      if ((ToTime(Time[0]) >= 93000 && ToTime(Time[0]) < 110000))
      {
      currentVWAP = amaCurrentDayVWAP(Close, amaSessionTypeVWAPD.Custom_Hours, amaBandTypeVWAPD.Standard_Deviation, amaTimeZonesVWAPD.US_Eastern_Standard_Time, @"09:30", @"11:00", 1, 2, 3, 1, 2, 3);
      }
      Is not the same as:
      else if ((ToTime(Time[0]) >= 110000 && ToTime(Time[0]) < 120000))
      {
      currentVWAP = amaCurrentDayVWAP(Close, amaSessionTypeVWAPD.Custom_Hours, amaBandTypeVWAPD.Standard_Deviation, amaTimeZonesVWAPD.US_Eastern_Standard_Time, @"11:00", @"12:15", 0.7, 1.25, 3, 0.7, 1.25,3);
      }
      Chelsea B.NinjaTrader Customer Service

      Comment


        #4
        Thanks for the response.
        Are we to assume then that the above is not possible ?
        The workaround for me was to define multiple currentvwaps in the above scenario which works, but I was trying to make it a bit elegant instead of having so many instances.
        Cheers!

        Comment


          #5
          Hello kashmiami,

          If you are calling an indicator with different parameters it would not be expected for the values to be same. Different data, different parameters, will return different values.

          That is nature of how data calculations work.
          Chelsea B.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by guillembm, Yesterday, 11:25 AM
          2 responses
          9 views
          0 likes
          Last Post guillembm  
          Started by junkone, 04-21-2024, 07:17 AM
          9 responses
          68 views
          0 likes
          Last Post jeronymite  
          Started by trilliantrader, 04-18-2024, 08:16 AM
          4 responses
          20 views
          0 likes
          Last Post trilliantrader  
          Started by mgco4you, Yesterday, 09:46 PM
          1 response
          11 views
          0 likes
          Last Post NinjaTrader_Manfred  
          Started by wzgy0920, Yesterday, 09:53 PM
          0 responses
          10 views
          0 likes
          Last Post wzgy0920  
          Working...
          X