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 halgo_boulder, 04-20-2024, 08:44 AM
      2 responses
      21 views
      0 likes
      Last Post halgo_boulder  
      Started by mishhh, 05-25-2010, 08:54 AM
      19 responses
      6,189 views
      0 likes
      Last Post rene69851  
      Started by gwenael, Today, 09:29 AM
      0 responses
      5 views
      0 likes
      Last Post gwenael
      by gwenael
       
      Started by Karado58, 11-26-2012, 02:57 PM
      8 responses
      14,830 views
      0 likes
      Last Post Option Whisperer  
      Started by Option Whisperer, Today, 09:05 AM
      0 responses
      2 views
      0 likes
      Last Post Option Whisperer  
      Working...
      X