Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Size of bars in histogram

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

    Size of bars in histogram

    Hello!
    Let's have a look on the histogram of MACD for example plotted on the chart. When we look at the right side of the histogram, we see some numbers representing I think the scale. So with the cursor on a bar it is possible to have its size. These numbers could not be representing the prices since we have currently for ES 500 for example 4272 and 1.9 for the Diff of MACD on histogram.

    Is there a way to have this numbers of the scale of histogram in the script? Or is there a way to transform the prices to the numbers on the histogram?

    Many thanks in advance.

    #2
    Hello Stanfillirenfro,

    Thank you for your post.

    If I'm understanding correctly, you're wanting to use the plot values of the MACD in a NinjaScript indicator or strategy, is that correct?

    If so, the answer is yes, those are all exposed as plots and may be used in conditions within a script.

    Please see our help guide here:



    For example:

    Code:
    // Prints the current MACD value
    double value = MACD(12, 26, 9)[0];
    Print("The current MACD value is " + value.ToString());
    
    // Prints the current MACD average value
    double value = MACD(12, 26, 9).Avg[0];
    Print("The current MACD average value is " + value.ToString());
    
    // Prints the current MACD difference value
    double value = MACD(12, 26, 9).Diff[0];
    Print("The current MACD difference value is " + value.ToString());
    Please let us know if we may be of further assistance to you.

    Comment


      #3
      Many thanks Kate for your quick reply and help!

      It is was I was looking for.

      Many thanks again!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      571 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      330 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      548 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      549 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X