Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to change color to ichimoku cloud

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

    How to change color to ichimoku cloud

    I use the Ichimoku indicator that NinjaTrader Josh added to the shared indicators section.

    I want to use a black background but it's hard to see the standard red/blue cloud on a black background. Surprisingly, the cloud colors are not an input choice.

    Can someone tell me how to change the code to change those background colors?

    I've looked thru the code but I can't seem to find where it codes those colors as blue and red.

    Thanks,
    TC

    #2
    Originally posted by toddaclark View Post
    I use the Ichimoku indicator that NinjaTrader Josh added to the shared indicators section.

    I want to use a black background but it's hard to see the standard red/blue cloud on a black background. Surprisingly, the cloud colors are not an input choice.

    Can someone tell me how to change the code to change those background colors?

    I've looked thru the code but I can't seem to find where it codes those colors as blue and red.

    Thanks,
    TC
    use dimgray for backgroundcolor or chance in the code the color with argb (alphachannel) then you can set on a black background the transparency and you see the lines better ...

    int filter = 50;

    ... = Color.FromArgb(filter, Color.Blue);

    Comment


      #3
      WH,

      Thanks for the reply.

      I'm not sure I completely understand what you are telling me. I want to change the blue cloud to yellow and the red cloud to white or something like that. I'm not trying to change the grey line under the cloud.

      Does that make sense?

      TC

      Comment


        #4
        Please check those two color variables out and change those to your liking in the code.

        Code:
         
        private Color bandAreaColorUp = Color.Blue;
        private Color bandAreaColorDown = Color.Red;

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        34 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        128 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        183 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        94 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        138 views
        0 likes
        Last Post cmoran13  
        Working...
        X