Announcement

Collapse
No announcement yet.

2004 Jan: eSignal_RisingDarkness.efs

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

  • 2004 Jan: eSignal_RisingDarkness.efs

    Grat job as well as the other .
    Just downloaded and already in Tick playback

    Thanks Jason
    Fabrizio L. Jorio Fili

  • #2
    Jason,

    Was wondering how to get Price%change bars to become more visually significant...their comparitive %change to volume is such that it's difficult to see their bars.
    Could a constant were multiplied, or have the 2 studies seperated into individual studies, then merged on chart...would either of those work?

    TIA.
    Michael

    Comment


    • #3
      Hello Michael,

      Splitting the formula into two and overlaying them would probably work better visually but would create a more complicated set of code. One of the formulas would need to pass some data to the other via setGlobalValue()/getGlobalValue(). I would try changing some of the preMain() settings first. Try different combinations of plot type, color and thickness for example.

      Or if you want to apply a constant to the price %chg, modify the return statement to do something similar to the following:

      PHP Code:
      return new Array(vVolChg, (1+vPriceChg) ); 
      Jason K.
      Project Manager
      eSignal - an Interactive Data company

      EFS KnowledgeBase
      JavaScript for EFS Video Series
      EFS Beginner Tutorial Series
      EFS Glossary
      Custom EFS Development Policy

      New User Orientation

      Comment

      Working...
      X