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 argusthome, 03-08-2026, 10:06 AM
        0 responses
        80 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        46 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        29 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        32 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        66 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X