PureBytes Links
Trading Reference Links
|
Hi Jacco,
Programmers are speed freaks so they shorten everything and talk funny.
If you hang around them too long you will start to talk funny too (like
me!)
So, in notation format:
H stands for High;
L stands for Low;
They also love being mysterious and have their own secret language.
So:
/ stands for division (it is an operand, or an operator, which is a
term used in maths ... deep down all programmers are mathematicians in
drag)
I presume you mean:
- take the high plus the low and divide it by two AND
- assign the answer to a variable;
(put it in a marked box so you can reference it again later without
having to do the math all over again)
- plot the variable as a time series;
(a time series is the values that the variable has at different time
intervals, say daily, which are collectively stored in an a row of
marked boxes known as an array)
BTW I call it the Midpoint so as not to confuse it with the median
function i.e. Median() which is code module pre-written by Tomasz to
save me from having to do it myself (a functions code is hidden and
works in the background when you call, or reference it, by name).
example:
Midpoint = (H + L)/2;
A semicolon is used to mark the end of the statement (so that the
computer processes it as a whole).
Midpoint is the variable.
= is the assignment sign (not to be confused with mathematical equality
which is == e.g. 2 + 2 == 4;
Plot(Midpoint,"Midpoint",1,1);
copy and paste both lines into the FormulaEditor and then insert it as
an indicator.
Midpoint = (H + L)/2;
Plot(Midpoint,"Midpoint",1,1);
I had a bit of fun with some alternative plots, at the UKB, just to
demonstrate the principle of plotting custom lines (arrays).
http://www.amibroker.org/userkb/2007/08/26/combination-charts/
BTW you just learnt some psuedocode (the funny way programmers talk)
and some AFL :-)
Cheers,
brian_zee
--- In amibroker@xxxxxxxxxxxxxxx, "jaccopax" <jaccopax@xxx> wrote:
>
> hello,
>
> can i set AB. to base a line chart on high-low average price and how?
> i hope i don't have to learn AFL and program this.
>
> greets, jacco
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|