PureBytes Links
Trading Reference Links
|
There
are undoubtedly many ways to organize AB information, some AB
users can pop up any type of information in a second. It is a matter of
personal choice.
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>Regarding the "use" of Amibroker the best resources are
those posted by TJ on this list on 8/9/2003.
<FONT face=Arial color=#0000ff
size=2>
For
formulas you might want to use some kind of a data base; I gave up on folders as
there are too many and it is hard to categorize some code. As your code grows in
complexity you end up with many variations of the same program and 1000s of
snippets you may want to keep for future use. I save interesting
code in a small data base program called Infoselect [
http://www.miclog.com/isover.htm ]. To be able to find any word or function
instantly is just great. This works well and is a real time saver for me. This
program is not free but there must be many other programs that can do the
same thing, perhaps at less cost.
<FONT face=Arial color=#0000ff
size=2>
Best
regards,
<FONT face=Arial color=#0000ff
size=2>Herman.
<FONT face=Tahoma
size=2>-----Original Message-----From: mrdavis9
[mailto:mrdavis9@xxxxxxxxxx]Sent: Saturday, August 09, 2003 5:52
PMTo: amibroker@xxxxxxxxxxxxxxxCc: dave
cogburnSubject: [amibroker] NEW AB HELP SYSTEM
Amibroker users are the most helpful group of
people on Planet Earth. I now have a huge
collection of great posts which tell how to do many things in Amibroker.
I have had little time or need to use these folders, because I am deriving so
much enjoyment experimenting with my homemade indicators in an attempt
to create a scan that will find ONLY the most
MAJOR tops and bottoms. I have organized these folders to enable me to access
any topic. Lets say that I want to find an actual code that uses
HHV. I simply access the following: AMIBROKER >HOW
TO>HHV. The HHV folder could easily have several sub folders,
and each of these subfolders could have subfolders and so on. This
system lets me quickly look for any subject. It is far from perfectly
organized because when I first started using Amibroker, I had only a vague
idea of what the posts were about. Even now, I am sure that my choices
of folder names leave a lot to be desired. I am sure that a lot of other
AB users have been saving posts for later referral. There may be AB
users who are interested in a private long-term cooperative project to glean
through my folders, and others folders in order to create what I think
would be a very user friendly Amibroker help system. Since I
am only semiliterate regarding how software works, this may be a ridiculous
suggestion. Maybe it would be much better to go through the archives to
do such a project. How does one use the archives. Do you enter a
search word, and it then returns a lot of posts that contain that search
word? Just an idea, that's all for now. Ron D
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=steve2@xxxxxxxxxxxxxxxxxxxx
href="">steve_almond
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Saturday, August 09, 2003 3:55
PM
Subject: Re: Re: [amibroker] Re: An
easy one
Tomasz,As you demonstrate over and over, almost all
of our questions are answered somewhere within your documentation.It
seem that many, like me, have difficulty finding the appropriate location of
the help we need (and, hence, we ask the same questions again and again).
This thread supplies an interesting example; a question about Stoplosses is
answered (in part) in an article about Equity at the Amibroker
site.Can I suggest one of two things, (these may already be
available - I may have missed them):1. You provide a short document
(FAQ?) which lists the available sources of information (help files,
Amibroker site, Amibroker Group, Amiquote group etc. etc.).2. You
(we?) generate a comprehensive index which covers all
documents.Others may see better solutions to this problem, but I
think some solution should be attempted to save you work and to save us
embarrasment!Steve>----- Original Message
----->From: "Tomasz Janeczko" <<A
href="">amibroker@x...>>To: Yahoo: <A
href="">amibroker@xxxxxxxxxxxxxxx>Sent:
Sat Aug 9, 2003 11:52 am>Subject: Re: [amibroker] Re: An easy
one>>Hello,>>The technique of plotting
stop-generated signals>is described in the documentation of ApplyStop
function:>>http://www.amibroker.com/guide/afl/afl_view.php?name=APPLYSTOP>and
equity
function:>>http://www.amibroker.com/guide/afl/afl_view.php?name=EQUITY>>Hope
this helps.>>Best regards,>Tomasz
Janeczko>amibroker.com>----- Original Message -----
>From: "wavemechanic" <<A
href="">wd78@x...>>To: <<A
href="">amibroker@xxxxxxxxxxxxxxx>>Sent:
Saturday, August 09, 2003 1:23 AM>Subject: Re: [amibroker] Re: An
easy one>>>> Leo:>> >> Thanks.
But what manual did you find this in? I looked in Help and 4.40>>
User's Guide.>> >> Bill>> >> -----
Original Message ----- >> From: "leonardot19" <<A
href="">leo.timmermans@x...>>> To:
<<A
href="">amibroker@xxxxxxxxxxxxxxx>>>
Sent: Friday, August 08, 2003 3:08 PM>> Subject: [amibroker] Re:
An easy one>> >> >> > Bill,>>
>>> > Hope this helps (it's in the manual)>>
>>> >
typeLoss=2;typeProfit=3;typeTrailing=4;typeNBar=6;>> >
BuyCond=<<Your Condition>>>> >
BuyPrice=0.995*Ref(C,-1);>> > Buy=IIf(L<0.995*Ref(C,-1) AND
BuyCond,1,0);>> > SellPrice=C;>> >
Sell=0;>> >
ApplyStop(stopTypeProfit,stopModePercent,1,True);>> >
ApplyStop(stopTypeTrailing,stopModePercent,3,True);>> >
ApplyStop(3,1,10); //STOP After 10Bars>> >
Equity(1);>> >
PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorGreen,0,C-ATR(1));>>
> PlotShapes(IIf>> >
(Sell==typeNBar,shapeDownArrow,shapeNone),colorRed,0,C+ATR(1));>>
> PlotShapes(IIf>> >
(Sell==typeProfit,shapeSmallDownTriangle,shapeNone),colorBrightGreen,>>
> 0,C+ATR(1));>> > PlotShapes(IIf>> >
(Sell==typeTrailing,shapeSmallDownTriangle,shapeNone),colorRed,0,C+AT>>
> R(1));>> >>> > Regards>> >
Leo>> >>> > --- In <A
href="">amibroker@xxxxxxxxxxxxxxx,
"wavemechanic" <wd78@x...>
wrote:>> > > Here's an easy one for the experts here. After
including>> > ApplyStop in a formula, how does one display the
stop on a chart?>> > >>> > >
Thanks.>> > >>> > > Bill>>
>>> >>> >>> >>> >
Send BUG REPORTS to bugs@x...>> >
Send SUGGESTIONS to suggest@x...>>
> ----------------------------------------->> > Post
AmiQuote-related messages ONLY to: <A
href="">amiquote@xxxxxxxxxxxxxxx>>
> (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)>>
> -------------------------------------------->> > Check
group FAQ at:>> <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html>>
>>> > Your use of Yahoo! Groups is subject to <A
href="">http://docs.yahoo.com/info/terms/>>
>>> >>> >> >> >>
Send BUG REPORTS to bugs@x...>> Send
SUGGESTIONS to suggest@x...>>
----------------------------------------->> Post AmiQuote-related
messages ONLY to: <A
href="">amiquote@xxxxxxxxxxxxxxx>>
(Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)>>
-------------------------------------------->> Check group FAQ
at:>http://groups.yahoo.com/group/amibroker/files/groupfaq.html>>
>> Your use of Yahoo! Groups is subject to <A
href="">http://docs.yahoo.com/info/terms/>>
>>
>>_____________________________________________________________Sent
by OnBoards: a bulletin board browserFree at <A
href="">http://www.automatedenterprises.com------------------------
Yahoo! Groups Sponsor ---------------------~-->Buy Ink Cartridges or
Refill Kits for Your HP, Epson, Canon or LexmarkPrinter at Myinks.com.
Free s/h on orders $50 or more to the US & Canada. <A
href="">http://www.c1tracking.com/l.asp?cid=5511<A
href="">http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM---------------------------------------------------------------------~->Send
BUG REPORTS to <A
href="">bugs@xxxxxxxxxxxxxSend SUGGESTIONS
to <A
href="">suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: <A
href="">amiquote@xxxxxxxxxxxxxxx (Web
page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to <A
href="">http://docs.yahoo.com/info/terms/
Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|