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 fitspressoburnfat, Today, 04:25 AM
      0 responses
      2 views
      0 likes
      Last Post fitspressoburnfat  
      Started by Skifree, Today, 03:41 AM
      1 response
      4 views
      0 likes
      Last Post Skifree
      by Skifree
       
      Started by usazencort, Today, 01:16 AM
      0 responses
      1 view
      0 likes
      Last Post usazencort  
      Started by kaywai, 09-01-2023, 08:44 PM
      5 responses
      603 views
      0 likes
      Last Post NinjaTrader_Jason  
      Started by xiinteractive, 04-09-2024, 08:08 AM
      6 responses
      23 views
      0 likes
      Last Post xiinteractive  
      Working...
      X