Announcement

Collapse
No announcement yet.

Candlestick waist?

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

  • Candlestick waist?

    Question for Ckryza? Is there anyway you can develope an efs. for the candlestick waist. This is in correlation with MM's strategy? Was'nt sure if you could, I am thinking it an esignal issue. Let me know what scoop is.

    If you need more detail on what I am refering to let me know.

    Keep up the great work!

  • #2
    Is that basically drawing a line through the midpoint of the candle body (e.g., [close+open]/2) ?

    Chris

    Comment


    • #3
      you got it!

      Comment


      • #4
        Yes , that is it! I have another question should not be to hard. In the Murrey math line efs's.

        The Altbutton.efs and the Octave.efs

        The option list that pops up in them on the left

        EX-)
        Baby
        8
        16
        32
        64
        128
        Auto frame


        And so on... everytime a new chart or interval is initiated the full option window is always opened.

        Is there a way to have it appear as closed (+) instead of open(-) when changing charts or intervals?

        Thanks.

        Realm

        Comment


        • #5
          Just checking back in ... have'nt heard anything. Just curious if this is a efs that can be created or do I need to talk to esignal about this request?

          Thanks,

          Realm

          Comment


          • #6
            realm1
            The enclosed code will calculate and plot the midpoint of the candle body.
            Note however that lines cannot be plotted on top of candles
            Alex

            PHP Code:
            function preMain(){

                
            setStudyTitle("Waist");
                
            setPriceStudy(true);
                
            setCursorLabelName("Waist");
                
            setDefaultBarStyle(PS_SOLID);
                
            setPlotType(PLOTTYPE_FLATLINES);
                
            setDefaultBarFgColor(Color.blue);
                
            setDefaultBarThickness(2);

            }

            function 
            main(){

                var 
            vWaist = (open()+close())/2;

            return 
            vWaist;


            Comment


            • #7
              Does esignal have any interest in looking into make a line (waist ) on the candlesticks an option? If not, I would like to know, so I can search for someone that does.

              Thank you for the efs code!

              Realm

              Comment


              • #8
                We always are interested in suggestions and feedback from our clients. If you have any suggestions you would like to pass along, please email [email protected]
                Regards,
                Jay F.
                Product Manager
                _____________________________________
                Have a suggestion to improve our products?
                Click Support --> Request a Feature in eSignal 11

                Comment

                Working...
                X