Search found 37 matches
- Mon Jan 16, 2006 2:45 am
- Forum: VCL
- Topic: Labels on top of CandleSeries !!
- Replies: 1
- Views: 4062
Labels on top of CandleSeries !!
I need help to write text (3-4 chars) on top of the highest point of selected candlesticks. The code stub I am using is given below (does not draw text):- procedure TFChart01.plotcspatterns; var i:integer; FromPoint,ToPoint:TPoint; begin // Skip first 2 candles for i:=2 to Series1.Count-1 do begin /...
- Wed Dec 14, 2005 1:47 pm
- Forum: VCL
- Topic: Clarifications on TeeChart - VCL (Delphi 7)
- Replies: 7
- Views: 13581
Clarifications - TeeChart
Narcis,
Thanks a lot for the wonderful code !! Will appreciate if you could send me the complete project in zipped format.
Regards,
Satish
Thanks a lot for the wonderful code !! Will appreciate if you could send me the complete project in zipped format.
Regards,
Satish
- Wed Dec 14, 2005 3:32 am
- Forum: VCL
- Topic: Clarifications on TeeChart - VCL (Delphi 7)
- Replies: 7
- Views: 13581
Drawing rectangles/boxes on a OHLC chart
Narcis, I basically desire to draw Darvas boxes on an OHLC chart -not sure if you are conversant with them or not. A simple explanation is as follows:- 1. Assume 10 OHLC bars with index X index serials 1 to 10. 2. Need to draw a box which has X range index 1 to 10 (covers all 10 bars), top of box is...
- Mon Dec 12, 2005 10:08 pm
- Forum: VCL
- Topic: Clarifications on TeeChart - VCL (Delphi 7)
- Replies: 7
- Views: 13581
Clarifications Teechart -VCL
Narcis, Thanks for your quick response. Most of my issues are resolved. The Bollinger band overlap was being caused by absence of specification for the axis of the lower band series - have been able to correct that. I recommend that the documentation be beefed up for financial functions that use add...
- Sun Dec 11, 2005 3:10 pm
- Forum: VCL
- Topic: Clarifications on TeeChart - VCL (Delphi 7)
- Replies: 7
- Views: 13581
Clarifications on TeeChart - VCL (Delphi 7)
Dear Customer Support, I need your help for the following queries. My application has couple of series defined below (alongwith TChartgrid comments) aginst each:- type TFChart01 = class(TForm) Chart1: TChart; Series1: TCandleSeries; // Candle- Text,Close,High,Low,Close Index -0 Series5: TVolumeSerie...
- Fri Apr 29, 2005 2:51 am
- Forum: VCL
- Topic: FInding x0,y0,x1,y1 for ArrowHead Series
- Replies: 4
- Views: 8202
- Thu Apr 28, 2005 4:00 pm
- Forum: VCL
- Topic: Function Series under Program Control
- Replies: 3
- Views: 6621
- Thu Apr 28, 2005 3:59 pm
- Forum: VCL
- Topic: FInding x0,y0,x1,y1 for ArrowHead Series
- Replies: 4
- Views: 8202
- Wed Apr 27, 2005 12:45 pm
- Forum: VCL
- Topic: FInding x0,y0,x1,y1 for ArrowHead Series
- Replies: 4
- Views: 8202
FInding x0,y0,x1,y1 for ArrowHead Series
I have Series1 (TCandleSeries) & Series2(TLIneSeries). Series1 is displayed as a High-Low-Close bar. I need to plot arrows at points where the Series2 intersects Series1. Given that I know the series index at which the intersection occurs, how do I compute x0,y0,x1 & y1 coordinates - I believe they ...
- Wed Apr 27, 2005 12:39 pm
- Forum: VCL
- Topic: Function Series under Program Control
- Replies: 3
- Views: 6621
Function Series under Program Control
I am trying to generate a function series under program control, program stub given below:- Chart1.AddSeries(TLineSeries); lastseries:=Chart1.SeriesCount-1; Chart1.Series[lastseries].ParentChart:=Chart1; Chart1.Series[lastseries].SetFunction(TMovingAverageFunction.Create(Self)); // connect function ...
- Tue Apr 26, 2005 7:12 pm
- Forum: VCL
- Topic: Moving Cursor under Program Control
- Replies: 3
- Views: 6291
- Sun Apr 24, 2005 6:16 pm
- Forum: VCL
- Topic: Moving Cursor under Program Control
- Replies: 3
- Views: 6291
Moving Cursor under Program Control
I have a vertical cursor MyCursor (type TCursorTool) and have set the following statements in my program:- MyCursor:=TCursorTool.Create(Self); MyCursor.ParentChart:=Chart1; MyCursor.Series:=Series1; MyCursor.FollowMouse:=true; MyCursor.Style:=cssVertical; MyCursor.Visible:=true; MyCursor.UseChartRec...
- Tue Apr 12, 2005 6:10 pm
- Forum: VCL
- Topic: Few Clarifications !!
- Replies: 7
- Views: 11051
- Tue Apr 12, 2005 2:02 am
- Forum: VCL
- Topic: Buy/Sell Arrows at intersection of plot of two Series !!
- Replies: 3
- Views: 6165
Hi Narcis, I should have explained the problem in detail in my first post. Anyway here are the precise details:- 1. Have two series Series1(TCandleseries) & Series2(TLineSeries). Series2 is 30 days EMA of the CloseValue of Series1. Logic for plotting siganls is as follows:- a) Buy signal/green arrow...
- Mon Apr 11, 2005 1:35 pm
- Forum: VCL
- Topic: Buy/Sell Arrows at intersection of plot of two Series !!
- Replies: 3
- Views: 6165
Buy/Sell Arrows at intersection of plot of two Series !!
I need to plot buy/sell signal (green/red graphical arrows) for stocks related data on my chart. Is this feasible and how could one do that ?
Will appreciate suggestions/advice/code stubs. Thanks !!
Satish
Will appreciate suggestions/advice/code stubs. Thanks !!
Satish