Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Fibonacci tool without price

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

    #16
    Originally posted by s.kinra View Post
    Hello Frank,
    I've modified original Fib tool so now it shows only the Levels, you can further modify as required. Here you get the modified FibLevels (Fibonacci Retracement & Fibonacci Extension only).
    Note: This is drawing tool only & can't be called from within indicator thru code, if you need it you have to update it accordingly.
    Hope it helps!
    Hello S.,
    thank you very much for your help!
    I've already imported the script - it works fine.
    I live in Germany.
    If i can help you in any way, please let me know.
    Have a nice day!
    Frank

    Comment


      #17
      Hello Frank,
      Glad to know its working for you, thanks for your wishes!

      Comment


        #18
        Originally posted by s.kinra View Post
        Hello Frank,
        Glad to know its working for you, thanks for your wishes!
        Hello S.,
        I have one last wish regarding this script.
        Can you please format it as integer without %?
        Thanks in advance!
        Frank

        Comment


          #19
          Hello Frank,
          Your wish granted, enjoy!
          Attached Files

          Comment


            #20
            Originally posted by s.kinra View Post
            Hello Frank,
            Your wish granted, enjoy!
            Yes, I do.
            Thank you very much!

            Comment


              #21
              Originally posted by s.kinra View Post
              Hello Frank,
              Your wish granted, enjoy!
              How could it be done to trace the retracement and the extension at the same time, but the retracement taking from point B and C of the extension.

              Comment


                #22
                Hello TraderEleganate,
                I not very sure what you're asking, are you willing to have fib retracement & extension in single tool ? Well, I've never used it that way but you can try to do it by modifying original fib extension tool & adding retracements as you need.
                Hope it helps!

                Comment


                  #23
                  Originally posted by s.kinra View Post
                  Hello TraderEleganate,
                  I not very sure what you're asking, are you willing to have fib retracement & extension in single tool ? Well, I've never used it that way but you can try to do it by modifying original fib extension tool & adding retracements as you need.
                  Hope it helps!
                  Does it have a structure of how it works but the backspace and extension to see what things to eliminate but less? then I have a problem with the indicator part, it draws me the points at the zero point

                  Comment


                    #24
                    Hello TraderEleganate,
                    Can you share your exact problem with indicator, with this I am unable to figure out your issue, please elaborate your issues with snapshot or code snippets.

                    Comment


                      #25
                      Originally posted by s.kinra View Post
                      Hello TraderEleganate,
                      Can you share your exact problem with indicator, with this I am unable to figure out your issue, please elaborate your issues with snapshot or code snippets.
                      I have two problems attached in 2 image on one hand it plots me at the zero point the entry color light blue and the other the yellow target does not draw me when it is bearish it only makes one point

                      // si la tendencia es alcista
                      if (CurrentTrend[1] == 1 && CurrentTrend[0] == 1){
                      // si el precio esta por debajo del precio de entrada se sigue dibujando la linea de entrada

                      if(Entry[1] > High[0]){
                      Entry[0] = Entry[1];
                      }
                      else{
                      Target[0] = target ;
                      }
                      }

                      // si la tendencia es bajista
                      if (CurrentTrend[1] == 3 && CurrentTrend[0] == 3){
                      // si el precio esta por arriba del precio de entrada se sigue dibujando la linea de entrada

                      if(Entry[1] < Low[0]){
                      Entry[0] = Entry[1];
                      }
                      else{
                      Target[0] = target ;
                      }
                      }

                      Comment


                        #26
                        Hello TraderEleganate,
                        It seems Entry is not defined before your if statements & so Entry is plotting at 0. Try to use else if for bullish & bearish conditions so both are calculated at same time, this should fix non plotting in case bearish. I would suggest you to use prints so you can understand whats going wrong & fix it easily.
                        Hope it helps!

                        Comment


                          #27
                          [CITA = s.kinra; n1175765] Hola TraderEleganate,
                          Parece que Entry no está definido antes de sus declaraciones if y, por lo tanto, Entry se traza en 0. Intente usar else if para condiciones alcistas y bajistas para que ambas se calculen al mismo tiempo, esto debería arreglar no trazar en caso de bajista. Le sugiero que use impresiones para que pueda comprender qué va mal y solucionarlo fácilmente.
                          ¡Espero que te ayude! [/ QUOTE]


                          tampoco se pudo resolver .. aquí está el código completo ..



                          // si la tendencia es alcista
                          if (CurrentTrend [1] == 1 && CurrentTrend [0] == 1) {
                          // si el precio esta por debajo del precio de entrada se sigue dibujando la línea de entrada

                          if (Entrada [1]> Alto [0]) {
                          Entrada [0] = Entrada [1];
                          }
                          else {
                          Target [0] = target;
                          }
                          }

                          // si la tendencia es bajista
                          if (CurrentTrend [1] == 3 && CurrentTrend [0] == 3) {
                          // si el precio esta por arriba del precio de entrada se sigue dibujando la línea de entrada

                          if (Entry [1] <Bajo [0]) {
                          Entrada [0] = Entrada [1];
                          }
                          else {
                          Target [0] = target;
                          }
                          }



                          }



                          Last edited by TraderElegante; 10-21-2021, 08:23 AM.

                          Comment


                            #28
                            Hello TraderEleganate,
                            As I pointed out earlier, you need to define all values before conditions to avoid 0 plot. In your code, you missed ":" while defining Entry[0] & target, not sure it was compiling for you.
                            A better way would be to define all plots initially & then make them transparent based on diff conditions, this will ensure no plot is taking 0 value & no plot will be n/a so your missing plots will also be solved. For your second issue, target making one point the issue is that you are not using Target[0] = Target[1]; under any condition so its plotting only once & so single point.
                            You can further add prints to understand in a better way.
                            Hope it helps!

                            Comment


                              #29
                              Originally posted by s.kinra View Post
                              Hello TraderEleganate,
                              As I pointed out earlier, you need to define all values before conditions to avoid 0 plot. In your code, you missed ":" while defining Entry[0] & target, not sure it was compiling for you.
                              A better way would be to define all plots initially & then make them transparent based on diff conditions, this will ensure no plot is taking 0 value & no plot will be n/a so your missing plots will also be solved. For your second issue, target making one point the issue is that you are not using Target[0] = Target[1]; under any condition so its plotting only once & so single point.
                              You can further add prints to understand in a better way.
                              Hope it helps!
                              if I solve it .. x example now the error that throws me is when if (entry <height [0]) stops drawing but when it returns it draws again .. any idea how I can do?

                              Comment


                                #30
                                Hello TraderEleganate,
                                I couldn't understand your question. If you're asking how to make them transparent, you need PlotBrushes[0][0] = Brushes.Transparent; for doing this, keep it under some conditions when you don't need that plot.
                                Hope it helps!

                                Comment

                                Latest Posts

                                Collapse

                                Topics Statistics Last Post
                                Started by Geovanny Suaza, 02-11-2026, 06:32 PM
                                0 responses
                                668 views
                                0 likes
                                Last Post Geovanny Suaza  
                                Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                                0 responses
                                377 views
                                1 like
                                Last Post Geovanny Suaza  
                                Started by Mindset, 02-09-2026, 11:44 AM
                                0 responses
                                110 views
                                0 likes
                                Last Post Mindset
                                by Mindset
                                 
                                Started by Geovanny Suaza, 02-02-2026, 12:30 PM
                                0 responses
                                575 views
                                1 like
                                Last Post Geovanny Suaza  
                                Started by RFrosty, 01-28-2026, 06:49 PM
                                0 responses
                                580 views
                                1 like
                                Last Post RFrosty
                                by RFrosty
                                 
                                Working...
                                X