Announcement

Collapse
No announcement yet.

creating a study combining..

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

  • creating a study combining..

    Hi

    I am trying add the below study, to the one attached. How can i do this?
    The problem i am facing is the one attached is one i created myself on formula wizard. But the one below is on an indicator that I am a member of(Kwikpop)... how can i make these 2 formulas into one??
    thx


    {
    If (close()> call("TSKP115SPLIT.esf")) {
    setBarFgColor(Color.RGB(0x00, 0x00, 0xFF));
    setPriceBarColor( Color.RGB(0x00, 0x00, 0xFF) );
    }


    {
    If (close()> call("TSKP115Split.esf")) {
    setBarFGColor(Color.RGB(0xFF, 0x00, 0x00) );
    setPriceBarColor(Color.RGB(0xFF,0x00,0x00) );
    }
    return null
    }
    Attached Files
    Last edited by mashhad; 12-19-2004, 06:12 PM.

  • #2
    mashhad
    You may want to contact the developer of the third party indicator and have them provide you with the necessary assistance since they know what is required to call their efs.
    Alex

    Comment


    • #3
      I think i miss-communicated here,
      the 3rd party has already provided me with the study that I wrote below. (see attached)...
      I am a member of the 3rd party software.. there is no issues there,

      my question is i don;t know how to combine the 2 together so i can run them at the same time on the same chart,


      at the moment, i have to run 2 charts!!

      can you show me how i can re-write this, so i can combine them into 1 study and not have to run 2 charts ??

      thanks
      Attached Files
      Last edited by mashhad; 12-20-2004, 12:38 PM.

      Comment

      Working...
      X