starting with easy language

Discussion in 'Strategy Building' started by jayfrenchdude, Sep 21, 2005.

  1. hey guys im trying to create my first indicator on tradestation with easylanguage, and its not that easy to me ... lol ... im a beginner, could someone give me a hand ?
    I wana create the Force Index Dr Elder talks about in his books.
    He says :
    Force Index = Volume Today * (Close Today - Close Yesterday)

    It seems pretty easy put i have no clue how to write it in easy language.

    Thanks for your help,
     
  2. mbs85743

    mbs85743

    Try this:

    { Force Index = Volume Today * (Close Today - Close Yesterday)
    }


    Value1 = Volume * (Close - Close[1]) ;
    Plot1( Value1, "Force Index" ) ;
     
  3. thanks ... it wasnt that complicated :p