Announcement

Collapse
No announcement yet.

Candle Stick Indicator

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

  • #16
    Venture
    You don't need the candlestick indicator to do what you are trying to accomplish. All you need to do is return hlc3() or close(), etc to the chart in a non price study (as shown in the basic example enclosed below).
    You may also want to see the SymbolCompareAsNPS_EFS2.efs which is available here
    Alex

    PHP Code:
    function preMain(){
        
    setPriceStudy(false);
        
    setCursorLabelName("HLC/3");
    }

    function 
    main(){
        return 
    hlc3();

    Comment


    • #17
      Price Line chart study

      Thanks Alexis, Exactly what I need, and the reference may guide me to get close.
      Regards, Venture99

      Comment


      • #18
        Venture
        You are most welcome
        Alex

        Comment


        • #19
          Price chart Line

          Ok It works great, Now the detail I forgot to ask.
          Want to specify a symbol different than in main price chart AND
          a independant interval. Need more help if you can spare the time.
          Regards, Venture99

          Comment


          • #20
            Venture
            See this post for a complete series of examples on the syntax required by the sym() and inv() functions which enable you to call external symbols and/or intervals (see also the corresponding linked articles in the EFS KnowledgeBase for the description of those functions)
            Alex

            Comment

            Working...
            X