Search found 22 matches

by Gucci
Thu Sep 03, 2015 5:31 am
Forum: VCL
Topic: Easier way to axis Y value
Replies: 8
Views: 12300

Re: Easier way to axis Y value

Good day,

Sorry for the late reply, thank you very much this is exactly what I was looking for.

Have a nice day
by Gucci
Mon Aug 31, 2015 1:57 pm
Forum: VCL
Topic: Easier way to axis Y value
Replies: 8
Views: 12300

Re: Easier way to axis Y value

Hi,

I please see sample code with explanation.

Here is another screen shot of what I am trying,

example.png
example.png (89.96 KiB) Viewed 12435 times
by Gucci
Mon Aug 31, 2015 11:19 am
Forum: VCL
Topic: Easier way to axis Y value
Replies: 8
Views: 12300

Re: Easier way to axis Y value

This is what I am trying to explain procedure TForm6.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); var Index,IndexLine : Integer; xval , stock : Double; begin Index := tmpMyCandle.Clicked(X, Y); // GET INDEX OF CLICK CANDLE xval := Chart1.Axes.Bottom.CalcPosPoint(X); //INDEX O...
by Gucci
Mon Aug 31, 2015 10:26 am
Forum: VCL
Topic: Easier way to axis Y value
Replies: 8
Views: 12300

Re: Easier way to axis Y value

Sorry I think I lost you,

The only thing I asking if it is possible when my mouse is on the x axis, cant I get the exact value that is in the TchartGrid.

Example x = 2015/08/31
Give me the exact value of all Y series for the 2018/08/31; The answer in this case is 52.632 for Series 2
by Gucci
Mon Aug 31, 2015 9:38 am
Forum: VCL
Topic: Easier way to axis Y value
Replies: 8
Views: 12300

Easier way to axis Y value

Good day, Currently I am using the interpolation formula too axis my Y - values, but I found that my values does not match according to what the grid say. My question is as follows : I know what my x value is : example 2015-09-11 ( xval := Chart1.Axes.Bottom.CalcPosPoint(X); Why cant I now loop thro...
by Gucci
Fri Aug 28, 2015 12:20 pm
Forum: VCL
Topic: Stockhastic fast or slow
Replies: 7
Views: 10818

Re: Stockhastic fast or slow

Hi Yeray,

What is your direct email ? I need to ask you something off the chart.
by Gucci
Fri Aug 28, 2015 10:59 am
Forum: VCL
Topic: Stockhastic fast or slow
Replies: 7
Views: 10818

Re: Stockhastic fast or slow

Hi Yeray,

Any work around in the mean time maybe ? Or will it be better if I wright my own Stockhastic function ?


Help will be appreciated.
by Gucci
Thu Aug 27, 2015 4:09 pm
Forum: VCL
Topic: Stockhastic fast or slow
Replies: 7
Views: 10818

Re: Stockhastic fast or slow

Hi Yeray, Jip I already change the period, but with a stockhastic function you get a slowing period also. Please see this website : http://ta.mql4.com/indicators/oscillators/stochastic stockHastic := TStochasticFunction.Create(nil); with chart1 do begin tmpStockhastic := TLineSeries.Create(self); ad...
by Gucci
Wed Aug 26, 2015 6:35 pm
Forum: VCL
Topic: Stockhastic fast or slow
Replies: 7
Views: 10818

Stockhastic fast or slow

If I understand correctly Tchart at this stage only support a fast Stockhastic oscillator. Is their any way to support slow Stockhastic also. This below is a simple extract from the internet to explain the diffrence. %K Time Periods. Enter the number of time periods used in the stochastic calculatio...
by Gucci
Wed Aug 26, 2015 11:53 am
Forum: VCL
Topic: Draw custom value on y axis
Replies: 10
Views: 16900

Re: Draw custom value on y axis

Thank you so much. Money well spend on a great tool and support.
by Gucci
Wed Aug 26, 2015 10:23 am
Forum: VCL
Topic: Draw custom value on y axis
Replies: 10
Views: 16900

Re: Draw custom value on y axis

Hi Yeray

I am not 100% sure If I understand your solution, is it possible you can alter your last example attached.

Thank you so much
by Gucci
Tue Aug 25, 2015 4:48 pm
Forum: VCL
Topic: Draw custom value on y axis
Replies: 10
Views: 16900

Re: Draw custom value on y axis

Capture.JPG
Capture.JPG (84.81 KiB) Viewed 16976 times
Hi Yeray,

Thank you much for the nice and clean solution, what do you suggest I must do with the CandleSeries closing value. Must I create a seperate calculation or do you suggest I use your current calculateaxis to add that value in.

thank you again.
by Gucci
Tue Aug 25, 2015 5:42 am
Forum: VCL
Topic: Draw custom value on y axis
Replies: 10
Views: 16900

Re: Draw custom value on y axis

Good day support, Sorry to keep coming back to this, but I am starting to completely loose it with myself. my problem is as follows : I dynamically create a new function each time and a TAnnotationTool. I am trying on my SetAnnotationPosition to set each closing value to each custom axis created, bu...
by Gucci
Thu Aug 20, 2015 12:34 pm
Forum: VCL
Topic: Financial functions by code
Replies: 1
Views: 4676

Financial functions by code

Good day, I am trying to find in your documentation for examples of creating functions by code, the help file are referring to the following "Function is a component. When you add a new function you are adding a Series, defining a new function and setting it as FunctionType for the Series. Series1.S...
by Gucci
Thu Aug 13, 2015 7:15 pm
Forum: VCL
Topic: Determine X and Y values from mutiple functions
Replies: 6
Views: 13964

Re: Determine X and Y values from mutiple functions

Hi,

I have created a sample application to try and explain what I am trying to accomplish. I am trying to display all the values of the functions and candlestick if I move my mouse over any area of the chart. At this stage the value only diplay if the mouse points to a specific function.