I have been reading Perry Kaufman's Adaptive Moving Averages and how to program them. I came across two afls in Amibroker i.e. AMA and AMA2. I was able to...
Hello, I am trying to call the TWX active object from AFL, and I am using this kind of code: twsIni="I15"; if (StaticVarGetText(twsIni)!="OK") { tws3 =...
hi , An update on the astro chart . I have enclosed three more charts in addition to the original Saturn Uranus Opp chart . - first is the sp500 chart with the...
How do you explain the recent phenomenon of "sexy bickers" at the AmiBroker Texas mailing list? Also, do you know anything about the butterflies that flap...
Hello, AMA/AMA2 in AmiBroker are not "Kaufman's" averages. They are *general purpose* adaptive exponential smoothers (in tech speak they are first-order...
Hi Patrick, To be more concrete I attach a sample of the functions I use to interface to Rfrom AFL. R=CreateStaticObject("StatConnectorSrv.StatConnector"); if...
I just copied all of "Program files\Amibroker\" from my main computer to my laptop, in order to bring my laptop "in sync" with my main computer". However the...
Jerry -- Thank you for your response. I had already done steps 1 and 2. So then tried step 3. It sorta worked. However, now I have: a. Equity Information in...
Keith, This same thing happened to me when I was creating a new virtual machine to debug a virtualization issue. I followed these same steps. I finally...
How do I specify a certain action to take place if and only if an event has occurred. Essentially this is an event check. If ADX has crossed down from 40 then...
x = iif(cross(40, adx(...)) and ma(c, ...) < ref(ma(c, ...), -1), 1, 0) Bill ... From: Ray Seth To: amibroker@yahoogroups.com Sent: March 01, 2009 11:57 PM ...
Hi Bill, Many thanks. The check you have suggested is for an event that is occuring/occured at this instant. Do you have any suggestion if I want to check if...
Ray Try using the ValueWhen() function BarNumber_forCondition = Valuewhen(condition,BarIndex(),1); This will give the barindex number for the first occurance...
Hi, Yahoo seems to be having some serious problems with the message search feature. I frequently get several different error code, including your. Yahoo says...
Dear All, Its really my pleasure to be part of such a learned group on yahoo.. I am a full time trader from India using amibroker. Well, I have a formula which...
Help Please - I'm a newbie in Australia on a trial version - I'm trying to connect to my existing Metastock data which is in C:\Gempro\Data\ASX\Stocks I...
Hi, I use IQfeed for data. For backfill it offers 1 minute or tick-by- tick data. Yet I don't really need a tick database. I use 5 second and 1 minute charts...
Yes you can and it works fine as long as you follow the instructions http://www.amibroker.com/guide/h_extsources.html Make sure that external database is valid...
Since the posting below contains what may be a copy of a "work of art", in it entirety, and in fact includes a copyright notice, it may be in violation of...
Hi, How can I write a text juste above a ribbon ? I saw the KB's plot text examples but they refered to High, Low ... Ribbon defines its height in percent of...
Hi all, Looking for some advice on how to calculate relative volume. Example on a 30 min intraday chart I would like to calculate the average volume of all the...
Hi, here are some code fragments to check out... if (IsNull(VarGet("DebugAreaOffset"))) DebugAreaOffset = 0; ... _N(DebugPlotLevelParam = ParamList("Chart...