Hello;
From TJ in 2007
/////////////////////////////
Hello,
Don't forget that BeginValue / EndValue functions allow you to
calculate ANYTHING
based on two selected values (i.e. range).
SetChartOptions(
2, chartShowDates );
bv = BeginValue(
Close );
ev = EndValue(
Close );
Plot( C, "Price", colorBlack, styleCandle );
Title = "Change between markers = "
+ ( ev - bv ) + " ("
+ 100 * ( ev - bv
)/bv + "%)";
Then use range markers (double click for start , double click for end
);
Best regards,
Tomasz Janeczko
amibroker.com
///////////////////////////////
Regards,
JG
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of Anthony Faragasso
Sent: Saturday, February 27, 2010
8:05 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] start and end
chart markers
Does anyone have a generic template using the start and end
chart markers ?
I would like to calculate some statistics between selected
marker periods....I have not
used these markers and do not know where or how to begin...
Thank you for any help that can be provided.