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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        80 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        40 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        63 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        63 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        54 views
        0 likes
        Last Post CarlTrading  
        Working...
        X