[amibroker] OT: Outlook Express

2009-04-18 Thread Ara Kaloustian
Recently I am not able to delete messages with large attachments. From the sample of attachment I have, I can not delete messages with attachments greater than 1 Mb. Am using IE8. Thanks Ara

Re: [amibroker] OT: Outlook Express

2009-04-18 Thread Henrik Rasmussen
Your .pst file may be getting too big. Rik Rasmussen On Sat, Apr 18, 2009 at 10:59 AM, Ara Kaloustian a...@san.rr.com wrote: Recently I am not able to delete messages with large attachments. From the sample of attachment I have, I can not delete messages with attachments greater than 1

[amibroker] Re: CORONA CHARTS

2009-04-18 Thread anilcap200
sorry sir,but i beg to differ. the thing has been checked on eod data source is the same.there is a heaven hell difference between the stuff plotted in tradestation in amibroker.also the scaling of the corona swing position is wrong.have checked the same codes tht came in the tasc issue in

[amibroker] Re: Problem When Adding New Symbols - Existing Chart Symbols Changed

2009-04-18 Thread ganamide
I opened a ticket for this. I noticed that it only happens when adding new symbols via the Type-in Symbols context menu item in Realtime Quotes window. I don't see this problem when adding new symbols via the MenuBar-Symbol-New menu item.

Re: [amibroker] Explorer Wont update Closes

2009-04-18 Thread Tomas
Jim, I don't have a solution for your problem. But you can try this and see if it will consistently give you the right answer. Filter =1; AddColumn(C,a); tomas From: jim fenster normanj...@yahoo.com To: amibroker@yahoogroups.com Sent: Friday, April 17,

[amibroker] Alert Output window

2009-04-18 Thread aajurg
Hello , I don't have some result in my « Alert Output Windows » I am waiting for a sound or a text .But nothing happening ! Nevertheless , the AFL code is sample trenline = Study(RE, 1150); Buy =Cross( Close, Study(RE,1150) ); AlertIf( Buy, , Simple text alert,1); //AlertIf(Buy, SOUND

[amibroker] Decimal Digits Problem

2009-04-18 Thread Mohammed
Hi friends, I'm using this code in the Title to show how many pip prices go up or down from open price. The problem with it, it show 9 decimal digits, I would like to show only 4 decimal digits. Also if it passable for you guys to add another line for daily average that will be nice. Because I

[amibroker] Re: Decimal Digits Problem

2009-04-18 Thread murthysuresh
use strformat or change decimal using preferences/misc/decimal places in chart titles --- In amibroker@yahoogroups.com, Mohammed softnews2...@... wrote: Hi friends, I'm using this code in the Title to show how many pip prices go up or down from open price. The problem with it, it

[amibroker] scanning daily HHV from 15 minute bars

2009-04-18 Thread murthysuresh
i am trying to check if the daily range was Highest High in 7 days from 15 minute timeframe. the prob that i see is that it shows true in the last 15 minute bar and all the rest of the bars next day. i have set my intraday settings from 9.30 to 15.59 here is the code. TimeFrameSet( inDaily );

[amibroker] OR operand erroring with InWatchList(i)

2009-04-18 Thread gmorlosky
I get a syntax error with this InWatchList(i) and I can't figure it out - any help ? i = 24; Filter = Close 10 OR for (i =24; i = 65; i++) { InWatchList(i) } ; Ln: 6, Col: 1: Error 32. Syntax error,

[amibroker] Re: Decimal Digits Problem

2009-04-18 Thread wooziwog
Hello, The following should work for changing decimals. Regards, David K. +\n+EncodeColor(colorRed) + Pip To Open : +numtostr(PipToOpen,1.4) OR if you want to change decimals for other symbols dec = (Param(Decimals,2,0,7,1)/10)+1; +\n+EncodeColor(colorRed) + Pip To Open :

Re: [amibroker] OR operand erroring with InWatchList(i)

2009-04-18 Thread Tony Grimes
I see a couple of things, 1. Don't use a For Loop as part of an OR statement. 2. InWatchList(i) should end with a semicolon. On Sat, Apr 18, 2009 at 6:06 PM, gmorlosky gmorlo...@yahoo.com wrote: I get a syntax error with this InWatchList(i) and I can't figure it out - any help ? i = 24;

[amibroker] Re: OR operand erroring with InWatchList(i)

2009-04-18 Thread gmorlosky
Thanks, but I shortened the code to ask for help. I actually have 10 OR statements strung togther which work fine, until I added on this OR for statement. Does anyone know how to make this for statement work ? --- In amibroker@yahoogroups.com, Tony Grimes tonez.em...@... wrote: I see a couple

[amibroker] Re: OR operand erroring with InWatchList(i)

2009-04-18 Thread gmorlosky
Let's make this problem real simpleWhy does this give a syntax error ? i = 24; Filter = for (i =24; i = 65; i++) { InWatchList(i); } ; --- In amibroker@yahoogroups.com, gmorlosky gmorlo...@... wrote: Thanks, but I shortened the code to ask for help. I actually have 10 OR statements

Re: [amibroker] Re: OR operand erroring with InWatchList(i)

2009-04-18 Thread Tony Grimes
You cannot use a For Loop inside a logical expression. On Sat, Apr 18, 2009 at 6:51 PM, gmorlosky gmorlo...@yahoo.com wrote: Let's make this problem real simpleWhy does this give a syntax error ? i = 24; Filter = for (i =24; i = 65; i++) { InWatchList(i); } ; --- In

[amibroker] Re: OR operand erroring with InWatchList(i)

2009-04-18 Thread gmorlosky
Thanks Tony...Another one for the wishlist :-) --- In amibroker@yahoogroups.com, Tony Grimes tonez.em...@... wrote: You cannot use a For Loop inside a logical expression. On Sat, Apr 18, 2009 at 6:51 PM, gmorlosky gmorlo...@... wrote: Let's make this problem real simpleWhy

Re: [amibroker] Re: OR operand erroring with InWatchList(i)

2009-04-18 Thread Graham
Try this inList = 0; for (i =24; i = 65; i++) { inList = max( inList, InWatchList(i) ); } Filter = Close 10 or inList; addcolumn( inList, inList, 1 ); addcolumn( C10, C10, 1 ); -- Cheers Graham Kav AFL Writing Service http://www.aflwriting.com 2009/4/19 gmorlosky gmorlo...@yahoo.com:

Re: [amibroker] OT: Outlook Express

2009-04-18 Thread Keith McCombs
Maybe it's time to take a look at Mozilla Thunderbird. Ara Kaloustian wrote: Recently I am not able to delete messages with large attachments. From the sample of attachment I have, I can not delete messages with attachments greater than 1 Mb. Am using IE8. Thanks Ara

Re: [amibroker] Re: OR operand erroring with InWatchList(i)

2009-04-18 Thread Keith McCombs
Just a little addition to the explanation: for(i = 24; i = 65; i++){} is NOT a function. It does not return anything. Therefore: anything = for(){}; cannot assign 'anything' a value. Graham wrote: Try this inList = 0; for (i =24; i = 65; i++) { inList = max( inList, InWatchList(i) );

[amibroker] AA Optimization: Stable Plateaus vs Unstable Peaks - and Light Tables!

2009-04-18 Thread ozzyapeman
I am wondering if anyone here has already created a CBT procedure that solves this problem. And if not, wondering if anyone actually would volunteer to create one. It's a bit beyond my scope at the present time. When one does an In-Sample / Out-Of-Sample walk forward test in AB's AA, the AA