Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Returning Stochastic %K-%D as value in Market Analyzer indicator

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

    Returning Stochastic %K-%D as value in Market Analyzer indicator

    Hi all,

    I'm interested in the stochastic value of %K-%D as a column in the Market Analyzer. However, the Stochastic Indicator only allows K or D to be returned, not the difference. Would I need to develop a custom indicator to do this? If so a sample code snippet or link to one would be appreciated.

    Thanks!

    John

    #2
    Hello John,
    Thanks for writing in and I am happy to assist you.

    Yes you have to build a new indicator to calculate the difference. A basic code snippet will be:
    Code:
    protected override void OnBarUpdate()
    {
    	Plot0.Set(Stochastics(7, 14, 3).K[0] - Stochastics(7,14,3).D[0]);  //Plot0 is the Plot data series
    }
    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      This is perfect, thank you so much!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by r68cervera, Today, 05:29 AM
      0 responses
      2 views
      0 likes
      Last Post r68cervera  
      Started by geddyisodin, Today, 05:20 AM
      0 responses
      3 views
      0 likes
      Last Post geddyisodin  
      Started by JonesJoker, 04-22-2024, 12:23 PM
      6 responses
      35 views
      0 likes
      Last Post JonesJoker  
      Started by GussJ, 03-04-2020, 03:11 PM
      12 responses
      3,239 views
      0 likes
      Last Post Leafcutter  
      Started by AveryFlynn, Today, 04:57 AM
      0 responses
      6 views
      0 likes
      Last Post AveryFlynn  
      Working...
      X