Re: [amibroker] "License Error" please help

2009-11-13 Thread Prashanth K
Write to SUPPORT {at} amibroker.com cheers Prashanth On Fri, Nov 13, 2009 at 8:34 PM, khaleel wrote: > When i try to launch Amibroker v5.29 i am getting this error message > "License Error (please contact supp...@amibroker.com)". > can some body help me > Thanx much inadvance > khaleel > > > >

Re: [amibroker] AFL FOR FRACTALS/ALLIGATORS:

2009-12-09 Thread Prashanth K
There is no error in the AFL. Which version of AB are you using? Cheers Prashanth On Wed, Dec 9, 2009 at 2:44 PM, Asis Ghosh wrote: > > > This AFL has some error (ERROR-30: SYNTAX ERROR)--can anyone of our > experienced member fix it ? > > /* >Bill William's Alligator System II > >Refe

Re: [amibroker] Missing library file

2010-01-04 Thread Prashanth K
http://www.ascentive.com/support/new/support_dll.phtml?dllname=STDOLE2.TLB Cheers Prashanth On Mon, Jan 4, 2010 at 2:29 PM, reinsley wrote: > Hi, > > I met once this error under XL 2003. I installed all VB6 runtimes,

[amibroker] Change Color based on Signal

2010-02-21 Thread Prashanth K
Hello, I want to plot the chart where color is based on the Signal. For example, if the system is Buy on both Daily and Hourly, I want to color the bars in Green, if its Buy on Daily and Sell on hourly, some other color and so on. I did try various combination of using TimeFrame syntaxes but cou

Re: [amibroker] Help needed in coding

2010-03-29 Thread Prashanth K
Is this what you are looking for, shape = Buy * shapeUpArrow + Sell * shapeDownArrow; PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) ); shape1 = Cover * shapeHollowUpTriangle + Short * shapeHollowDownTriangle; PlotShapes( shape1, IIf( Cover, colorBrightGreen, colorO

Re: [amibroker] Re: AmiBroker 5.27.1 ALPHA released

2009-08-04 Thread Prashanth K
It works fine for me now. I un-installed AB, then installed a full version of 5.20 and then 5.27.1 and other than Keyboard Shortcuts, don't seem to have lost anything. Cheers Prashanth On Tue, Aug 4, 2009 at 12:43 PM, sidhartha70 wrote: > TJ, > > Sorry if I'm wrong here, but I just downloaded

Re: [amibroker] Filter for the time of the last bar

2009-09-30 Thread Prashanth K
Man. You are persistent. At last count you seem to have posted more than 2 dozen queries with the same query despite your query being answered by a lot of members. You seem to either not able to code or unable to put the request in a way that others can easily understand and replicate. First, what

Re: Re: [amibroker] Digest Number 4928

2006-05-03 Thread Prashanth K
Hello Doc, I havent checked the whole thread, but reading your query, I think what you require is a Addcolumn syntax. Add the following to the formula and you should be able to Explore the Same Filter = 1; AddColumn(pchng,"Percent Change"); Cheers Prashanth On Wed, 03 May 2006 Raman Ku

[amibroker] Adding Multiple Tickers

2006-05-18 Thread Prashanth K
Hello, Here in India, we have 3 Simultaneously running Futures Contract. The data provider who provides me the Data, gives me 3 seperate tickers, 1 for the Current Month,  for the Mid (Next) Month and 1 for the 3rd Month. To compare change in OI, one has to add all 3 and get at a Single f

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Prashanth K
Is this what you are looking for? // Color coded RSI _SECTION_BEGIN("RSI oscillator"); /* CBDerivative */ /* Set Scaling to Automatic, Show dates On, Percent On, Middle On */ Cond1 = (EMA(EMA(RSI(14),5),3))-(MA(EMA(EMA(RSI(14),5),3),9)); UpTrend = Cond1 > 0; DnTrend = Cond1 < 0; Colors = IIf(

Re: [amibroker] Automation of Buy/ Sell commands

2010-06-17 Thread Prashanth K
As far as I know, you cannot automate on ODIN since it has not made available its API. Cheers Prashanth On Thu, Jun 17, 2010 at 2:34 PM, Vinay Gakkhar. wrote: > How can I do automation of Buy/ Sell commands using the buy & sell signals > generated by Amibroker on RT data received through ODIN &

Re: [amibroker] Re: Forming Equal Wieghtage Index out of an Industry

2010-08-09 Thread Prashanth K
Have you tried AddtoComposite ? Cheers Prashanth On Tue, Aug 10, 2010 at 10:02 AM, sohamdas wrote: > Hi Folks any help on this > > Soham > > --- In amibroker@yahoogroups.com, "sohamdas" wrote: > > > > Hi Folks, > > > > I have got my universe of stocks classified into different industries. I >

Re: [amibroker] Re: Forming Equal Wieghtage Index out of an Industry

2010-08-09 Thread Prashanth K
m,"V", 1 + 2); Cheers Prashanth On Tue, Aug 10, 2010 at 10:44 AM, sohamdas wrote: > The Problem is I dont really understand how AddtoComposites can help me in > forming such a portfolio. > > Any help would be appreciated > > Soham > > --- In amibroker@yahoogr