PureBytes Links
Trading Reference Links
|
There are lots of "non programmers", including me before I started
using AB. It just takes time to pick the fundamentals of AFL
On Thu, 03 Mar 2005 22:19:55 -0000, LV <ebsn247@xxxxxxxx> wrote:
>
>
> Here is the full code. Go to Automatic Analysis, create a new ".afl"
> file, paste the code, set the symbol filters as you need and hit
> "Explore" button. Lots of us here are not programmers. It just takes
> some time to learn all the stuff.
> ---------
>
> // Old software's code:
> // Range = (((H - L) + (H1 - L1) + (H2 - L2) + ( H3 - L3) + (H4 -
> L4)) / 5);
>
> Filter = 1;
> Range = MA( H-L, 5);
> AddTextColumn( FullName(), "Name", 25);
> AddColumn( Range, "Range", 1.2 );
> AddColumn( Open, "Open", 1.2 );
> AddColumn( High, "High", 1.2 );
> AddColumn( Low, "Low", 1.2 );
> AddColumn( Close, "Close", 1.2 );
> AddColumn( Volume, "Volume", 1.0 );
>
> // Filter=1 - all symbols and quotes are accepted
> // 1.2 - number format with 2 decimal digits
>
> ---------
> > This is the formula from my present program that I tried to use:
> > Range = (((H - L) + (H1 - L1) + (H2 - L2) + ( H3 - L3) + (H4 - L4))
> / 5);
> >
> > I am wondering if I am getting in over my head in attempting to use
> > AmiBroker when I am not a computer programmer? Do any non-programmer
> > traders use AmiBroker?
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|