Indicators Examples and interpretation of many commonly used
indicators.
Custom
Formulas Custom explorations, indicators and trading systems.
Price
Charts Examples and interpretation of all charts used in
technical analysis.
MetaStock
Trading System - Commodity
Channel Index Buy and Sell Signals
rev. 01/06/97
This system
generates buy and sell signals based on the
criteria using the Commodity Channel Index
indicator. It enters a long position when
yesterday's 14 period CCI is greater than -250 and
today's 14 period CCI is less than -250. It will
close long according to the criteria you specify
in close long. It enters a short position when
yesterday's 14 period CCI is less than 250 and
today's 14 period CCI is greater than 250 and
closes short according to the criteria you specify
in close short.
Enter
Long:
When( Ref(CCI( 14 ) ,-1 ) ,> ,-250 )
AND When(CCI( 14 ) ,< ,-250 )
Close
Long:
When( enter your criteria here )
Enter
Short:
When( Ref(CCI( 14 ) ,-1 ) ,< ,250 )
AND When(CCI( 14 ) ,> ,250 )
Close
Short:
When( enter your criteria here )
** You
can change to a different periodicity other than
14 by changing every occurrence of 14 with the
desired periodicity.