PureBytes Links
Trading Reference Links
|
Hi Owen,
I'm joining the discussion very late, so apologies if my suggestion has
already been offered or tried.
In your AA code, do you have a buy and/or sell specified? If not, then no
arrows. Quick example which can run in either scan or explore (don't trade
on this <VBG>):
Cond1 = C > O;
Cond2 = C > Ref(H,-1);
Cond3 = C < O;
Cond4 = C < Ref(L,-1);
Cond5 = V > Ref(V, -1);
Buy = Cond1 AND Cond2 AND Cond5;
Sell = Cond3 AND Cond4 AND Cond5;
Filter = Buy OR Sell;
AddColumn(C, "Close");
AddTextColumn(WriteIf(Cond1 AND Cond2 AND Cond5,"Buy","Sell"),"ACTION");
The above should generate signals easily, and display on the default price
chart. Good luck.
Peace and Justice --- Patrick
-----Original Message-----
From: Owen Davies [mailto:owen5819@xxxxxxxxxxxx]
Sent: Wednesday, June 25, 2003 7:44 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Missing trade arrows
Jayson wrote:
> Owen,
> I am running the latest beta and arrows work fine. If you are sure your
code
> is OK then perhaps the problem is in your installation. Perhaps a
reinstall
> is in order??
Now that you mention it, that does seem like the next step. I'll see how it
goes. Thanks for the suggestion.
Owen
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 http://docs.yahoo.com/info/terms/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/ySSFAA/GHeqlB/TM
---------------------------------------------------------------------~->
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 http://docs.yahoo.com/info/terms/
|