Announcement

Collapse
No announcement yet.

Cci Stoch

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

  • Cci Stoch

    Is it possible to put this code from TradeStation into Esignal ?

    If so, can someone perform this task and post the efs here ?

    TradeStation code for the CCI-stochastic indicator (CCI-STO), p. 52 (courtesy of Mark Mills):

    {Average(3,(Today's 14-day CCI reading - Lowest 14-day CCI reading (over the past 5 periods)/Highest 14-day
    CCI reading (over the past 5 periods) - Lowest 14-day CCI reading (over the past 5 periods))*100)

    CCI-Stochastic}

    inputs:
    CCILength( 14 ),
    HighLowPeriod( 5 ),
    Smooth( 3 ) ;
    variables:
    TodayCCI( 0 ),
    TodayLowCCI( 0 ),
    TodayHighCCI( 0 ),
    CCISto( 0 ) ;
    TodayCCI = CCI( CCILength ) ;
    TodayLowCCI = Lowest( TodayCCI, HighLowPeriod ) ;
    TodayHighCCI = Highest( TodayCCI, HighLowPeriod ) ;
    if CurrentBar > Smooth + HighLowPeriod then
    begin
    CCISto = Average((TodayCCI - TodayLowCCI)/(TodayHighCCI - TodayLowCCI), Smooth );
    Plot1( CCISto, "CCISto");
    end ;

  • #2
    This indicator was featured in Active Trader magazine.

    It looks very interesting for, perhaps, a pullback entry system.

    Anyone interested in creating an EFS ?

    Comment


    • #3
      It is already been done by Jason K. Look in the EFS Library section here and there is a specific set of threads for Active Trader and you will find it.

      Comment


      • #4
        Thanks.

        I didn't see it when I did a search.

        Comment

        Working...
        X