Announcement

Collapse
No announcement yet.

efs for price bar, help

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

  • efs for price bar, help

    Hi,

    I just wondering if there is efs function to display price bar in High,Low,Close formation without the open, since I could not find option on esignal charting to display HLC.

    I appreciated if you could help or point me to the right direction.


    Thank you.
    - Haris -

  • #2
    The OHLC price information is displayed in the Cursor Window. You should try to use those..

    If you have specific requirements, you can try using this EFS. Y

    PHP Code:


    function preMain() {
        
    setPriceStudy(true);
        
    setStudyTitle("HLC");
        
    setCursorLabelName("H"0);
        
    setCursorLabelName("L"1);
        
    setCursorLabelName("C"2);
            

    }

    function 
    main() {
       
       
        return new Array (
    high(), low(), close());

    Brad Matheny
    eSignal Solution Provider since 2000

    Comment


    • #3
      Hi,

      I can see the value of OHLC on the cursor window, but I would like to display the price bar HLC instead of the default OHLC.

      When I click on the chart type menu, esignal platform only has OHLC, Candle, Line there is no HLC option.

      Since I analyse the chart using the high, low and close price, I don't need open on the price bar, it's cleaner and easier for me to look at and analyse the chart to just display HLC with out the open dash on the price bar.

      I hope it clarify my questions.

      Is there away to display HLC price bar in this format using efs since there is no option in esignal platform?

      Regards
      - Haris-

      Comment

      Working...
      X