[amibroker] Plot Attributes

2009-01-06 Thread troll
Minor question involving styleNoLabel attribute. StyleNoLabel does not work with OHLC plots unless I'm missing something. Every variation I've tried has no effect. Not sure why as arguement works fine with other plot types. Thanks Regards for any suggestions. Dean H.

[amibroker] Re: Plot Attributes

2009-01-06 Thread troll
@yahoogroups.com, Tomasz Janeczko gro...@... wrote: It does work perfectly. See this: Plot( C, Close, colorBlack, styleCandle | styleNoLabel ); Best regards, Tomasz Janeczko amibroker.com - Original Message - From: troll deanhodg...@... To: amibroker@yahoogroups.com Sent: Tuesday, January

[amibroker] Ref Function

2007-09-21 Thread troll
I'm puzzled over the values the following example formulas return: x = ValueWhen( Ref(TimeNum()==73000,-1), TimeNum() ); Returns 73500 x = ValueWhen( Ref(TimeNum()==73000,0), TimeNum() ); Returns 73000 x = ValueWhen( Ref(TimeNum()==73000,1), TimeNum() ); Returns 72500 I thought that the Ref

[amibroker] Re: Does Amibroker have volume profile indicator?

2007-05-10 Thread troll
There is a Market and Volume Profile in the AFL Library - type Market Profile in search criteria. Regards, Dean H. --- In amibroker@yahoogroups.com, archstone2003 [EMAIL PROTECTED] wrote: Or is there a plug-in or formular already available for it? By volume profile I mean draw volume

[amibroker] Re: volume indicator - Tom's Post

2007-03-29 Thread troll
Tom I've been looking at Twiggs MF as supplied in your earlier post and overall it provides some clarity in determining accumulation versus distribution. One question though - the number of TMF periods used has a pretty dramatic effect on the resulting plot and although I've looked for

[amibroker] Re: Beta 4.89-Sync Chart on Select problems

2007-01-15 Thread troll
You need to make sure that default columns appear in AA window - SetOption( NoDefaultColumns, False ) or omit this setoption altogether. Regards, Dean H. --- In amibroker@yahoogroups.com, Wes Smith [EMAIL PROTECTED] wrote: I'm trying to use the 4.89 'Sync Chart on Select' function without

[amibroker] AA Feature

2007-01-13 Thread troll
Thanks Lester for your earlier post re versions 4.88 higher which allow sync viewing with down arrow keys in AA window. Very nice feature as well as new sort column functions. Any options to hide Folder tabs at top of chart panes in 4.89 Beta ? - very minor point really considering abundance of

[amibroker] Backtest Results

2007-01-10 Thread troll
Minor question but unable to find anything in the reference material, settings or help files. Now getting Short(21), Long(15) (or some number) in AA Backtest screen and curious where/why bracketed numbers came from. Best Regards, Dean H.

[amibroker] Exploration Question

2006-12-27 Thread troll
I've used Amibroker for about 3 years and written countless explorations. When I double click on symbol in exploration pane chosen symbol is displayed and I can easily switch displayed chart by double clicking any symbol I choose in exploration pane. Today however that doesn't work for one

[amibroker] Question re Foreign Function

2006-12-12 Thread troll
I'm using the following code to fetch the current Nasdaq value and I display the results in the title of an A/D graph I work with. Works fine with intraday data and displays current value correctly. comp = Foreign($COMPQ, C); I wanted to also show change from previous day's Index close which

[amibroker] Re: Adjust Volumn Histogram for Spikes ?

2006-07-05 Thread troll
|styleNoTitle); /* this plots blue dot above truncated volume, grey above others*/ Plot(int(MA(Volume,Per1)),MA,colorBlue,styleLine); Plot( 0, , colorBlack, styleNoLine|styleNoLabel); /* causes graph to scale to 0*/ GraphXSpace = 2; --- In amibroker@yahoogroups.com, troll deanhodgins

[amibroker] Adjust Volumn Histogram for Spikes ?

2006-07-02 Thread troll
Intraday charts often show volumn spike at day's end or 1.00pm as day /programmed positions closed. This can result in distorted volumn histogram that requires high upper value with resulting loss of detail for previous part of day. I'm trying to think of way to dampen effect of vol spike or

[amibroker] Re: ANY BODY KNOW CODE FOR COLOURING OF VOLUME IN DOWN AND UPWORD

2006-06-22 Thread troll
--- In amibroker@yahoogroups.com, excelent_sanjay [EMAIL PROTECTED] wrote: ANY BODY KNOW CODE FOR COLOURING OF VOLUME IN DOWN AND UPWORD This works - you can change colors to suit ... Color = IIf(CloseRef(C,-1),colorTurquoise,IIf(CloseRef(C,- 1),colorDarkBlue,colorBlack)); Plot(V,Volume ,

[amibroker] Re: Conditional Color in Title

2006-06-05 Thread troll
--- In amibroker@yahoogroups.com, troll [EMAIL PROTECTED] wrote: Re conditional color in title Thanks so much Terry Steve - your helpful comments helped me solve this one. ( Also didn't realize my 52 week high formula needed to be corrected to exclude current week as Steve kindly

[amibroker] Column Sort Question - Amibroker 4.8

2006-04-24 Thread troll
Just upgraded to Amibroker 4.8 - another outstanding program with plenty of excellent features additions - thanks T.J. for your continued efforts Minor question after reveiwing various posts re column sorting: I added following lines after AFL code but get message indicating False is

[amibroker] Backtest Selection

2006-04-02 Thread troll
Don't quite understand this ... When I run Backtest in Detailed Log mode I expect to get the time and scores for all tickers in group that qualified at that point in time - start of bar. For the day/time in question I expected 8 entry signals in detailed log but only 4 appear. This based on

[amibroker] Close All Intraday Positions

2006-03-21 Thread troll
I found this code posted a while ago by TJ that works fine for closing trades at end of day as long as Timenum() corresponds to value. TimeNum() == 16; I've modified to include my own conditions and it still works fine. Sell = myconditions ; OR TimeNum() == 16; Problem I have is that