[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] AIQ Trading Bands to AFL



PureBytes Links

Trading Reference Links

g --
Most of the code printed in TA of S&C is also given for many other programs in "Traders Tips" section near the back of the magazine.
 
TJ also posts most of the code on Amibroker.com.  Hopefully someone else on this forum can provide the precise link for the
"Traders Tips" coding.

BTW, what issue of
TA of S&C, and maybe even page number?
-- Keith

hardrockgeo wrote:

AIQ Trading Bands to AFL

Can anyone please transform this AIQ code from S&C Mag to AFL, if u
can, so it can be cut & pasted.

Thanks in advance
g
----------------------------------------------------------
Here is the AIQ TradingExpert Pro code from Stocks & Commodities
Magazine for plotting both kinds of bands.

Aiq Eds code for Average True Range and Standard Deviation Bands

Define AvgPd 20.

!StDev Bands
StdDev is Sqrt(Variance([close],AvgPd)).
Stdh is ExpAvg([close],AvgPd) + 2 * StdDev.
Stdl is ExpAvg([close],AvgPd) - 2 * StdDev.

TrueRange is
max([high]-[low],max([high]-val([close],1),val([close],1)-[low])).

AvgTrueRange is SimpleAvg(TrueRange,AvgPd).

!ATR Bands
Stdha is ExpAvg([close],AvgPd) + 2 * AvgTrueRange.
Stdla is ExpAvg([close],AvgPd) - 2 * AvgTrueRange.

----------------------------------------------------------

__._,_.___

Please note that this group is for discussion between users only.

To get 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




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___