Custom MultiLine DateTime Axis
Posted: Mon Jan 02, 2006 1:31 pm
We try to make "Technical Analysis" application as you know ...
Nature of Technical Analysis , DateTimeAxis (Bottom Axis) doesnt have gap.. Not only weekends but also some special days "Stock Market" could be close..So DateTime Axis couldnt behave as Calendar..For example
if our stock market is closed between 13 October and 18 October ,the data of 18th October will come after 13th October's..
And because of TeeChart doesnt have IgnoreNullDateTime method for DateTimeAxis we have to set
And we have to set Labels manually ..
And these problems not enough for us.. we will make new approach for DateTime Axis as you see:
#Removed by Glikoz #
i will try to show DateTime Axis as Year-Month,Month-Week,Month-Day pairs to amount of data...(Multi custom Line on bottom DateTime Axis)
What is your advice ..Is there any development on the DateTime Axis ?
Thx..
Nature of Technical Analysis , DateTimeAxis (Bottom Axis) doesnt have gap.. Not only weekends but also some special days "Stock Market" could be close..So DateTime Axis couldnt behave as Calendar..For example
if our stock market is closed between 13 October and 18 October ,the data of 18th October will come after 13th October's..
And because of TeeChart doesnt have IgnoreNullDateTime method for DateTimeAxis we have to set
Code: Select all
TChart1.Series[0].ValuesLists[0].DateTime = false;
Code: Select all
TChart1.Series[0].Labels = MyStringListLabels;
#Removed by Glikoz #
i will try to show DateTime Axis as Year-Month,Month-Week,Month-Day pairs to amount of data...(Multi custom Line on bottom DateTime Axis)
What is your advice ..Is there any development on the DateTime Axis ?
Thx..