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 lightsun47, Today, 03:51 PM
          0 responses
          5 views
          0 likes
          Last Post lightsun47  
          Started by 00nevest, Today, 02:27 PM
          1 response
          9 views
          0 likes
          Last Post 00nevest  
          Started by futtrader, 04-21-2024, 01:50 AM
          4 responses
          45 views
          0 likes
          Last Post futtrader  
          Started by Option Whisperer, Today, 09:55 AM
          1 response
          14 views
          0 likes
          Last Post bltdavid  
          Started by port119, Today, 02:43 PM
          0 responses
          9 views
          0 likes
          Last Post port119
          by port119
           
          Working...
          X