Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Delta Buy/Sell Volume

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

    Originally posted by NinjaTrader_Josh View Post
    Check Control Center logs for errors.
    Found this :

    6/25/2009 6:16:45 AM Default Error on calling the 'Dispose' method for indicator 'GomCD': Cannot write to a closed TextWriter.

    What does it mean ?

    Comment


      Means there is an issue with that indicator. Unfortunately I would not know what kind of C# things the author of that indicator is using. You may want to contact them directly with this bug report for them.
      Josh P.NinjaTrader Customer Service

      Comment


        I'm sure it will be seen . Thanks .

        Comment


          make sure you have an "recording ok" in the lower left corner.
          Unfortunately sometimes i have to hit F5 a couple of times for the indicator to open the file properly.

          Comment


            Originally posted by toulouse-lautrec View Post
            make sure you have an "recording ok" in the lower left corner.
            Unfortunately sometimes i have to hit F5 a couple of times for the indicator to open the file properly.
            Recording is always OK . Once the data is gone ,it's gone . There might have
            been 1 time when F5 worked in this situation . I think the indicator needs some additional back up code to make sure it can call the file . ??

            Comment


              This is great work Gomi. Thanks.

              Is historical bid ask and tick by tick indicator generation still on the agenda for NT 7.0. There is clearly demand for it
              Last edited by NickA; 06-30-2009, 06:03 AM.

              Comment


                Please see the list here for information on NT7. http://www.ninjatrader.com/webnew/NT7/NinjaTrader7.html
                Josh P.NinjaTrader Customer Service

                Comment


                  Thank you so much gomi,
                  Your indicator works very well for me.

                  but I have a small problem, when I use the filter to set the vol size
                  smaller than 99, then there will be nothing but a flat line, I have to
                  use the number at least 100. otherwise there will be flat line.

                  can you check it? thank you in advance!


                  Originally posted by gomifromparis View Post
                  BUG ALERT

                  Just found a problem with the detailed volume tick recorder.
                  As a result all files generated with "compress tick" to false are CORRUPT.
                  Real time value are correct though.

                  Please use following version, and sorry for the inconvenience.

                  I'm really sorry for the issue. Didn't test enough !

                  Comment


                    Hi Gomi,
                    Can the indicator be in candlestick type and the price be in bar type?

                    Comment


                      Hello Gomi .
                      Is there somewhere in the code that I can change the width of these bars ?
                      this is the cumulative updowntick in non cumulative plot . tia
                      Attached Files

                      Comment


                        Originally posted by T2020 View Post
                        Hello Gomi .
                        Is there somewhere in the code that I can change the width of these bars ?
                        this is the cumulative updowntick in non cumulative plot . tia
                        Anyone ----- have an idea how to do this ?

                        Comment


                          Great Work!

                          Originally posted by gomifromparis View Post
                          BUG ALERT

                          Just found a problem with the detailed volume tick recorder.
                          As a result all files generated with "compress tick" to false are CORRUPT.
                          Real time value are correct though.

                          Please use following version, and sorry for the inconvenience.

                          I'm really sorry for the issue. Didn't test enough !
                          Excellent work you have done with this Cumulative Delta study!

                          I hope in the future Ninjatrader will add additional Delta Bar capabilities into the Ninjatrader charting.

                          Comment


                            Coloring of Cumulative Delta Bars?

                            I tested out the new GomCD study and I wanted to know how if possible can I change the color of the cumulative delta bars? I wanted to make the candlestick outline/wick in black or some other color. Also, any way to change the color of the body of the delta candlesticks?

                            Thanks for any assistance!

                            Comment


                              Sorry guys, I'm in sort of holidays...

                              >but I have a small problem, when I use the filter to set the vol size
                              smaller than 99, then there will be nothing but a flat line, I have to
                              use the number at least 100. otherwise there will be flat line.

                              Maybe you're using the indicator on somethings that only sells on a multiple of 100, like shares maybe ?

                              >Can the indicator be in candlestick type and the price be in bar type?

                              Sorry, no. But you could force it in the code .
                              See the series of ifs that define the plotting method :
                              Code:
                              if((ChartControl.ChartStyle.ChartStyleType==ChartStyleType.HiLoBars)|| (chart==GomCDChartType.NonCumulativeChart && ForceHiLo))
                              >Is there somewhere in the code that I can change the width of these bars ?

                              You can use alt+down arrow.
                              or in the code :
                              Code:
                              Pen drawPen=new Pen(Color.Transparent,penSize);
                              define penSize to the value you want before this line.


                              >I tested out the new GomCD study and I wanted to know how if possible can I change the color of the cumulative delta bars? I wanted to make the candlestick outline/wick in black or some other color. Also, any way to change the color of the body of the delta candlesticks

                              He're the color coding part : you can use colors you wish, like drawPen.Color=Color.Red;


                              Code:
                                                  
                              if (direction==1)
                              {
                                      drawPen.Color=ChartControl.UpColor;
                              }
                              else if (direction==-1)
                              {
                                      drawPen.Color=ChartControl.DownColor;
                              }
                               else
                              {
                                       drawPen.Color=ColorNeutral;
                              }

                              Comment


                                WOW your VERY efficient!


                                Thanks!

                                Comment

                                Latest Posts

                                Collapse

                                Topics Statistics Last Post
                                Started by James650, 05-07-2024, 08:25 AM
                                3 responses
                                14 views
                                0 likes
                                Last Post NinjaTrader_ChristopherJ  
                                Started by xepher101, 05-10-2024, 12:19 PM
                                5 responses
                                66 views
                                0 likes
                                Last Post NinjaTrader_Jesse  
                                Started by Vitamite, Yesterday, 12:48 PM
                                3 responses
                                17 views
                                0 likes
                                Last Post NinjaTrader_ChelseaB  
                                Started by aligator, Today, 02:17 PM
                                0 responses
                                16 views
                                0 likes
                                Last Post aligator  
                                Started by lorem, 04-25-2024, 09:18 AM
                                22 responses
                                96 views
                                0 likes
                                Last Post lorem
                                by lorem
                                 
                                Working...
                                X