I don't know what you're doing with the MSCI data Henk but a practical way to get the more or less same information is to use the iShares MSCI Trackers. You...
Hi guys is there a code to check yearly performance of Stocks in database. Its similar to (quick market review) but i need to export as csv file thanks...
I use the Auto-Update command in Amiquote at irregular intervals during the day to download the latest Yahoo quotes. I would like to be able to check the...
just run individual Backtests on your WatchList (or all stocks) using the built-in Buy and Hold formula (see equity folder under indicators). Set the AA range...
Happy 2008 to everyone!! Let's say I want to only trade stocks in the top 50% under 3 different criteria ( volume , price and RSI for example) on any given...
Try this "Performance Exploration" over your database of stocks. Sort buy column 250 for top gainers or losers. Big gainers were "FSLR,SWIM, ASTI etc. Dick H....
Hi! The problem with Valuewhen is, in its expression I can only compare as many array I want to compare only for that array index. For example, Current...
Hello, ValueWhen as most AFL functions returns array. If you want single scalar you can use loop or lastvalue If you don't want loop (which is actually correct...
Hi Bill -- For this statement: somevar = CCI(parm); "somevar" will be an array with one element for every bar of the data array, the value of that element the...
Tomasz, I have tried like: RES = LastValue( Valuewhen(L <= diff[ barindex ], XM) ); But, it gives error that array subscript has to be a number. Whereas, ...
1. Although I use ODBC with MS-SQL I encountered the same problem, and we changed some of the coding of the plug-in itself to get rid of it. If TJ allows it...
Is it possible to hard code when to trade? I know this option is available from the trades setting of the automatic analysis, but I would prefer to set it...
Hello, yes, you can do this through using BuyPrice, SellPrice, ShortPrice, CoverPrice Example to buy always on open price. BuyPrice = 0pen; Example for symbol...
Is it possible to hard code when to trade? I know this option is available from the trades setting of the automatic analysis, but I would prefer to set it...
i am looking for some historical ascii data in forex and 1 minute bars. any pointers. i am looking to pickup something thatis free and has all the possible...
Hello, Data is recorded in the database in 12 hour format (1AM to 12AM, and 1PM to 12PM). Can this be made to record data in 24 hour format. Can anybody ...
... data array, ... I want parm to be an array. What I am doing is trying to 'tune' the CCI to the dominant cycle in the market. Let me give you a simplistic...
As part of the migration process from Wealth-Lab, I've been running some parallel backtesting. Symbol currently used is JBH(ASX) for period 01/07/2007 to...
Here is another version much like Dick's that calculates percentage changes but also colors the cells to visually help spot rotation. It may be a little too...
You have BuyPrice = Min(Open, Ref(vaLimitEntry, -1));, so can only assume that in this case Open is higher than the vaLimitEntry value, and thus vaLimitEntry...
I get this line when I back test a system which generate more than 20000 trades in about 6 years. CYDS Long (n-bar) 5/10/2001 0.11 5/10/2001 -1.#IND -1.#J%...
I see Graham responded too, you should not get exactly $10K position size unless the price is an even number that divides into 10K eg $2.00. Check that you...
Thanks Graham The values in vaLimitEntry had already been rounded. For the first trade the values (as per _TRACE) are vaLimitEntry - $11.59, Open - $11.36. I...