Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Reference to indicator color

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

    Reference to indicator color

    I am trying to build a strategy that refers to the plot color because the indicator (and others like it) doesn't output any specific values that can be used as a trigger (not that I can figure anyway), only changes color. I am setting up the formula as shown in picture, plot [0] == blue [0], but that doesn't seem to work, i.e. the sound doesn't play when the color changes to blue. I tried looking at the code of the indicator to see if I could change it so that it output a different number for each color, but no joy at this point. I would appreciate any help. Thank you.
    Attached Files

    #2
    I get why it's not working now, cause blue, pink, etc. is not the result of plot[0] but separate outputs. Hmmm.

    Comment


      #3
      So I tried adding this:

      Plot1.Set(Value[0] < Close[0] ? 0 : (Value[0] > Close[0] ? 1 : 2));

      and this

      Plot1.Set(Values[1][0] = Value[0] ? 0 : (Values[2][0] = Value[0] ? 1 : 2));


      to the original code (not at the same time), but it did't like either one. It gives me error code CS0103, which says I most likely have a typo, but I don't think that is the problem. Thank you.

      Comment


        #4
        gawd, making it way more complicated than it needed to be. just had to sleep on it.

        Comment


          #5
          vegasfoster, just to clarify, you've got a working solution now?
          AustinNinjaTrader Customer Service

          Comment


            #6
            Figured that part out, but still working on the overall concept, will post if anything worthwhile. Thanks.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by f.saeidi, Today, 11:02 AM
            1 response
            1 view
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by geotrades1, Today, 10:02 AM
            4 responses
            12 views
            0 likes
            Last Post geotrades1  
            Started by rajendrasubedi2023, Today, 09:50 AM
            3 responses
            15 views
            0 likes
            Last Post NinjaTrader_BrandonH  
            Started by lorem, Today, 09:18 AM
            2 responses
            11 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by geddyisodin, Today, 05:20 AM
            4 responses
            30 views
            0 likes
            Last Post geddyisodin  
            Working...
            X