PureBytes Links
Trading Reference Links
|
But I asked you a simple question and got a dissertation 8-)
Regards,
Bob
-----Original Message-----
From: Graham [mailto:gkavanagh@xxxxxxxxxxxxx]
Sent: Thursday, April 17, 2003 4:00 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] info trading system
This was an example only. In the particular system I had there were
about 12
stocks in the group, each with some variables different to the others. I
tend to give a short example of things to illustrate a point. Seemed
pointless to me to include a lot of data surplus to real requirements in
this post.
In another system I looked at I had the sectors grouped similarly to
this.
So each sector had its own variable value. Thinking further, say certain
groups of stocks behaved differently and you found a certain indicator
gave
good signals for each group, but the indicator had different variable
values. (as a short example the groups could be large capital stocks,
medium
caps and small caps) You could use this idea to create a single search
with
each group giving you the signals you want. Much quicker than doing
separate
explorations. For this you would use, say the Inwatchlist to identify
the
group for the variable values.
Here is a thought on Pairs trading
You cannot directly link different tickers to get buy/sell. Try using
Foreign function to "import" the values you might want to create a
fictitious large array of a combined pair of tickers
This is only a "off the top of head" idea
A simple MA cross idea
BuyABC = cross ( ema( foreign( "XYZ", "C"), 20 ) , foreign( "XYZ",
"C" ) ;
So you would buy ABC when XYZ close price crosses below the EMA of XYZ
No idea if this would work, but worth a thought if nothing else. I like
to
work with the tools at hand, not always wish for something. There is
normally always a workaround for any problem.
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: Bob Jagow [mailto:bjagow@xxxxxxxxxxx]
Sent: Friday, 18 April 2003 5:39 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] info trading system
If you had just "ABC" and "XYZ" in the basket, seems you could tell if
you're long "ABC" or "XYZ" based on the indicator that triggers the
buy/sell.
Would it then be possible to code selling the one in order to buy the
other?
TIA,
Bob
-----Original Message-----
From: Graham [mailto:gkavanagh@xxxxxxxxxxxxx]
Sent: Thursday, April 17, 2003 2:06 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] info trading system
I have used something like this
BuyCondition = ( name()=="ABC" AND etc ) OR (name()=="XYZ" and etc);
Also have put it into variables
x1 = (name()=="AMP")*11+(name()=="ANZ")*6+(name()=="BHP")*14;
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: Stefano Dotti [mailto:arvdot@xxxxxx]
Sent: Friday, 18 April 2003 2:25 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] info trading system
Hi to all,
I have one small question to make,
is possible to run at the same time one trading system on one stock
and one different trading system on an other stock ?
best regards
stefano
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/
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/
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/
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 REFINANCE QUOTE - click here!
http://us.click.yahoo.com/2CXtTB/ca0FAA/i5gGAA/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/
|