Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

simple math question

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

    simple math question

    I'm trying to add a 3rd line to the Stochastics %K and %D lines, where my third will be =
    (3K - 2D)

    right now i have two lines of code that read:

    jvalue=(int) Math.Round((3*D)-(2*K));

    J.Set(jvalue);


    my guess is i'm missing a [0] somewhere, but my attempts so far haven't worked.... can anyone help?

    #2
    To calculate the value of J using the current values of %D and %K, you'll need to access the '0th' (current) item in the indicator's value series, as so:

    jvalue=(int) Math.Round((3*stochasticsVariable.D[0])-(2*stochasticsVariable.K[0]));

    J.Set(jvalue);

    Hope this helps!

    Comment


      #3
      ah it seems to work now, thanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      164 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      319 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      246 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      350 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      179 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X