var fDesc=new Array();
fDesc[0] = "Channalyze is a technical analysis module for predicting market movement through the recombination of recently-stable cycles and their correlation with channels.
Main features:
- Determine which securities are passing through a phase when their major cycles are stable
- Determine when these stable cycles are like to change direction
- Add these cycles together to predict major market turning points
- Categorize cycles into low, medium and high wavelengths
- Add the stable cycles within each of these three wavelength categories to predict short, medium and long-term movements
- Confirm these movements by Channel Analysis";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}