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 GussJ, 03-04-2020, 03:11 PM
      11 responses
      3,222 views
      0 likes
      Last Post xiinteractive  
      Started by andrewtrades, Today, 04:57 PM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by chbruno, Today, 04:10 PM
      0 responses
      7 views
      0 likes
      Last Post chbruno
      by chbruno
       
      Started by josh18955, 03-25-2023, 11:16 AM
      6 responses
      438 views
      0 likes
      Last Post Delerium  
      Started by FAQtrader, Today, 03:35 PM
      0 responses
      10 views
      0 likes
      Last Post FAQtrader  
      Working...
      X